Mercurial > public > hey
annotate README.md @ 16:38d2aa61bcbc
Change info files
author | Dennis <dennis@denniscm.com> |
---|---|
date | Fri, 11 Aug 2023 17:40:32 +0000 |
parents | 07f578438b0f |
children | 4d10742d7dff |
rev | line source |
---|---|
14 | 1 |
16 | 2 # hey |
14 | 3 |
16 | 4 Hey! is a simple TCP streaming app developed in C using POSIX APIs. Both client and server are containerized using Docker. I've made a video about this project -> [Youtube](https://youtu.be/r3CQ0euv6TQ). |
14 | 5 |
16 | 6 - Docs: <https://denniscm.com/proj/hey.html> |
7 - Main repo on SourceHut: <https://git.sr.ht/~denniscmartin/hey> | |
8 - Mirrors: | |
9 - Github: <https://github.com/denniscmartin/hey> | |
10 - Gitlab: <https://gitlab.com/denniscmartin/hey> | |
14 | 11 |
1
58952f1fb8da
minimal socket example
Dennis <dennisconcepcionmartin@gmail.com>
parents:
0
diff
changeset
|
12 |
58952f1fb8da
minimal socket example
Dennis <dennisconcepcionmartin@gmail.com>
parents:
0
diff
changeset
|
13 ## References |
58952f1fb8da
minimal socket example
Dennis <dennisconcepcionmartin@gmail.com>
parents:
0
diff
changeset
|
14 |
14 | 15 This is the material I used to develop Hey!. The Beej's Guide to Network Programming is a nice introduction. Super easy to read: |
16 | 16 |
17 - [What is a web server?](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/Web_mechanics/What_is_a_web_server) | |
18 - [HTTP protocol](https://www.rfc-editor.org/rfc/pdfrfc/rfc7231.txt.pdf) | |
19 - [Socket programming Oracle](https://docs.oracle.com/cd/E19253-01/817-4415/6mjum5som/index.html) | |
20 - [Beej's guide to network programming](https://beej.us/guide/bgnet/html/split/index.html) | |
21 - [How does port numbers really work?](https://stackoverflow.com/questions/13190176/how-does-port-number-really-work-in-tcp/29045432#29045432) | |
22 |