My source:
#!/usr/bin/env python
import socket
mySocket = socket.socket ( socket.AF_INET, socket.SOCK_DGRAM )
mySocket.bind ( ( '', 514 ) )
data, addr = mySocket.recvfrom(100)
print data
--
Djames Suhanko
LinuxUser 158.760
What happens when you print addr?
>DS> Hello,all!
>DS> I wrote a little programa that listening UDP packets. A can receive
>DS> the messages, but I can't see the the origin IP.
>DS> How can I to get the remote IP address in connection?
What do you think the addr is for in
data, addr = mySocket.recvfrom(100)?
>DS> My source:
>DS> #!/usr/bin/env python
>DS> import socket
>DS> mySocket = socket.socket ( socket.AF_INET, socket.SOCK_DGRAM )
>DS> mySocket.bind ( ( '', 514 ) )
>DS> data, addr = mySocket.recvfrom(100)
>DS> print data
--
Piet van Oostrum <pi...@cs.uu.nl>
URL: http://pietvanoostrum.com [PGP 8DAE142BE17999C4]
Private email: pi...@vanoostrum.org
> --
> http://mail.python.org/mailman/listinfo/python-list