Minor changes

This commit is contained in:
Loic Guegan 2023-07-15 14:39:07 +02:00
parent 59c454173d
commit 3440874807

View file

@ -74,25 +74,12 @@ int main (int argc, char *argv [])
zmq_ctx_destroy (context);
return 0;
// // Prepare our context and publisher
// void *context = zmq_ctx_new ();
// void *publisher = zmq_socket (context, ZMQ_PUB);
// int rc = zmq_bind (publisher, "tcp://*:"STRINGIFY(PUBLISHER_PORT));
// assert (rc == 0);
// // Initialize random number generator
// while (1) {
// zmq_send (publisher, "Hello World", 5, 0);
// printf("AA\n");
// }
// zmq_close (publisher);
// zmq_ctx_destroy (context);
return 0;
}
void publish(void *publisher, char *filepath, char* client, long int interval){
printf("Publish!\n");
char buffer[ZMQ_MSG_SIZE];
sprintf(buffer,"%s\n%s\n%ld",ZMQ_TOKEN,__key,interval);
// TODO: Send every lines of the file
zmq_send (publisher, buffer, ZMQ_MSG_SIZE, 0);
}