Rev 5 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: server.c 4 2024-09-24 18:35:15Z nishi $ */
#include "ms_server.h"
#include <stdio.h>
#include <cm_ipc.h>
int ms_handle_server(int argc, char** argv, int start) {
int sock = cm_ipc_create();
if(sock == -1) {
fprintf(stderr, "Failed to create the socket\n");
}
return 0;
}