aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_udp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_udp.h')
-rw-r--r--src/transport/plugin_transport_udp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_udp.h b/src/transport/plugin_transport_udp.h
index d3eb192a1..6f78a4169 100644
--- a/src/transport/plugin_transport_udp.h
+++ b/src/transport/plugin_transport_udp.h
@@ -251,9 +251,11 @@ struct Plugin
251 */ 251 */
252 uint16_t aport; 252 uint16_t aport;
253 253
254 struct UDPMessageWrapper *msg_head; 254 struct UDPMessageWrapper *ipv4_queue_head;
255 struct UDPMessageWrapper *msg_tail; 255 struct UDPMessageWrapper *ipv4_queue_tail;
256 256
257 struct UDPMessageWrapper *ipv6_queue_head;
258 struct UDPMessageWrapper *ipv6_queue_tail;
257}; 259};
258 260
259 261