mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 16:12:30 +02:00
Added DCC SERVER support by Mark Trumbull
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3127 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
579c1c2efd
commit
65463924d2
12 changed files with 506 additions and 21 deletions
30
src/irc/dcc/dcc-server.h
Normal file
30
src/irc/dcc/dcc-server.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#ifndef __DCC_SERVER_H
|
||||
#define __DCC_SERVER_H
|
||||
|
||||
#include "dcc.h"
|
||||
|
||||
#define DCC_SERVER(dcc) \
|
||||
MODULE_CHECK_CAST_MODULE(dcc, SERVER_DCC_REC, type, "DCC", "SERVER")
|
||||
|
||||
#define IS_DCC_SERVER(dcc) \
|
||||
(DCC_SERVER(dcc) ? TRUE : FALSE)
|
||||
|
||||
struct SERVER_DCC_REC {
|
||||
#include "dcc-rec.h"
|
||||
LINEBUF_REC *readbuf;
|
||||
NET_SENDBUF_REC *sendbuf;
|
||||
|
||||
unsigned int accept_send:1; /* Accept SEND connections */
|
||||
unsigned int accept_chat:1; /* Accept CHAT connections */
|
||||
unsigned int accept_fserve:1; /* Accept FSERVE connections */
|
||||
unsigned int connection_established:1; /* We have made a connection */
|
||||
};
|
||||
|
||||
#define DCC_SERVER_TYPE module_get_uniq_id_str("DCC", "SERVER")
|
||||
|
||||
typedef struct SERVER_DCC_REC SERVER_DCC_REC;
|
||||
|
||||
void dcc_server_init(void);
|
||||
void dcc_server_deinit(void);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue