diff options
Diffstat (limited to 'src/libsystemd-dhcp/dhcp-internal.h')
-rw-r--r-- | src/libsystemd-dhcp/dhcp-internal.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/libsystemd-dhcp/dhcp-internal.h b/src/libsystemd-dhcp/dhcp-internal.h index 814a3cdf64..4472d95095 100644 --- a/src/libsystemd-dhcp/dhcp-internal.h +++ b/src/libsystemd-dhcp/dhcp-internal.h @@ -22,10 +22,15 @@ ***/ #include <stdint.h> +#include <linux/if_packet.h> + +#include "socket-util.h" #include "dhcp-protocol.h" -int dhcp_network_send_raw_packet(int index, const void *packet, size_t len); +int dhcp_network_bind_raw_socket(int index, union sockaddr_union *link); +int dhcp_network_send_raw_socket(int s, const union sockaddr_union *link, + const void *packet, size_t len); int dhcp_option_append(uint8_t **buf, size_t *buflen, uint8_t code, size_t optlen, const void *optval); |