Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gremble0/cchat
GUI TCP client written in C with raylib, sister project of gochat.
https://github.com/gremble0/cchat
c network networking raylib raylib-c tcp tcp-client thread threading
Last synced: 9 days ago
JSON representation
GUI TCP client written in C with raylib, sister project of gochat.
- Host: GitHub
- URL: https://github.com/gremble0/cchat
- Owner: gremble0
- License: mit
- Created: 2023-11-03T19:50:17.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-17T02:38:30.000Z (about 1 year ago)
- Last Synced: 2024-11-12T22:11:05.363Z (2 months ago)
- Topics: c, network, networking, raylib, raylib-c, tcp, tcp-client, thread, threading
- Language: C
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# c-chat
This is the client sister project of [go-chat](https://github.com/gremble0/gochat) - a multi user chat server. Cchat uses raylib to create a UI allowing the user to communicate with the server through c standard library functions.## Dependencies
- raylib
- make (optional)
- gcc (optional)## Quick start
To connect to the server:
```shell
make
./cchat #connects to port 8080 locally
# or
./cchat # connects to locally
# or
./cchat # connects to on
```