Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliojimenez/beej
Beej's Guide to Network Programming
https://github.com/juliojimenez/beej
beej beej-guide beejs c socket socket-programming sockets
Last synced: about 2 months ago
JSON representation
Beej's Guide to Network Programming
- Host: GitHub
- URL: https://github.com/juliojimenez/beej
- Owner: juliojimenez
- License: mit
- Created: 2023-11-15T02:41:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-24T06:38:57.000Z (6 months ago)
- Last Synced: 2024-07-24T08:00:36.949Z (6 months ago)
- Topics: beej, beej-guide, beejs, c, socket, socket-programming, sockets
- Language: C
- Homepage: https://beej.us/guide/
- Size: 119 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Beej's Guides
This repository has examples from the [Beej guides](https://beej.us/guide/). Well, the ones related to C, rather.
## Beej's Guide to C - Tutorial
Found under [c-tutorial](./c-tutorial/) in the repository root, and are working examples from the book [Beej's Guide to C — Tutorial](https://beej.us/guide/bgc/).
### Build
To compile all examples:
```bash
git clone https://github.com/juliojimenez/beej
cd beej
cd c-tutorial
make
```Clean up:
```bash
make clean
```## Beej's Guide to Network Programming
Found under [network-guide](./network-guide/) in the repository root, and are working examples from the book [Beej's Guide to Network Programming](https://beej.us/guide/bgnet/).
### Build
To compile all examples:
```bash
git clone https://github.com/juliojimenez/beej
cd beej
cd network-guide
make
```Clean up:
```bash
make clean
```