summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2023-07-15 19:31:17 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2023-07-15 19:31:17 +0200
commit831c3999b48613c61e15094bf0581cb38e1c3467 (patch)
treec9cd739ed6cc3d6a98fbadfa0cbda6f7ce3bdbc9 /src
parentb63811848fd58d0c0478244ca19a938ad88a4257 (diff)
Minor changes
Diffstat (limited to 'src')
-rw-r--r--src/logger.c3
-rw-r--r--src/publisher.c4
-rw-r--r--src/subscriber.c (renamed from src/client.c)3
3 files changed, 0 insertions, 10 deletions
diff --git a/src/logger.c b/src/logger.c
index 8798db4..0a3278e 100644
--- a/src/logger.c
+++ b/src/logger.c
@@ -1,6 +1,3 @@
-// Weather update client
-// Connects SUB socket to tcp://localhost:5556
-// Collects weather updates and finds avg temp in zipcode
#include <zmq.h>
#include <assert.h>
#include <time.h>
diff --git a/src/publisher.c b/src/publisher.c
index 8b0906a..e216232 100644
--- a/src/publisher.c
+++ b/src/publisher.c
@@ -1,7 +1,3 @@
-// Weather update server
-// Binds PUB socket to tcp://*:5556
-// Publishes random weather updates
-
#include <zmq.h>
#include <assert.h>
#include <time.h>
diff --git a/src/client.c b/src/subscriber.c
index 32172fd..932a82d 100644
--- a/src/client.c
+++ b/src/subscriber.c
@@ -1,6 +1,3 @@
-// Weather update client
-// Connects SUB socket to tcp://localhost:5556
-// Collects weather updates and finds avg temp in zipcode
#include <zmq.h>
#include <assert.h>
#include <time.h>