// // Created by root on 10/30/19. // #ifndef ECDAA_ISSUER_COMMON_H #define ECDAA_ISSUER_COMMON_H #define ISSUERIP "127.0.0.1" #define ISSUERPORT 6590 #define MEMBERIP "127.0.0.1" #define MEMBERPORT 6591 #define VERIFIERIP "127.0.0.1" #define VERIFIERPORT 6592 #define MAX_CLIENTS 10 #define MAX_BUFSIZE 1024 typedef int (*conn_handler)(char* buffer); #endif //ECDAA_ISSUER_COMMON_H