aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Let user quit when reconnectingRaymaekers Luca2024-10-251-23/+32
| | | | | | | Includes: - renamed exit to quit - do not use else if for polling - only display the error message once
* Wrap messages when exceeding available widthRaymaekers Luca2024-10-251-38/+198
| | | | | | | Includes: - Changed fillstr to use wide characters - made the prompt box opaque - More documentation on the code
* fixed bug not allow sending empty messageRaymaekers Luca2024-10-252-0/+3
|
* Bind Ctrl+W to erase word behind cursorRaymaekers Luca2024-10-252-0/+24
| | | | Added keybinds descriptions in the readme.
* Initial draft for v2Raymaekers Luca2024-10-249-0/+4222
| | | | | | This is a rewrite of v1 using arena's as memory allocators. The other great difference is using wide strings by default (wchar_t) because that will be needed in the future to print pretty UIs.
* Archive code into v1/ directoryRaymaekers Luca2024-10-2412-102/+229
| | | | | The code was written too fast and I deemed that it would be better to make a new draft.
* removed malloc & reallocRaymaekers Luca2024-10-212-41/+57
|
* add to readmeRaymaekers Luca2024-10-211-0/+1
|
* Moved common.c to common.hRaymaekers Luca2024-10-214-143/+134
| | | | | - fixed bug(server.c): `on` not being 32 bytes - cleanup
* Add compile_flagsRaymaekers Luca2024-10-212-4/+9
|
* Added minimal send implementationRaymaekers Luca2024-10-215-63/+41
| | | | | | Renamed minirecv.c to recv.c Added build commands to build.sh Added the use of common code
* Added common code for messagesRaymaekers Luca2024-10-214-31/+92
| | | | | | - add: send_message, receive_message functions - change: use u8, u16, u32, where possible - fix: use PORT in server.c
* Added README.mdRaymaekers Luca2024-10-213-29/+37
|
* Added mvp implementations of the server and client for testingRaymaekers Luca2024-10-208-33/+175
|
* add serialization to file codeRaymaekers Luca2024-10-195-35/+113
|
* add shared code in common.cRaymaekers Luca2024-10-193-17/+24
|
* Initial commitRaymaekers Luca2024-10-176-0/+4003