mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-12 04:15:05 -05:00
126 lines
3.9 KiB
C
126 lines
3.9 KiB
C
/* HexChat
|
|
* Copyright (C) 1998-2010 Peter Zelezny.
|
|
* Copyright (C) 2009-2013 Berke Viktor.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef HEXCHAT_SERVLIST_H
|
|
#define HEXCHAT_SERVLIST_H
|
|
|
|
typedef struct ircserver
|
|
{
|
|
char *hostname;
|
|
} ircserver;
|
|
|
|
typedef struct commandentry
|
|
{
|
|
char *command;
|
|
} commandentry;
|
|
|
|
typedef struct favchannel
|
|
{
|
|
char *name;
|
|
char *key;
|
|
} favchannel;
|
|
|
|
typedef struct ircnet
|
|
{
|
|
char *name;
|
|
char *nick;
|
|
char *nick2;
|
|
char *user;
|
|
char *real;
|
|
char *pass;
|
|
int logintype;
|
|
char *comment;
|
|
char *encoding;
|
|
GSList *servlist;
|
|
GSList *commandlist;
|
|
GSList *favchanlist;
|
|
int selected;
|
|
guint32 flags;
|
|
} ircnet;
|
|
|
|
extern GSList *network_list;
|
|
|
|
#define FLAG_CYCLE 1
|
|
#define FLAG_USE_GLOBAL 2
|
|
#define FLAG_USE_SSL 4
|
|
#define FLAG_AUTO_CONNECT 8
|
|
#define FLAG_USE_PROXY 16
|
|
#define FLAG_ALLOW_INVALID 32
|
|
#define FLAG_FAVORITE 64
|
|
#define FLAG_COUNT 7
|
|
|
|
/* Login methods. Use server password by default - if we had a NickServ password, it'd be set to 2 already by servlist_load() */
|
|
#define LOGIN_DEFAULT_REAL LOGIN_PASS /* this is to set the default login method for unknown servers */
|
|
#define LOGIN_DEFAULT 0 /* this is for the login type dropdown, doesn't serve any other purpose */
|
|
#define LOGIN_MSG_NICKSERV 1
|
|
#define LOGIN_NICKSERV 2
|
|
#define LOGIN_NS 3
|
|
#define LOGIN_MSG_NS 4
|
|
#define LOGIN_AUTH 5
|
|
#define LOGIN_SASL 6
|
|
#define LOGIN_PASS 7
|
|
#define LOGIN_CHALLENGEAUTH 8
|
|
|
|
#define CHALLENGEAUTH_ALGO "HMAC-SHA-256"
|
|
#define CHALLENGEAUTH_NICK "Q@CServe.quakenet.org"
|
|
|
|
/* DEFAULT_CHARSET is already defined in wingdi.h */
|
|
#define IRC_DEFAULT_CHARSET "UTF-8 (Unicode)"
|
|
|
|
void servlist_init (void);
|
|
int servlist_save (void);
|
|
int servlist_cycle (server *serv);
|
|
void servlist_connect (session *sess, ircnet *net, gboolean join);
|
|
int servlist_connect_by_netname (session *sess, char *network, gboolean join);
|
|
int servlist_auto_connect (session *sess);
|
|
int servlist_have_auto (void);
|
|
int servlist_check_encoding (char *charset);
|
|
void servlist_cleanup (void);
|
|
|
|
ircnet *servlist_net_add (char *name, char *comment, int prepend);
|
|
void servlist_net_remove (ircnet *net);
|
|
ircnet *servlist_net_find (char *name, int *pos, int (*cmpfunc) (const char *, const char *));
|
|
ircnet *servlist_net_find_from_server (char *server_name);
|
|
|
|
ircserver *servlist_server_find (ircnet *net, char *name, int *pos);
|
|
commandentry *servlist_command_find (ircnet *net, char *cmd, int *pos);
|
|
favchannel *servlist_favchan_find (ircnet *net, char *channel, int *pos);
|
|
|
|
ircserver *servlist_server_add (ircnet *net, char *name);
|
|
commandentry *servlist_command_add (ircnet *net, char *command);
|
|
void servlist_favchan_add (ircnet *net, char *channel);
|
|
|
|
void servlist_command_free (commandentry *entry);
|
|
void servlist_favchan_free (favchannel *channel);
|
|
|
|
void servlist_server_remove (ircnet *net, ircserver *serv);
|
|
void servlist_command_remove (ircnet *net, commandentry *entry);
|
|
void servlist_favchan_remove (ircnet *net, favchannel *channel);
|
|
|
|
favchannel *servlist_favchan_copy (favchannel *fav);
|
|
GSList *servlist_favchan_listadd (GSList *chanlist, char *channel, char *key);
|
|
|
|
gboolean joinlist_is_in_list (server *serv, char *channel);
|
|
|
|
/* FIXME
|
|
void joinlist_split (char *autojoin, GSList **channels, GSList **keys);
|
|
void joinlist_free (GSList *channels, GSList *keys);
|
|
*/
|
|
#endif
|