Hi Guys I need to write a chat server in C. It only needs to use IPC.
Could you help me on how to proceed on this. A skeleton code will help me a lot.
|
1
|
|||||||||
|
|
|
And so on. As mentioned, Beej's Guide can help you get past #1 and #2. EDIT: OK, you added the 'IPC' language. You can still use sockets for this over the loopback device, unless you've some special requirement that you think IPC covers. You can also use UNIX domain sockets - named pipes. perlipc discusses them with a short example, and you can continue to e.g. the GNU C library manual. |
||||||
|
|
|
You should look at Beej's Guide to Network Programming. Everything you need to know to build a simple chat server can be found there. |
||
|
|