summaryrefslogtreecommitdiffstats
path: root/zebra/zebra_ptm.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2015-05-20 03:04:22 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2015-05-20 03:04:22 +0200
commit0a56c84405d1201f5622add17d24ebc48f0e027c (patch)
tree802a4640ce038c3e6e4621e5b49af7765963f86d /zebra/zebra_ptm.c
parentSome debug calls are being passed the incorrect peer (diff)
downloadfrr-0a56c84405d1201f5622add17d24ebc48f0e027c.tar.xz
frr-0a56c84405d1201f5622add17d24ebc48f0e027c.zip
use ptm msg v2 header format for notifications
Diffstat (limited to 'zebra/zebra_ptm.c')
-rw-r--r--zebra/zebra_ptm.c27
1 files changed, 8 insertions, 19 deletions
diff --git a/zebra/zebra_ptm.c b/zebra/zebra_ptm.c
index 411749b3f..176e3e4dd 100644
--- a/zebra/zebra_ptm.c
+++ b/zebra/zebra_ptm.c
@@ -32,10 +32,8 @@
#define ZEBRA_PTM_RECONNECT_TIME_INITIAL 1 /* initial reconnect is 1s */
#define ZEBRA_PTM_RECONNECT_TIME_MAX 300
-#define PTM_EOF_LEN 4
#define PTM_MSG_LEN 4
-#define PTM_HEADER_LEN 10
-char *PTM_EOF_STR = "EOF\n";
+#define PTM_HEADER_LEN 37
char *ZEBRA_PTM_GET_STATUS_CMD = "get-status";
char *ZEBRA_PTM_PORT_STR = "port";
char *ZEBRA_PTM_CBL_STR = "cbl status";
@@ -173,7 +171,7 @@ zebra_ptm_socket_init (void)
zebra_ptm_sock = -1;
- sock = socket (PF_UNIX, SOCK_STREAM, 0);
+ sock = socket (PF_UNIX, (SOCK_STREAM | SOCK_NONBLOCK), 0);
if (sock < 0)
return -1;
@@ -404,21 +402,12 @@ zebra_ptm_sock_read (struct thread *thread)
/* PTM communicates in CSV format */
while(!done) {
- rcvptr = eofptr = rcvbuf;
- /* check for EOF */
- nbytes = recv(sock, eofptr, PTM_EOF_LEN, 0);
+ rcvptr = rcvbuf;
+ /* get PTM header */
+ nbytes = recv(sock, rcvptr, PTM_HEADER_LEN, 0);
if (nbytes <= 0)
break;
- if (!strncmp(eofptr, PTM_EOF_STR, PTM_EOF_LEN)){
- done = TRUE;
- continue;
- }
-
- /* get rest of PTM header */
- nbytes = recv(sock, rcvptr+PTM_EOF_LEN, PTM_HEADER_LEN-PTM_EOF_LEN, 0);
- if (nbytes <= 0)
- break;
- strncpy(msgbuf, rcvptr, PTM_MSG_LEN);
+ snprintf(msgbuf, PTM_MSG_LEN+1, "%s", rcvptr);
msglen = strtol(msgbuf, NULL, 10);
/* get the PTM message */
@@ -432,8 +421,7 @@ zebra_ptm_sock_read (struct thread *thread)
}
if (nbytes <= 0) {
-
- if (nbytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN)
+ if (errno && errno != EWOULDBLOCK && errno != EAGAIN) {
zlog_warn ("routing socket error: %s", safe_strerror (errno));
close (zebra_ptm_sock);
@@ -441,6 +429,7 @@ zebra_ptm_sock_read (struct thread *thread)
zebra_ptm_thread = thread_add_timer (zebrad.master, zebra_ptm_connect,
NULL, zebra_ptm_reconnect_time);
return (-1);
+ }
}
zebra_ptm_thread = thread_add_read (zebrad.master, zebra_ptm_sock_read, NULL, sock);