diff options
Diffstat (limited to 'llmnr.h')
-rw-r--r-- | llmnr.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* - * Copyright (C) 2015-2016 Tobias Klauser <tklauser@distanz.ch> + * Copyright (C) 2015-2017 Tobias Klauser <tklauser@distanz.ch> * * This file is part of llmnrd. * @@ -20,10 +20,8 @@ #define LLMNR_H #include <stdbool.h> -#include <stdint.h> -int llmnr_init(const char *hostname, uint16_t port, bool ipv6, const char *iface); -int llmnr_run(void); -void llmnr_stop(void); +void llmnr_init(const char *hostname, bool ipv6); +void llmnr_recv(int sock); #endif /* LLMNR_H */ |