[boost] Re: Re: SocketSetConcept (fd_set wrapper)

2002-11-25 Thread Hugo Duncan
Hamish, On 24 Nov 2002 23:23:27 +, Hamish Mackenzie [EMAIL PROTECTED] wrote: is_set - count (I'm not fussed about this one) Not sure about count, how about something like active Yes, or contains? or find. Having looked at set maybe count is better, but that suggests an integer return

[boost] Re: Re: SocketSetConcept (fd_set wrapper)

2002-11-25 Thread Michel André
So I think we should be careful to keep it simple. I think it is interesting that in Hugo's current implementation, no library is required. Very nice. I won't be surprised if we need a real library at some point, but it won't be anything like the size of ACE. I think we should try to

Re: [boost] Re: Re: SocketSetConcept (fd_set wrapper)

2002-11-25 Thread Hamish Mackenzie
On Mon, 2002-11-25 at 15:57, Hugo Duncan wrote: I have attached the implementation of file_descriptor_set I have been using in my code recently. Is there really any difference except in the name? The use of friend is for select is certainly worth thinking about. Nope, just thought it

RE: [boost] Re: Re: SocketSetConcept (fd_set wrapper)

2002-11-25 Thread Darryl Green
From: Hamish Mackenzie [mailto:[EMAIL PROTECTED]] I'll change the name to file_descriptor_set. The reason I had left it as socket_set was that I was not sure how to mix SOCKET and files on windows - but htat looks to be easy from your code Ah, I should have pointed out that I have