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

https://github.com/raideno/c-socket-programming

Client - Server written in C.
https://github.com/raideno/c-socket-programming

c c-socket socket-programming

Last synced: 6 months ago
JSON representation

Client - Server written in C.

Awesome Lists containing this project

README

          

# C Socket Server - Client

A simple Server - Client sockets written in C with dynamics commands in the server, each command is putted in a separate file inside of the commands folder.

```
- server
- - commands
- - - command-1-name.c
- - - command-2-name.c
- - - command-3-name.c
- - lib
- - - lib-1-file.c
- - - lib-2-file.c
- - utils
- - - utils-1-file.c
- - - utils-2-file.c
- - - utils-3-file.c
- - types
- - - types-file.c
- - index.c
```

Compile with a simple

```bash
make
```

From the terminal.