Re: UDP reading on multiple sockets

2009-05-22 Thread Lawrence D'Oliveiro
In message <27bd949f-80b5-44c9-8e3b- c12b49c7e...@r34g2000vbi.googlegroups.com>, thomas.vo...@likeabird.de wrote: > The only honest answer would be that I'm totaly unfamiliar with select > and also the documentation I found wasn't able to clear the picture. > So are there examples of using select

Re: UDP reading on multiple sockets

2009-05-19 Thread Gabriel Rossetti
thomas.vo...@likeabird.de wrote: On 17 Mai, 04:22, Grant Edwards wrote: On 2009-05-17, Thomas Vogel wrote: I'm currently have the problem that I try to read UDP messages from multiple sockets in parallel. So let's say I get UDP packets from the same IP on the ports 2000, 2001, 2002,.

Re: UDP reading on multiple sockets

2009-05-19 Thread Steve Howell
On May 18, 6:19 am, thomas.vo...@likeabird.de wrote: > On 17 Mai, 04:22, Grant Edwards wrote: > > > On 2009-05-17, Thomas Vogel wrote: > > > > I'm currently have the problem that I try to read UDP messages from > > > multiple sockets in parallel. So let's say I get UDP packets from the > > > same

Re: UDP reading on multiple sockets

2009-05-19 Thread Jean-Paul Calderone
On Mon, 18 May 2009 06:19:01 -0700 (PDT), thomas.vo...@likeabird.de wrote: On 17 Mai, 04:22, Grant Edwards wrote: On 2009-05-17, Thomas Vogel wrote: > I'm currently have the problem that I try to read UDP messages from > multiple sockets in parallel. So let's say I get UDP packets from the >

Re: UDP reading on multiple sockets

2009-05-19 Thread Grant Edwards
On 2009-05-18, thomas.vo...@likeabird.de wrote: > On 17 Mai, 04:22, Grant Edwards wrote: >> On 2009-05-17, Thomas Vogel wrote: >> >> > I'm currently have the problem that I try to read UDP messages from >> > multiple sockets in parallel. So let's say I get UDP packets from the >> > same IP on th

Re: UDP reading on multiple sockets

2009-05-19 Thread Guido Goldstein
Hi! On Mon, 18 May 2009 06:19:01 -0700 (PDT) thomas.vo...@likeabird.de wrote: [...] > The only honest answer would be that I'm totaly unfamiliar with select > and also the documentation I found wasn't able to clear the picture. > So are there examples of using select together with sockets avail

Re: UDP reading on multiple sockets

2009-05-19 Thread thomas . vogel
On 17 Mai, 04:22, Grant Edwards wrote: > On 2009-05-17, Thomas Vogel wrote: > > > I'm currently have the problem that I try to read UDP messages from > > multiple sockets in parallel. So let's say I get UDP packets from the > > same IP on the ports 2000, 2001, 2002,... > > Is there any reason you

Re: UDP reading on multiple sockets

2009-05-16 Thread Grant Edwards
On 2009-05-17, Thomas Vogel wrote: > I'm currently have the problem that I try to read UDP messages from > multiple sockets in parallel. So let's say I get UDP packets from the > same IP on the ports 2000, 2001, 2002,... Is there any reason you can't do it the easy way by using select? http:/