Unixsockets

Simple Unix IPC implementation with Sockets

View the Project on GitHub ibipul/UnixSockets

Author:


Unix Socet IPC Implementation

We use socket programming for inter process communications to design a simple console based chat application.

Contents:

Usage:

gcc chatserv.c -o serv
gcc chatcli.c -o cli
./serv

(in a new tab)

./cli

Then chat away!

Notes:

It's possible to generalize both server and client by accepting the ip of the machines in command line, or even supply server ip to client in commadline.