Skip to content
Snippets Groups Projects
Commit fd419d85 authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-244: Max MTU is 9000, just use a fixed max buffer size.

parent bba7e61a
No related branches found
No related tags found
1 merge request!56L2SS-244: Expose the SSTs in MPs
......@@ -130,7 +130,7 @@ class UDP_Receiver(Thread):
while self.stream_on:
try:
packet, _, _, _ = self.sock.recvmsg()
packet, _, _, _ = self.sock.recvmsg(9000)
self.queue.put(packet)
except socket.timeout:
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment