>>>>> Djames Suhanko <djames.suha...@gmail.com> (DS) wrote:

>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 <p...@cs.uu.nl>
URL: http://pietvanoostrum.com [PGP 8DAE142BE17999C4]
Private email: p...@vanoostrum.org
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to