aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_wlan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_wlan.h')
-rw-r--r--src/transport/plugin_transport_wlan.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_wlan.h b/src/transport/plugin_transport_wlan.h
index 979e466bf..3baa4d79d 100644
--- a/src/transport/plugin_transport_wlan.h
+++ b/src/transport/plugin_transport_wlan.h
@@ -108,12 +108,12 @@ static const uint8_t u8aIeeeHeader[] =
108 }; 108 };
109 109
110// gnunet bssid 110// gnunet bssid
111static const char mac_bssid[] = 111static const struct MacAddress mac_bssid =
112 { 0x13, 0x22, 0x33, 0x44, 0x55, 0x66 }; 112 { { 0x13, 0x22, 0x33, 0x44, 0x55, 0x66 } } ;
113 113
114// broadcast mac 114// broadcast mac
115static const char bc_all_mac[] = 115static const struct MacAddress bc_all_mac =
116 { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; 116 { { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } };
117 117
118 118
119/* this is the template radiotap header we send packets out with */ 119/* this is the template radiotap header we send packets out with */