summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/tools/ipsyncs.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/tools/ipsyncs.c')
-rw-r--r--contrib/ipfilter/tools/ipsyncs.c52
1 files changed, 26 insertions, 26 deletions
diff --git a/contrib/ipfilter/tools/ipsyncs.c b/contrib/ipfilter/tools/ipsyncs.c
index 887eeab..43692cd 100644
--- a/contrib/ipfilter/tools/ipsyncs.c
+++ b/contrib/ipfilter/tools/ipsyncs.c
@@ -1,13 +1,13 @@
/* $FreeBSD$ */
/*
- * Copyright (C) 2001-2006 by Darren Reed.
+ * Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*/
#if !defined(lint)
static const char sccsid[] = "@(#)ip_fil.c 2.41 6/5/96 (C) 1993-2000 Darren Reed";
-static const char rcsid[] = "@(#)$Id: ipsyncs.c,v 1.5.2.4 2006/08/26 11:21:15 darrenr Exp $";
+static const char rcsid[] = "@(#)$Id$";
#endif
#include <sys/types.h>
#include <sys/time.h>
@@ -54,10 +54,10 @@ static void handleterm(int sig)
#define BUFFERLEN 1400
int main(argc, argv)
-int argc;
-char *argv[];
+ int argc;
+ char *argv[];
{
- int nfd = -1 , lfd = -1;
+ int nfd = -1 , lfd = -1;
int n1, n2, n3, magic, len, inbuf;
struct sockaddr_in sin;
struct sockaddr_in in;
@@ -66,14 +66,14 @@ char *argv[];
syncupdent_t *su;
synchdr_t *sh;
char *progname;
-
+
progname = strrchr(argv[0], '/');
if (progname) {
progname++;
} else {
progname = argv[0];
}
-
+
if (argc < 2) {
usage(progname);
exit(1);
@@ -86,7 +86,7 @@ char *argv[];
#endif
openlog(progname, LOG_PID, LOG_SECURITY);
-
+
lfd = open(IPSYNC_NAME, O_WRONLY);
if (lfd == -1) {
syslog(LOG_ERR, "Opening %s :%m", IPSYNC_NAME);
@@ -101,14 +101,14 @@ char *argv[];
sin.sin_port = htons(atoi(argv[2]));
else
sin.sin_port = htons(43434);
- if (argc > 3)
+ if (argc > 3)
in.sin_addr.s_addr = inet_addr(argv[3]);
else
in.sin_addr.s_addr = 0;
in.sin_port = 0;
while(1) {
-
+
if (lfd != -1)
close(lfd);
if (nfd != -1)
@@ -119,7 +119,7 @@ char *argv[];
syslog(LOG_ERR, "Opening %s :%m", IPSYNC_NAME);
goto tryagain;
}
-
+
nfd = socket(AF_INET, SOCK_DGRAM, 0);
if (nfd == -1) {
syslog(LOG_ERR, "Socket :%m");
@@ -135,20 +135,20 @@ char *argv[];
}
syslog(LOG_INFO, "Listening to %s", inet_ntoa(sin.sin_addr));
-
- inbuf = 0;
+
+ inbuf = 0;
while (1) {
- /*
+ /*
* XXX currently we do not check the source address
* of a datagram, this can be a security risk
*/
n1 = read(nfd, buff+inbuf, BUFFERLEN-inbuf);
-
+
printf("header : %d bytes read (header = %d bytes)\n",
- n1, sizeof(*sh));
-
+ n1, (int) sizeof(*sh));
+
if (n1 < 0) {
syslog(LOG_ERR, "Read error (header): %m");
goto tryagain;
@@ -161,8 +161,8 @@ char *argv[];
sleep(1);
continue;
}
-
- inbuf += n1;
+
+ inbuf += n1;
moreinbuf:
if (inbuf < sizeof(*sh)) {
@@ -171,7 +171,7 @@ moreinbuf:
sh = (synchdr_t *)buff;
len = ntohl(sh->sm_len);
- magic = ntohl(sh->sm_magic);
+ magic = ntohl(sh->sm_magic);
if (magic != SYNHDRMAGIC) {
syslog(LOG_ERR, "Invalid header magic %x",
@@ -199,8 +199,8 @@ moreinbuf:
printf(" table:Unknown(%d)", sh->sm_table);
printf(" num:%d\n", (u_32_t)ntohl(sh->sm_num));
-#endif
-
+#endif
+
if (inbuf < sizeof(*sh) + len) {
continue; /* need more data */
goto tryagain;
@@ -213,9 +213,9 @@ moreinbuf:
} else if (sh->sm_cmd == SMC_UPDATE) {
su = (syncupdent_t *)buff;
if (sh->sm_p == IPPROTO_TCP) {
- printf(" TCP Update: age %lu state %d/%d\n",
+ printf(" TCP Update: age %lu state %d/%d\n",
su->sup_tcp.stu_age,
- su->sup_tcp.stu_state[0],
+ su->sup_tcp.stu_state[0],
su->sup_tcp.stu_state[1]);
}
} else {
@@ -231,7 +231,7 @@ moreinbuf:
goto tryagain;
}
-
+
if (n3 != n2) {
syslog(LOG_ERR, "%s: Incomplete write (%d/%d)",
IPSYNC_NAME, n3, n2);
@@ -245,7 +245,7 @@ moreinbuf:
/* move buffer to the front,we might need to make
* this more efficient, by using a rolling pointer
* over the buffer and only copying it, when
- * we are reaching the end
+ * we are reaching the end
*/
inbuf -= n2;
if (inbuf) {
OpenPOWER on IntegriCloud