File: ipconfig.h

package info (click to toggle)
yaird 0.0.12-18etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,432 kB
  • ctags: 725
  • sloc: perl: 4,161; xml: 3,233; ansic: 3,105; sh: 876; makefile: 150
file content (31 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * ipconfig/ipconfig.h
 */

#include <sys/types.h>
#include <linux/types.h>	/* for __u16 */

#define LOCAL_PORT	68
#define REMOTE_PORT	(LOCAL_PORT - 1)

extern __u16 cfg_local_port;
extern __u16 cfg_remote_port;

extern struct netdev *ifaces;

extern int ipconfig_main(int argc, char *argv[]);

/*
 * Note for gcc 3.2.2:
 *
 * If you're turning on debugging, make sure you get rid of -Os from
 * the gcc command line, or else ipconfig will fail to link.
 */
#undef IPC_DEBUG

#undef DEBUG
#ifdef IPC_DEBUG
#define DEBUG(x) printf x
#else
#define DEBUG(x) do { } while(0)
#endif