2005-04-28 10:26:44 +02:00
|
|
|
|
/*
|
|
|
|
|
* $Id: irc.h,v 1.43 2005/04/21 06:58:50 nohar Exp $
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the bip project
|
2005-10-09 13:47:20 +02:00
|
|
|
|
* Copyright (C) 2004 2005 Arnaud Cornet and Lo<EFBFBD>c Gomez
|
2005-04-28 10:26:44 +02:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
* See the file "COPYING" for the exact licensing terms.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef IRC_H
|
|
|
|
|
#define IRC_H
|
|
|
|
|
#include "connection.h"
|
|
|
|
|
#include "line.h"
|
|
|
|
|
|
2005-08-25 10:17:10 +02:00
|
|
|
|
|
|
|
|
|
#define ERR_PROTOCOL (-1)
|
|
|
|
|
#define ERR_AUTH (-2)
|
|
|
|
|
#define OK_COPY (1)
|
|
|
|
|
#define OK_FORGET (2)
|
|
|
|
|
#define OK_CLOSE (3)
|
|
|
|
|
#define OK_COPY_CLI (4)
|
2006-02-05 12:10:33 +01:00
|
|
|
|
#define OK_COPY_WHO (5)
|
2005-08-25 10:17:10 +02:00
|
|
|
|
|
2005-04-28 10:26:44 +02:00
|
|
|
|
#define P_SERV "bip.bip.bip"
|
|
|
|
|
#define S_PING "BIPPING"
|
|
|
|
|
#define P_IRCMASK "-bip!bip@bip.bip.bip"
|
|
|
|
|
|
|
|
|
|
struct server {
|
|
|
|
|
char *host;
|
|
|
|
|
unsigned short port;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define server_new() calloc(sizeof(struct server), 1)
|
|
|
|
|
|
|
|
|
|
#define NICKOP 1
|
|
|
|
|
#define NICKVOICED 2
|
|
|
|
|
|
|
|
|
|
struct nick {
|
|
|
|
|
char *name;
|
|
|
|
|
int ovmask;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct channel {
|
|
|
|
|
char *name;
|
|
|
|
|
char *mode;
|
|
|
|
|
char *key;
|
|
|
|
|
char *topic;
|
|
|
|
|
int limit;
|
|
|
|
|
char type;
|
|
|
|
|
char *creator;
|
|
|
|
|
char *create_ts;
|
|
|
|
|
hash_t nicks;
|
|
|
|
|
int running_names;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define IRC_TYPE_CLIENT (0)
|
|
|
|
|
#define IRC_TYPE_SERVER (1)
|
|
|
|
|
#define IRC_TYPE_LOGING_CLIENT (2)
|
2005-12-12 20:03:02 +01:00
|
|
|
|
#define IRC_TYPE_TRUST_CLIENT (3)
|
2005-04-28 10:26:44 +02:00
|
|
|
|
|
|
|
|
|
struct link {
|
|
|
|
|
char *name; /* id */
|
|
|
|
|
|
|
|
|
|
/** link live data **/
|
|
|
|
|
struct link_server *l_server;
|
|
|
|
|
int l_clientc;
|
|
|
|
|
struct link_client **l_clientv;
|
|
|
|
|
|
2006-02-21 08:48:12 +01:00
|
|
|
|
/* we honnor the /who from clients one client at a time, this is the
|
2006-11-12 19:08:49 +01:00
|
|
|
|
* client that is /who-ing. Now for bans too */
|
2006-02-21 08:48:12 +01:00
|
|
|
|
struct link_client *who_client;
|
|
|
|
|
|
2005-04-28 10:26:44 +02:00
|
|
|
|
struct log *log;
|
|
|
|
|
|
2006-07-02 13:50:20 +02:00
|
|
|
|
/* server related live stuff */
|
2005-04-28 10:26:44 +02:00
|
|
|
|
int s_state;
|
2007-02-10 15:05:37 +01:00
|
|
|
|
int s_conn_attempt;
|
2007-01-26 19:52:21 +01:00
|
|
|
|
char *prev_nick; /* XXX del me */
|
|
|
|
|
char *cli_nick;
|
2005-04-28 10:26:44 +02:00
|
|
|
|
list_t init_strings;
|
|
|
|
|
|
|
|
|
|
/* connection state (reconnecting, was_connected ...) */
|
|
|
|
|
int recon_timer;
|
2005-05-27 12:25:31 +02:00
|
|
|
|
time_t last_connection;
|
2005-04-28 10:26:44 +02:00
|
|
|
|
|
|
|
|
|
/** link options */
|
|
|
|
|
|
|
|
|
|
int follow_nick;
|
|
|
|
|
int ignore_first_nick;
|
2006-09-18 18:06:23 +02:00
|
|
|
|
list_t on_connect_send;
|
2006-09-18 20:05:17 +02:00
|
|
|
|
char *no_client_away_msg;
|
2005-04-28 10:26:44 +02:00
|
|
|
|
char *away_nick;
|
2005-05-30 20:35:49 +02:00
|
|
|
|
hash_t chan_infos; /* channels we want */
|
|
|
|
|
list_t chan_infos_order; /* for order only */
|
2005-04-28 10:26:44 +02:00
|
|
|
|
|
|
|
|
|
/** client connection static data **/
|
|
|
|
|
|
2005-07-09 14:55:01 +02:00
|
|
|
|
char *username;
|
2005-04-28 10:26:44 +02:00
|
|
|
|
unsigned char *password;
|
|
|
|
|
unsigned int seed;
|
|
|
|
|
|
|
|
|
|
/** server connection static data **/
|
|
|
|
|
/* server list */
|
|
|
|
|
int serverc;
|
|
|
|
|
struct server **serverv;
|
|
|
|
|
int cur_server;
|
|
|
|
|
|
|
|
|
|
char *user;
|
|
|
|
|
char *real_name;
|
|
|
|
|
char *s_password;
|
|
|
|
|
char *connect_nick;
|
|
|
|
|
|
|
|
|
|
/* socket creation info */
|
|
|
|
|
char *vhost;
|
|
|
|
|
int bind_port;
|
|
|
|
|
int s_ssl;
|
2005-06-04 13:05:54 +02:00
|
|
|
|
|
2005-08-25 10:17:10 +02:00
|
|
|
|
#ifdef HAVE_LIBSSL
|
2005-06-04 13:05:54 +02:00
|
|
|
|
int ssl_check_mode;
|
|
|
|
|
char *ssl_check_store;
|
2005-08-25 10:17:10 +02:00
|
|
|
|
STACK_OF(X509) *untrusted_certs;
|
|
|
|
|
#endif
|
2005-04-28 10:26:44 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct link_connection {
|
|
|
|
|
int type;
|
|
|
|
|
connection_t *conn;
|
|
|
|
|
struct link *link;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct link_any {
|
|
|
|
|
struct link_connection _link_c;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define LINK(s) ((s)->_link_c.link)
|
|
|
|
|
#define CONN(s) ((s)->_link_c.conn)
|
|
|
|
|
#define TYPE(s) ((s)->_link_c.type)
|
|
|
|
|
|
|
|
|
|
#define IRCC_NONE (0)
|
|
|
|
|
#define IRCC_NICK (1)
|
|
|
|
|
#define IRCC_USER (1<<1)
|
|
|
|
|
#define IRCC_PASS (1<<2)
|
|
|
|
|
#define IRCC_READY (IRCC_NICK|IRCC_PASS|IRCC_USER)
|
|
|
|
|
|
|
|
|
|
struct link_client {
|
|
|
|
|
struct link_connection _link_c;
|
|
|
|
|
|
|
|
|
|
char *init_nick;
|
|
|
|
|
char *init_pass;
|
|
|
|
|
int state;
|
|
|
|
|
int logging_timer;
|
2005-08-25 10:17:10 +02:00
|
|
|
|
|
2006-02-05 12:10:33 +01:00
|
|
|
|
list_t who_queue;
|
|
|
|
|
int who_count;
|
2007-01-05 22:19:32 +01:00
|
|
|
|
time_t whoc_tstamp;
|
2006-02-05 12:10:33 +01:00
|
|
|
|
|
2005-08-25 10:17:10 +02:00
|
|
|
|
#ifdef HAVE_LIBSSL
|
|
|
|
|
int allow_trust;
|
|
|
|
|
#endif
|
2005-04-28 10:26:44 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define IRCS_NONE (0)
|
|
|
|
|
#define IRCS_CONNECTING (1)
|
|
|
|
|
#define IRCS_CONNECTED (2)
|
|
|
|
|
#define IRCS_WAS_CONNECTED (3)
|
|
|
|
|
#define IRCS_RECONNECTING (4)
|
|
|
|
|
|
|
|
|
|
struct log;
|
|
|
|
|
|
|
|
|
|
struct chan_info {
|
|
|
|
|
char *name;
|
|
|
|
|
char *key;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define chan_info_new() calloc(sizeof(struct chan_info), 1)
|
|
|
|
|
|
|
|
|
|
struct link_server {
|
|
|
|
|
struct link_connection _link_c;
|
|
|
|
|
|
|
|
|
|
char *nick;
|
|
|
|
|
|
|
|
|
|
/* channels we are in */
|
|
|
|
|
hash_t channels;
|
|
|
|
|
|
|
|
|
|
char *user_mode;
|
|
|
|
|
int user_mode_len;
|
|
|
|
|
|
|
|
|
|
/* init stuff */
|
|
|
|
|
int lag;
|
|
|
|
|
int laginit_ts;
|
|
|
|
|
int lagtest_timeout;
|
|
|
|
|
};
|
|
|
|
|
|
2006-02-05 12:10:33 +01:00
|
|
|
|
struct link_client *irc_client_new(void);
|
2005-04-28 10:26:44 +02:00
|
|
|
|
struct link_server *irc_server_new(struct link *link, connection_t *conn);
|
|
|
|
|
void irc_server_free(struct link_server *is);
|
|
|
|
|
struct client *client_new();
|
|
|
|
|
void irc_main(connection_t *inc, list_t *clientl);
|
|
|
|
|
int ischannel(char p);
|
|
|
|
|
void irc_client_close(struct link_client *);
|
|
|
|
|
void irc_client_free(struct link_client *);
|
|
|
|
|
struct link *irc_link_new();
|
2005-08-25 10:17:10 +02:00
|
|
|
|
void unbind_from_link(struct link_client *ic);
|
2005-04-28 10:26:44 +02:00
|
|
|
|
#endif
|