python socket programming..

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nitheshsalian
    New Member
    • Mar 2008
    • 9

    python socket programming..

    hi,
    can anyone tell me the syntax or prototype of the recvfrom() system call....

    please specify the arguments and the flags....

    thnak u...
  • Subsciber123
    New Member
    • Nov 2006
    • 87

    #2
    Code:
    import socket
    sock=socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
    data,addr=sock.recvfrom(bytes)
    or something like that.

    Comment

    Working...