lib:ldb: Use correct integer types for sizes
[vlendec/samba-autobuild/.git] / source3 / lib / addrchange.h
index 9587be776eda18f46e2f6a26ad0d2ee50d6103cc..05999dfefedadaeb8b31e544877015ec9b35d1dc 100644 (file)
 #ifndef __ADDRCHANGE_H__
 #define __ADDRCHANGE_H__
 
-#include "lib/talloc/talloc.h"
-#include "lib/tevent/tevent.h"
+#include "replace.h"
+#include "system/network.h"
+#include <talloc.h>
+#include <tevent.h>
 #include "libcli/util/ntstatus.h"
-#include "lib/replace/replace.h"
-#include "lib/replace/system/network.h"
 
 struct addrchange_context;
 
@@ -39,7 +39,9 @@ enum addrchange_type {
        ADDRCHANGE_DEL
 };
 
-NTSTATUS addrchange_recv(struct tevent_req *req, enum addrchange_type *type,
-                        struct sockaddr_storage *addr);
+NTSTATUS addrchange_recv(struct tevent_req *req,
+                        enum addrchange_type *type,
+                        struct sockaddr_storage *addr,
+                        uint32_t *if_index);
 
 #endif