aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
Diffstat (limited to 'networking')
-rw-r--r--networking/dnsd.c2
-rw-r--r--networking/isrv_identd.c2
-rw-r--r--networking/libiproute/iprule.c1
-rw-r--r--networking/telnetd.c3
-rw-r--r--networking/zcip.c4
5 files changed, 4 insertions, 8 deletions
diff --git a/networking/dnsd.c b/networking/dnsd.c
index 8f01d5c06..19720d6bc 100644
--- a/networking/dnsd.c
+++ b/networking/dnsd.c
@@ -17,8 +17,8 @@
17 * the first porting of oao' scdns to busybox also. 17 * the first porting of oao' scdns to busybox also.
18 */ 18 */
19 19
20#include <syslog.h>
21#include "libbb.h" 20#include "libbb.h"
21#include <syslog.h>
22 22
23//#define DEBUG 1 23//#define DEBUG 1
24#define DEBUG 0 24#define DEBUG 0
diff --git a/networking/isrv_identd.c b/networking/isrv_identd.c
index a93de1244..dbdecba24 100644
--- a/networking/isrv_identd.c
+++ b/networking/isrv_identd.c
@@ -7,8 +7,8 @@
7 * Licensed under GPL version 2, see file LICENSE in this tarball for details. 7 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include <syslog.h>
11#include "libbb.h" 10#include "libbb.h"
11#include <syslog.h>
12#include "isrv.h" 12#include "isrv.h"
13 13
14enum { TIMEOUT = 20 }; 14enum { TIMEOUT = 20 };
diff --git a/networking/libiproute/iprule.c b/networking/libiproute/iprule.c
index 6b22061a7..3f9007ee9 100644
--- a/networking/libiproute/iprule.c
+++ b/networking/libiproute/iprule.c
@@ -16,7 +16,6 @@
16 * initially integrated into busybox by Bernhard Fischer 16 * initially integrated into busybox by Bernhard Fischer
17 */ 17 */
18 18
19#include <syslog.h>
20#include <netinet/in.h> 19#include <netinet/in.h>
21#include <netinet/ip.h> 20#include <netinet/ip.h>
22#include <arpa/inet.h> 21#include <arpa/inet.h>
diff --git a/networking/telnetd.c b/networking/telnetd.c
index 0201d2636..962e5cc7b 100644
--- a/networking/telnetd.c
+++ b/networking/telnetd.c
@@ -24,14 +24,13 @@
24#define DEBUG 0 24#define DEBUG 0
25 25
26#include "libbb.h" 26#include "libbb.h"
27#include <syslog.h>
27 28
28#if DEBUG 29#if DEBUG
29#define TELCMDS 30#define TELCMDS
30#define TELOPTS 31#define TELOPTS
31#endif 32#endif
32#include <arpa/telnet.h> 33#include <arpa/telnet.h>
33#include <sys/syslog.h>
34
35 34
36/* Structure that describes a session */ 35/* Structure that describes a session */
37struct tsession { 36struct tsession {
diff --git a/networking/zcip.c b/networking/zcip.c
index ef9aa2186..6e1c0d148 100644
--- a/networking/zcip.c
+++ b/networking/zcip.c
@@ -23,9 +23,6 @@
23// - avoid silent script failures, especially under load... 23// - avoid silent script failures, especially under load...
24// - link status monitoring (restart on link-up; stop on link-down) 24// - link status monitoring (restart on link-up; stop on link-down)
25 25
26#include <syslog.h>
27#include <poll.h>
28#include <sys/wait.h>
29#include <netinet/ether.h> 26#include <netinet/ether.h>
30#include <net/ethernet.h> 27#include <net/ethernet.h>
31#include <net/if.h> 28#include <net/if.h>
@@ -34,6 +31,7 @@
34#include <linux/sockios.h> 31#include <linux/sockios.h>
35 32
36#include "libbb.h" 33#include "libbb.h"
34#include <syslog.h>
37 35
38/* We don't need more than 32 bits of the counter */ 36/* We don't need more than 32 bits of the counter */
39#define MONOTONIC_US() ((unsigned)monotonic_us()) 37#define MONOTONIC_US() ((unsigned)monotonic_us())