mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
bedf03c9cd
Fixed a bug in the Routine system that caused crashes when constructed with only the first three arguments because it wasn't attached. Implemented a gentle release of functions to not release them if the reference count is 1. Adjusted the Routine and Command system to not be necessary to include them in the module core. Moved the INI and XML libraries into their own namespace. Various other modifications and fixes.
55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2004-2012 George Yunaev gyunaev@ulduzsoft.com
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This library 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 Lesser General Public
|
|
* License for more details.
|
|
*/
|
|
|
|
#ifndef INCLUDE_IRC_DCC_H
|
|
#define INCLUDE_IRC_DCC_H
|
|
|
|
|
|
/*
|
|
* This structure keeps the state of a single DCC connection.
|
|
*/
|
|
struct irc_dcc_session_s
|
|
{
|
|
irc_dcc_session_t * next;
|
|
|
|
irc_dcc_t id;
|
|
void * ctx;
|
|
socket_t sock; /*!< DCC socket */
|
|
int dccmode; /*!< Boolean value to differ chat vs send
|
|
requests. Changes the cb behavior - when
|
|
it is chat, data is sent by lines with
|
|
stripped CRLFs. In file mode, the data
|
|
is sent as-is */
|
|
int state;
|
|
time_t timeout;
|
|
|
|
FILE * dccsend_file_fp;
|
|
unsigned int received_file_size;
|
|
unsigned int file_confirm_offset;
|
|
|
|
struct sockaddr_in remote_addr;
|
|
|
|
char incoming_buf[LIBIRC_DCC_BUFFER_SIZE];
|
|
unsigned int incoming_offset;
|
|
|
|
char outgoing_buf[LIBIRC_DCC_BUFFER_SIZE];
|
|
unsigned int outgoing_offset;
|
|
port_mutex_t mutex_outbuf;
|
|
|
|
irc_dcc_callback_t cb;
|
|
};
|
|
|
|
|
|
#endif /* INCLUDE_IRC_DCC_H */
|