![]() |
UDP Socket Basic question - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Networking (https://python-forum.io/forum-12.html) +--- Thread: UDP Socket Basic question (/thread-12703.html) |
UDP Socket Basic question - zeeshannnetwork - Sep-08-2018 Hi everyone, I am from Networking background, I have some basic questions about UDP SOCKET. Let say we have two machines:SERVER and Client. Client will send data via UDP SOCKET to Server. What decides the maximum UDP data segment? I have seen where we specify the Number of bytes at a buffer location in the SEND() function.Does it determine the max UDP segment length? Appreciated!! RE: UDP Socket Basic question - Larz60+ - Sep-08-2018 I can't answer your question, but here's a package you should look at: https://pypi.org/project/nclib/ It uses both UDP and TCP sockets, and claims to be 'your friend' RE: UDP Socket Basic question - zeeshannnetwork - Sep-10-2018 It is funny because I was told they are very low level networking questions. Thanks for your response. |