diff options
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r-- | networking/udhcp/dhcpc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h index 09b014239..20f4e52b8 100644 --- a/networking/udhcp/dhcpc.h +++ b/networking/udhcp/dhcpc.h | |||
@@ -38,12 +38,12 @@ extern struct client_config_t client_config; | |||
38 | 38 | ||
39 | /*** clientpacket.h ***/ | 39 | /*** clientpacket.h ***/ |
40 | 40 | ||
41 | unsigned random_xid(void); | 41 | uint32_t random_xid(void); |
42 | int send_discover(unsigned long xid, unsigned long requested); | 42 | int send_discover(uint32_t xid, uint32_t requested); |
43 | int send_selecting(unsigned long xid, unsigned long server, unsigned long requested); | 43 | int send_selecting(uint32_t xid, uint32_t server, uint32_t requested); |
44 | int send_renew(unsigned long xid, unsigned long server, unsigned long ciaddr); | 44 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); |
45 | int send_renew(unsigned long xid, unsigned long server, unsigned long ciaddr); | 45 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); |
46 | int send_release(unsigned long server, unsigned long ciaddr); | 46 | int send_release(uint32_t server, uint32_t ciaddr); |
47 | int get_raw_packet(struct dhcpMessage *payload, int fd); | 47 | int get_raw_packet(struct dhcpMessage *payload, int fd); |
48 | 48 | ||
49 | 49 | ||