https://github.com/alphadose/alpha-chat
A chatroom in C made using Berkley Sockets
https://github.com/alphadose/alpha-chat
c socket-programming
Last synced: 3 months ago
JSON representation
A chatroom in C made using Berkley Sockets
- Host: GitHub
- URL: https://github.com/alphadose/alpha-chat
- Owner: alphadose
- Created: 2017-05-14T18:27:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-09T13:57:19.000Z (over 5 years ago)
- Last Synced: 2025-03-17T10:54:24.308Z (3 months ago)
- Topics: c, socket-programming
- Language: C
- Homepage:
- Size: 14.6 KB
- Stars: 39
- Watchers: 1
- Forks: 47
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AlphaChat
## Setup
1. Clone this repository and cd into it
```bash
$ git clone https://github.com/alphadose/Alpha-Chat$ cd Alpha-Chat && make help
Alpha-Chat: A chat ecosystem built purely in C* server: Build the server
* client: Build the client
* all: Build the server and client
* clean: Remove project binaries
```2. Build project binaries
```bash
$ make all
* Building Server
* Building Client
* Done
```## Hosting the Chat-Server
```bash
$ ./server
Starting server.
Waiting for incoming connections...
```## Connecting to the Chat-Server via Client
```bash
$ ./client
```## Cleaning binaries
```bash
$ make clean
* Done
```