tags:

views:

63

answers:

0

Hello everybody,

I need to make a Server-Client software in bigloo and i need some help to make that. I am using the latest version of bigloo, but i browsed in internet and there is only an example using an old version.

There they use macros like (socket-dup s) and (thread-await! (make-connect-signal s2)), where s is the server socket and s2 is a client socket.

I need some help to discover macros that make the same stuff like those, since they are not anymore in bigloo 3.2b-2. I was reading about that (socket-option) macro, but i didn't understand how it works.

Here is the website of an example of what i am trying to do http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo-13.html#Thread-Example

I am trying to make a server that more than 1 client can connect at same time and they can send information to server. I will use fair-threads to make that.

Tks a lot in advance.

Will