forked from PsychoticNinja/irssi
now be able to add whatever new DCC types. Nick changes affect DCC chats. /WHOIS without parameters works properly in DCC CHAT queries. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1194 dbcabf3a-b0e7-0310-adc4-f8d773084564
62 lines
1.6 KiB
C
62 lines
1.6 KiB
C
#ifndef __DCC_H
|
|
#define __DCC_H
|
|
|
|
#include "modules.h"
|
|
#include "network.h"
|
|
#include "irc-servers.h"
|
|
|
|
#define DCC(dcc) ((DCC_REC *) (dcc))
|
|
|
|
typedef struct CHAT_DCC_REC CHAT_DCC_REC;
|
|
|
|
typedef struct {
|
|
#include "dcc-rec.h"
|
|
} DCC_REC;
|
|
|
|
/* fully connected? */
|
|
#define dcc_is_connected(dcc) \
|
|
((dcc)->starttime != 0)
|
|
|
|
/* not connected, we're waiting for other side to connect */
|
|
#define dcc_is_listening(dcc) \
|
|
((dcc)->handle != NULL && (dcc)->starttime == 0)
|
|
|
|
/* not connected, waiting for user to accept it */
|
|
#define dcc_is_waiting_user(dcc) \
|
|
((dcc)->handle == NULL)
|
|
|
|
extern GSList *dcc_conns;
|
|
|
|
void dcc_register_type(const char *type);
|
|
void dcc_unregister_type(const char *type);
|
|
|
|
int dcc_str2type(const char *str);
|
|
#define dcc_type2str(type) (module_find_id_str("DCC", type))
|
|
|
|
/* Initialize DCC record */
|
|
void dcc_init_rec(DCC_REC *dcc, IRC_SERVER_REC *server, CHAT_DCC_REC *chat,
|
|
const char *nick, const char *arg);
|
|
void dcc_destroy(DCC_REC *dcc);
|
|
|
|
/* Find waiting DCC requests (non-connected) */
|
|
DCC_REC *dcc_find_request_latest(int type);
|
|
DCC_REC *dcc_find_request(int type, const char *nick, const char *arg);
|
|
|
|
/* IP <-> string for DCC CTCP messages.
|
|
`str' must be at least MAX_IP_LEN bytes */
|
|
void dcc_ip2str(IPADDR *ip, char *str);
|
|
void dcc_str2ip(const char *str, IPADDR *ip);
|
|
|
|
/* Start listening for incoming connections */
|
|
GIOChannel *dcc_listen(GIOChannel *interface, IPADDR *ip, int *port);
|
|
|
|
/* Close DCC - sends "dcc closed" signal and calls dcc_destroy() */
|
|
void dcc_close(DCC_REC *dcc);
|
|
/* Reject a DCC request */
|
|
void dcc_reject(DCC_REC *dcc, IRC_SERVER_REC *server);
|
|
|
|
void dcc_init(void);
|
|
void dcc_deinit(void);
|
|
|
|
#endif
|