test_socket/stream_mod_pub_sub.c
@@ -1,5 +1,5 @@ #include "mod_socket.h" #include "shm_mm.h" #include "shm_mm_wraper.h" #include "usg_common.h" @@ -35,7 +35,7 @@ } int main(int argc, char *argv[]) { shm_init(512); shm_mm_wrapper_init(512); int port; if (argc < 3) { fprintf(stderr, "Usage: reqrep %s|%s <PORT> ...\n", "server", "client"); @@ -51,7 +51,7 @@ if (strcmp("client", argv[1]) == 0) client(port); shm_destroy(); shm_mm_wrapper_destroy(); // fprintf(stderr, "Usage: reqrep %s|%s <URL> ...\n", "server", "client"); return 0; }