[python-win32] Asynchronous UDP socket programming

Mark Hammond mhammond@skippinet.com.au
Mon, 21 Oct 2002 17:21:56 +1000


> The "Windows" way to do asynchronous sockets is to either call
> WSAAsyncSelect to tell winsock to post a windows message to a windows
> message queue (you pass an HWND) or you can call WSAEventSelect to have
> an Event object signalled. It looks liek WSAAsyncSelect is not available
> in the win32 extensions but WSAEventSelect is.

WSAAsyncSelect is in (recent, at least) win32file.

Not that I know anything about socket programming, let alone async socket
programming <wink>

Mark.