ipconfig.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  $Id: ipconfig.h,v 1.4 2001/04/30 04:51:46 davem Exp $
  3.  *
  4.  *  Copyright (C) 1997 Martin Mares
  5.  *
  6.  *  Automatic IP Layer Configuration
  7.  */
  8. /* The following are initdata: */
  9. extern int ic_enable; /* Enable or disable the whole shebang */
  10. extern int ic_proto_enabled; /* Protocols enabled (see IC_xxx) */
  11. extern int ic_host_name_set; /* Host name set by ipconfig? */
  12. extern int ic_set_manually; /* IPconfig parameters set manually */
  13. extern u32 ic_myaddr; /* My IP address */
  14. extern u32 ic_netmask; /* Netmask for local subnet */
  15. extern u32 ic_gateway; /* Gateway IP address */
  16. extern u32 ic_servaddr; /* Boot server IP address */
  17. extern u32 root_server_addr; /* Address of NFS server */
  18. extern u8 root_server_path[]; /* Path to mount as root */
  19. /* The following are persistent (not initdata): */
  20. extern int ic_proto_used; /* Protocol used, if any */
  21. extern u32 ic_nameserver; /* DNS server IP address */
  22. extern u8 ic_domain[]; /* DNS (not NIS) domain name */
  23. /* bits in ic_proto_{enabled,used} */
  24. #define IC_PROTO 0xFF /* Protocols mask: */
  25. #define IC_BOOTP 0x01 /*   BOOTP (or DHCP, see below) */
  26. #define IC_RARP 0x02 /*   RARP */
  27. #define IC_USE_DHCP    0x100 /* If on, use DHCP instead of BOOTP */