Minor changes

This commit is contained in:
Loic Guegan 2023-07-16 10:50:20 +02:00
parent 19a77c6fd7
commit 565984ed49

View file

@ -29,6 +29,12 @@ int main (int argc, char *argv [])
__port=atoi(argv[4]);
__key=argv[5];
//----- Sanity checks
if(__loginterval<MIN_INTERVAL){
printf("Log interval is too small (min=%ds)\n",MIN_INTERVAL);
exit(2);
}
//----- Prepare our context and publisher
void *context = zmq_ctx_new ();
void *publisher = zmq_socket (context, ZMQ_PUB);