]> git.sur5r.net Git - ngadmin/blobdiff - lib/src/network.h
Use portable way to handle timeouts
[ngadmin] / lib / src / network.h
index a51992ea28aeef6b3b5c14613e73fcb907672290..ca80cb68f969169a219fca0dca77b2a2880607fb 100644 (file)
@@ -3,44 +3,37 @@
 #define DEF_NETWORK
 
 
-#include <string.h>
-#include <unistd.h>
-#include <arpa/inet.h>
-#include <net/if.h>
-#include <netinet/ether.h>
-#include <sys/ioctl.h>
-
-#include "list.h"
+#include <nsdp/list.h>
+#include <nsdp/net.h>
 #include "lib.h"
-#include "protocol.h"
 
 
-
-// 
 int startNetwork (struct ngadmin *nga);
 
-// 
+
+int setBroadcastType (struct ngadmin *nga, bool value);
+
+
 int stopNetwork (struct ngadmin *nga);
 
-// 
+
 int forceInterface (struct ngadmin *nga);
 
-// 
-int updateTimeout (struct ngadmin *nga);
 
-// 
-int sendNgPacket (struct ngadmin *nga, char code, const List *attr);
+void prepareSend (struct ngadmin *nga, struct nsdp_cmd *nc, unsigned char code);
+
+
+void prepareRecv (struct ngadmin *nga, struct nsdp_cmd *nc, unsigned char code);
 
-// 
-int recvNgPacket (struct ngadmin *nga, char code, char *error, unsigned short *attr_error, List *attr);
 
-// 
 int readRequest (struct ngadmin *nga, List *attr);
 
-// 
+
 int writeRequest (struct ngadmin *nga, List *attr);
 
 
+void extractSwitchAttributes (struct swi_attr *sa, const List *l);
+
 
 #endif