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

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

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
```