/************************************************************************* * (C) 2010 AITNET ltd - Sofia/Bulgaria - * by Michael Pounov * * $Author: misho $ * $Id: defs.h,v 1.1.1.1.2.3 2010/06/23 15:07:15 misho Exp $ * *************************************************************************/ #ifndef __DEFS_H #define __DEFS_H #define DEF_RPC_TIMEOUT 3 #define BLOBSIZ 1460 #define BLOB_FILE "%s/%s:%d-%04x_%08x-%08x_%02x.blob" #define LOGERR { \ rpc_Errno = errno; \ strlcpy(rpc_Error, strerror(errno), STRSIZ); \ } extern int rpc_Kill; extern int rpc_Errno; extern char rpc_Error[]; inline void rpc_SetErr(int eno, char *estr, ...); #endif