diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-05-10 23:52:47 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-05-10 23:52:47 +0200 |
commit | 873a3ef04725dadaf78f92c54311d8178ce28462 (patch) | |
tree | dfb8afa2b3b04394b4c26c9e14b94e25699defa0 /src/common/hexchat.h | |
parent | beb3ab506de6993e80b6b6932160a23247db4130 (diff) |
Replace various network options with universal login method option
Diffstat (limited to 'src/common/hexchat.h')
-rw-r--r-- | src/common/hexchat.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/hexchat.h b/src/common/hexchat.h index dd30dce6..f3b9ce85 100644 --- a/src/common/hexchat.h +++ b/src/common/hexchat.h @@ -528,13 +528,12 @@ typedef struct server char servername[128]; /* what the server says is its name */ char password[86]; char sasluser[32]; /* this is just a buffer for network->user */ - char saslpassword[86]; /* we could reuse password but then we couldn't guarantee NickServ doesn't register first */ char nick[NICKLEN]; char linebuf[2048]; /* RFC says 512 chars including \r\n */ char *last_away_reason; int pos; /* current position in linebuf */ int nickcount; - int nickservtype; /* 0=/MSG nickserv 1=/NICKSERV 2=/NS */ + int loginmethod; /* see login_types[] */ char *chantypes; /* for 005 numeric - free me */ char *chanmodes; /* for 005 numeric - free me */ |