socket client server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amontiliado
    New Member
    • Nov 2006
    • 1

    #1

    socket client server

    -using the UNIX ,create an announcement environment.
    -this environment consists of an announcement server and a listening client.
    -the announcement server is a process which is executed on the back-ground.
    the server keeps a static collection of announcements(5 strings for example).
    -the listening client is a process which communicates with the server using sockets.-the server,after every connection request,transfe rs the announcement collection to the client using the fork() and then ends the connection.

    i hope the translation was good, sorry for my poor english
    please , we would be grateful for any help. we re socket beginners :P
  • horace1
    Recognized Expert Top Contributor
    • Nov 2006
    • 1510

    #2
    Originally posted by amontiliado
    -using the UNIX ,create an announcement environment.
    -this environment consists of an announcement server and a listening client.
    -the announcement server is a process which is executed on the back-ground.
    the server keeps a static collection of announcements(5 strings for example).
    -the listening client is a process which communicates with the server using sockets.-the server,after every connection request,transfe rs the announcement collection to the client using the fork() and then ends the connection.

    i hope the translation was good, sorry for my poor english
    please , we would be grateful for any help. we re socket beginners :P
    Have a look at URL
    http://sage.mc.yu.edu/kbeen/teaching/networking/resources/sockets.html

    it gives examples of TCP and UDP clients and servers in C++ and TCP clients and servers in Java

    Comment

    Working...