> Perhaps you could attach the relevant portions of your init code and
> capture code?

I've just been trying it from the python command line so it's very simple:

from socket import *
import struct

host = '10.0.0.30'
port = 60000

s = socket(AF_INET, SOCK_DGRAM)
s.settimeout(10)
s.bind((host, port))

print "Getting a packet...",
message = s.recv(1024)

It times out on this last line.  The packets are 1024 bytes of data,
although I've tried higher values here.  The host and port match those
given by Wireshark, but I've also tried binding to host = '' with no luck.


Sean


Reply via email to