Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/abdulsamie10/clientservertcp

This repository contains code of communication between client and server using TCP.
https://github.com/abdulsamie10/clientservertcp

c c-plus-plus c-programming client client-server client-side protocol server server-side tcp tcp-client tcp-protocol tcp-server tcp-socket

Last synced: about 8 hours ago
JSON representation

This repository contains code of communication between client and server using TCP.

Awesome Lists containing this project

README

        

# ClientServerTCP
This repository contains code of communication between client and server using TCP.

# OS Dependency
Ubuntu/Linux

# Import and Run
Firstly run server using following commnds.

For compiling:

gcc -o s.out server.c

For running:

./s.out

After creating server, here comes the command for compiling and running client.

For compiling:

gcc -o c.out client.c

For running:

./c.out