/* * Copyright 2008 Stephen Liu * For license terms, see the file COPYING along with this library. */ #ifndef __spporting_hpp__ #define __spporting_hpp__ #ifdef WIN32 #include "spwin32port.hpp" #else #include #include #include #include #include #include #include #include #include #include #include #include #include #define sp_syslog syslog #define sp_openlog openlog #define sp_closelog closelog #define sp_inet_aton inet_aton #define sp_close close #define sp_writev writev #define sp_socketpair socketpair #define sp_gettimeofday gettimeofday inline int sp_initsock() { return 0; } #ifndef LOG_PERROR #define LOG_PERROR 0 #endif #endif #endif