binding to specific address
[oweals/gnunet.git] / src / transport / wlan / helper_common.h
index 3c33887d1d664432a03549cc7f32a222b20d8ab0..9d53176c6f9a3644cd1e8e34b5cbdaa10bd5ee4e 100644 (file)
@@ -8,11 +8,17 @@
 #ifndef HELPER_COMMON_H_
 #define HELPER_COMMON_H_
 
-int
-getFrequencyFromChannel (int channel);
-int
-getChannelFromFrequency (int frequency);
 int
 send_mac_to_plugin (char *buffer, uint8_t * mac);
 
+
+#define MAXLINE 4096
+
+struct sendbuf
+{
+  unsigned int pos;
+  unsigned int size;
+  char buf[MAXLINE * 2];
+};
+
 #endif /* HELPER_COMMON_H_ */