代码搜索:handler
找到约 10,000 项符合「handler」的源代码
代码结果 10,000
www.eeworm.com/read/222728/14678326
h error_handler.h
/*---------------------------------------------------------------------------*/
#ifndef error_handlerH
#define error_handlerH
/*-------------------------------------------------------------------
www.eeworm.com/read/222728/14678369
c error_handler.c
#include "common.h"
#include "error_handler.h"
char res[64];
char * error_id(void){
int ee;
ee =
#if defined(WIN32) || defined(__WIN32__)
WSAGetLastError()
#else
errno
#endif
www.eeworm.com/read/222728/14678373
h client_handler.h
#ifndef client_handlerH
#define client_handlerH
#include "common.h"
#include "server_loop.h"
#include "init.h"
#include "protocol.h"
#ifdef OVER_TCP
#include "over_tcp.h"
#endif
#ifdef AUTH
www.eeworm.com/read/222728/14678377
h error_handler.h
/*---------------------------------------------------------------------------*/
#ifndef error_handlerH
#define error_handlerH
/*-------------------------------------------------------------------
www.eeworm.com/read/222728/14678409
c client_handler.c
#include "client_handler.h"
unsigned nclients = 0;
int timer_disabled = 0;
long last_registration = 0;
int server_read(CLIENT_DATA *cd);
int client_write(CLIENT_DATA *cd);
int client_excep
www.eeworm.com/read/222728/14678430
c error_handler.c
#include "common.h"
#include "error_handler.h"
char res[64];
char * error_id(void){
int ee;
ee =
#if defined(WIN32) || defined(__WIN32__)
WSAGetLastError()
#else
errno
#endif
www.eeworm.com/read/222728/14678435
h client_handler.h
#ifndef client_handlerH
#define client_handlerH
#include "common.h"
#include "server_loop.h"
#include "init.h"
#include "protocol.h"
extern int client_handler(void *data,
MASTER_FD* master
www.eeworm.com/read/222728/14678440
h error_handler.h
/*---------------------------------------------------------------------------*/
#ifndef error_handlerH
#define error_handlerH
/*-------------------------------------------------------------------
www.eeworm.com/read/222728/14678462
c client_handler.c
#include "client_handler.h"
int behind_firewall(CLIENT_DATA *cd);
int register_proxy(CLIENT_DATA *cd);
int find_proxy(CLIENT_DATA *cd);
int get_proxy(CLIENT_DATA *cd);
int disconnect(CLIENT_DAT
www.eeworm.com/read/119797/14821223