in reply to Re: non-blocking TCP/IP client object using callbacks
in thread non-blocking TCP/IP client object using callbacks
The question is really: What's the best way to implement a client object that can read and write to a socket, but that passes control back to the caller, and that passes received lines back to the caller via a set of function callbacks.
So far, I rather think I'll end up doing this with IPC and a fork() because it'll be the most portable. Well, I'm not 100% on that. Does IPC and fork even work on windows? I wouldn't know. But I do know that threads don't work everywhere.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: non-blocking TCP/IP client object using callbacks
by zby (Vicar) on Jul 22, 2003 at 12:40 UTC | |
by jettero (Monsignor) on Jul 22, 2003 at 12:50 UTC | |
by zby (Vicar) on Jul 22, 2003 at 13:16 UTC |