mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-06 03:46:25 +02:00
Minor changes
This commit is contained in:
parent
59c454173d
commit
3440874807
1 changed files with 1 additions and 14 deletions
|
@ -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);
|
||||
}
|
Loading…
Add table
Reference in a new issue