mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
caa40fa023
column in db. Not really used yet but interesting to watch....
60 lines
1.8 KiB
C
60 lines
1.8 KiB
C
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
|
|
|
/*
|
|
* Copyright 2005 - 2012 by Eric House (xwords@eehouse.org). All rights
|
|
* reserved.
|
|
*
|
|
* 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.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef _XWRELAY_PRIV_H_
|
|
#define _XWRELAY_PRIV_H_
|
|
|
|
#include <time.h>
|
|
#include <netinet/in.h>
|
|
#include "lstnrmgr.h"
|
|
#include "xwrelay.h"
|
|
|
|
typedef unsigned char HostID; /* see HOST_ID_SERVER */
|
|
|
|
typedef enum {
|
|
XW_LOGERROR
|
|
,XW_LOGINFO
|
|
,XW_LOGVERBOSE0
|
|
,XW_LOGVERBOSE1
|
|
} XW_LogLevel;
|
|
|
|
void logf( XW_LogLevel level, const char* format, ... );
|
|
|
|
void denyConnection( int socket, XWREASON err );
|
|
bool send_with_length_unsafe( int socket, unsigned char* buf, int bufLen );
|
|
|
|
time_t uptime(void);
|
|
|
|
void blockSignals( void ); /* call from all but main thread */
|
|
|
|
int GetNSpawns(void);
|
|
|
|
int make_socket( unsigned long addr, unsigned short port );
|
|
|
|
int read_packet( int sock, unsigned char* buf, int buflen );
|
|
void handle_proxy_packet( unsigned char* buf, int bufLen, int socket,
|
|
in_addr& addr );
|
|
|
|
const char* cmdToStr( XWRELAY_Cmd cmd );
|
|
|
|
extern class ListenerMgr g_listeners;
|
|
|
|
#endif
|