diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2020-03-28 18:56:11 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2020-03-28 18:56:11 +0100 |
commit | 9709b4e2f5a32aab087c65994a600dc465310918 (patch) | |
tree | a34193a1ce903653dcf08e4e3077df08eb0cd445 /llmnr.c | |
parent | 8086a3db780f8a4ee6943a3ef2f774fc78105327 (diff) |
llmnr: fix ifindex type
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'llmnr.c')
-rw-r--r-- | llmnr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -188,7 +188,7 @@ static void llmnr_respond(unsigned int ifindex, const struct llmnr_hdr *hdr, pkt_free(p); } -static void llmnr_packet_process(unsigned int ifindex, const uint8_t *pktbuf, size_t len, +static void llmnr_packet_process(int ifindex, const uint8_t *pktbuf, size_t len, int sock, const struct sockaddr_storage *sst) { const struct llmnr_hdr *hdr = (const struct llmnr_hdr *)pktbuf; |