mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +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.
80 lines
1.7 KiB
C
80 lines
1.7 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_SESSION_H
|
|
#define INCLUDE_IRC_SESSION_H
|
|
|
|
|
|
#include "params.h"
|
|
#include "dcc.h"
|
|
#include "libirc_events.h"
|
|
|
|
|
|
// Session flags
|
|
#define SESSIONFL_MOTD_RECEIVED (0x00000001)
|
|
#define SESSIONFL_SSL_CONNECTION (0x00000002)
|
|
#define SESSIONFL_SSL_WRITE_WANTS_READ (0x00000004)
|
|
#define SESSIONFL_SSL_READ_WANTS_WRITE (0x00000008)
|
|
#define SESSIONFL_USES_IPV6 (0x00000010)
|
|
|
|
|
|
|
|
struct irc_session_s
|
|
{
|
|
void * ctx;
|
|
int dcc_timeout;
|
|
|
|
int options;
|
|
int lasterror;
|
|
|
|
char incoming_buf[LIBIRC_BUFFER_SIZE];
|
|
unsigned int incoming_offset;
|
|
|
|
char outgoing_buf[LIBIRC_BUFFER_SIZE];
|
|
unsigned int outgoing_offset;
|
|
port_mutex_t mutex_session;
|
|
|
|
socket_t sock;
|
|
int state;
|
|
int flags;
|
|
|
|
char * server;
|
|
char * server_password;
|
|
char * realname;
|
|
char * username;
|
|
char * nick;
|
|
char * ctcp_version;
|
|
|
|
#if defined( ENABLE_IPV6 )
|
|
struct in6_addr local_addr6;
|
|
#endif
|
|
|
|
struct in_addr local_addr;
|
|
irc_dcc_t dcc_last_id;
|
|
irc_dcc_session_t * dcc_sessions;
|
|
port_mutex_t mutex_dcc;
|
|
|
|
irc_callbacks_t callbacks;
|
|
|
|
#if defined (ENABLE_SSL)
|
|
SSL * ssl;
|
|
#endif
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif /* INCLUDE_IRC_SESSION_H */
|