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.
- Host: GitHub
- URL: https://github.com/raideno/c-socket-programming
- Owner: raideno
- Created: 2023-11-23T18:17:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-25T10:14:05.000Z (over 2 years ago)
- Last Synced: 2024-12-29T08:26:31.067Z (over 1 year ago)
- Topics: c, c-socket, socket-programming
- Language: C
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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.