houxiao
2016-12-09 112c00ecb85e2f1ae16841d01949f009a709fd5e
ProxyServer/proxyserver.h
@@ -14,6 +14,7 @@
#include<sys/time.h>
#include<stdbool.h>
#include<fcntl.h>
#include "/usr/include/mysql/mysql.h"
#include<sys/stat.h>
#define _DELETE_FILE
#include<dirent.h>
@@ -91,16 +92,6 @@
void UrnStringToBytes(char* byte_array_out,int * byte_array_length_out,char* StartTim,char* EndTime);
void zclock_sleep (int msecs);
void zclock_sleep (int msecs)
{
    struct timespec t;
    t.tv_sec  =  msecs / 1000;
    t.tv_nsec = (msecs % 1000) * 1000000;
    nanosleep (&t, NULL);
}
typedef struct{
   char name[1024];