https://github.com/belanasaikiran/networkprogramming
https://github.com/belanasaikiran/networkprogramming
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/belanasaikiran/networkprogramming
- Owner: belanasaikiran
- Created: 2025-02-09T13:31:57.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-09T23:29:15.000Z (4 months ago)
- Last Synced: 2025-02-10T00:23:15.315Z (4 months ago)
- Language: C++
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NetworkProgramming
### ZeroMQ
In arch, install the following packages:
```bash
sudo pacman -S zeromq cppzmq
yay -S zmqpp
```To Compile the code, use the following command:
```bash
g++ -o server server.cpp -lzmq -lzmqpp
g++ -o client client.cpp -lzmq -lzmqpp
```