aboutsummaryrefslogtreecommitdiff
path: root/TODO.md
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-06-13 03:35:56 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-06-13 03:35:56 -0300
commit15b40c7915fca14e537534ae9ba03f3add965943 (patch)
treede3ee3c61962b300bd7457cc81845e7891c4b896 /TODO.md
parent7d298e5a4119df0910daa070af1d23567a83e90c (diff)
downloadgame-15b40c7915fca14e537534ae9ba03f3add965943.tar.gz
game-15b40c7915fca14e537534ae9ba03f3add965943.zip
more work on `operate.cc`
Diffstat (limited to 'TODO.md')
-rw-r--r--TODO.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/TODO.md b/TODO.md
index 2d28ca4..51efb7f 100644
--- a/TODO.md
+++ b/TODO.md
@@ -28,5 +28,9 @@ The decompiled file has ~115K lines of C. If we take ~15K lines to be rubbish, t
- Replace unsafe libc functions like `strcpy`, `strncpy`, `strcat`, `sprintf` etc...
- Handle connections inline with `poll`/`epoll` (probably?).
- Remove exceptions.
+ - Would be desirable but I feel it could change too much of the original code flow while also
+ littering functions with early return checks like `if(err != NOERROR) { return err }` although
+ we could also have some macros to simplify this since we know we only use `RESULT` for errors.
+ But then would we be in a better place?
- Review signal usage for timing (SIGALRM, etc...).
- Support Windows.