aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r--networking/udhcp/common.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h
index 55782b51b..38ede0124 100644
--- a/networking/udhcp/common.h
+++ b/networking/udhcp/common.h
@@ -54,14 +54,16 @@ struct BUG_bad_sizeof_struct_udp_dhcp_packet {
54 [(sizeof(struct udp_dhcp_packet) != 576 + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS) ? -1 : 1]; 54 [(sizeof(struct udp_dhcp_packet) != 576 + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS) ? -1 : 1];
55}; 55};
56 56
57void udhcp_init_header(struct dhcpMessage *packet, char type);
58int udhcp_get_packet(struct dhcpMessage *packet, int fd);
59uint16_t udhcp_checksum(void *addr, int count); 57uint16_t udhcp_checksum(void *addr, int count);
60int udhcp_raw_packet(struct dhcpMessage *payload, 58
59void udhcp_init_header(struct dhcpMessage *packet, char type);
60
61int udhcp_recv_packet(struct dhcpMessage *packet, int fd);
62int udhcp_send_raw_packet(struct dhcpMessage *payload,
61 uint32_t source_ip, int source_port, 63 uint32_t source_ip, int source_port,
62 uint32_t dest_ip, int dest_port, 64 uint32_t dest_ip, int dest_port,
63 const uint8_t *dest_arp, int ifindex); 65 const uint8_t *dest_arp, int ifindex);
64int udhcp_kernel_packet(struct dhcpMessage *payload, 66int udhcp_send_kernel_packet(struct dhcpMessage *payload,
65 uint32_t source_ip, int source_port, 67 uint32_t source_ip, int source_port,
66 uint32_t dest_ip, int dest_port); 68 uint32_t dest_ip, int dest_port);
67 69