Tagged Questions
2
votes
2answers
517 views
Writing a TTL decorator in Python
I'm trying to write a TTL decorator in python.
Basically I give it raise an exception if the function doesn't
answer in the selected time.
You can find the thead2 snippets on ...
1
vote
1answer
40 views
Python: forging packet UDP with given TTL
I'd need build up an UDP packet with Python setting a particular value of its TTL. Could anyone show me the minimal-length code to do this?
Thank you very much indeed!
Matteo
1
vote
2answers
41 views
Getting TTL of incoming UDP packet in Python
I'm using the socket module in Python to do some basic UDP client-server communication. What I would need to do is quite simple: client sends server a packet, server answers with client's public ip ...