441599b088
Don't leak so much memory.
2023-05-23 17:53:19 +00:00
42191ec03f
Properly initialize and destroy logging mutex in LogConfigCreate() and
...
LogConfigFree(), respectively.
2023-05-23 17:42:08 +00:00
a4f369a0a9
Fix leak in HttpClient.
2023-05-21 13:55:49 +00:00
4cc876eb10
Fix warning about integer size mismatch.
2023-05-21 13:35:56 +00:00
51b9e2eaed
Clean Cytoplasm when td clean is run.
2023-05-21 13:34:05 +00:00
e71ffec164
Add some basic heap memory bounds protection.
2023-05-21 13:24:00 +00:00
d38ec7cb38
Document hdoc
2023-05-21 00:21:39 +00:00
896f561213
Apparently this expansion syntax only works on ksh.
2023-05-20 21:38:03 +00:00
f2f972bb9d
Fix memory leaks in hdoc.
2023-05-15 22:38:52 +00:00
ff0a9f33b8
Update TODO.
2023-05-15 01:43:46 +00:00
4043285413
Telodendria and all tools now use the Cytoplasm runtime stub.
...
This reduces the amount of manual work programs have to do, and gives us
some free features, like automatic leak reports in all tools.
2023-05-14 22:15:48 +00:00
8021cff122
Make Telodendria use Cytoplasm.
...
This commit removes all the duplicate code and makes Telodendria use the
new Cytoplasm library.
2023-05-14 19:35:23 +00:00
5c8a42117c
Import new Cytoplasm library based off of code from Telodendria.
...
Telodendria doesn't use this library yet, but it will soon.
2023-05-13 17:30:09 +00:00
a1e3bd7d8e
Clean up TODO
2023-05-11 12:00:44 +00:00
4d9c907b58
Attach device ID to authenticated user.
...
Now RouteWhoAmI can use UserAuthenticate just like the other endpoints.
2023-05-11 03:03:40 +00:00
c1c57fd4cf
Make RandState thread-specific.
2023-05-11 02:17:04 +00:00
609890654e
Fix handling of STATIC and broken compilation on GNU systems.
2023-05-10 03:32:56 +00:00
31866a14b4
Remove some extraneous whitespace from Util.c, not sure how that got there.
2023-05-07 12:08:26 +00:00
e6dd20e2b2
Update changelog.
2023-05-07 03:21:52 +00:00
ebc3da9b23
Fix some compile warnings.
2023-05-06 23:06:13 +00:00
a2eec3946c
I missed an instance of strcmp()
2023-05-06 23:02:46 +00:00
0b11b97022
Add StrEquals(), as equality checking is the most common use for strcmp().
...
This allows us to get rid of the hideous MATRIX_PATH_PART_EQUALS macro,
and prevents inconsistent usage of strcmp() (for example, !strcmp() vs
strcmp() == 0).
StrEquals() also has sensible behavior for dealing with NULL strings (it
doesn't just segfault like strcmp()).
2023-05-06 22:34:36 +00:00
0e69a12784
Register route.
2023-05-06 22:06:54 +00:00
2a87583d2f
Add /_matrix/client/v3/account/deactivate
2023-05-06 22:06:23 +00:00
95ceba0645
Add length calculations to JsonEncode() so we can set Content-Length.
2023-05-06 19:23:13 +00:00
bbea55be6c
Document http-debug-server, fixed typo in HttpServer docs.
2023-05-06 18:21:21 +00:00
3d9a7664b1
Add support for building static and shared libraries.
2023-05-06 17:04:35 +00:00
cb7ee91908
Update telodendria(8)
2023-04-30 02:20:59 +00:00
f1f66c6331
Fix the Makefile by sourcing tools/env.sh if TELODENDRIA_ENV is unset.
2023-04-30 01:47:27 +00:00
abbbfe4d7f
Replace all usages of curl in tp, document tp and tt.
2023-04-29 23:28:33 +00:00
872fa1aa66
More documentation. It never ends!
2023-04-29 19:52:51 +00:00
a08018870e
Remove obsolete documentation.
2023-04-29 18:47:20 +00:00
e0c94d7bd2
Site now pulls built man pages.
2023-04-29 18:39:01 +00:00
f819093b7d
Don't spew unknown expression warnings if @suppress-warnings is set.
2023-04-29 15:28:42 +00:00
0b1b4a8b29
Cope with preprocessor macro usage at the top level of the header.
...
This workaround allows us to parse the Routes.h properly, although it
notably lacks support for multi-word unknown expressions.
2023-04-29 15:24:46 +00:00
a3cc06ff2a
Fix line numbers when parsing multi-line macros.
2023-04-29 15:16:58 +00:00
2d8d5244c4
Document some new headers.
2023-04-29 15:04:16 +00:00
b70c3f0bed
Finish converting all existing documentation. Next up is writing new docs.
2023-04-29 02:54:49 +00:00
71fa96d10d
Format source code.
2023-04-27 20:05:08 +00:00
a00ded6d06
Add support for parsing global variables, not just function declarations.
2023-04-27 20:04:15 +00:00
9292f1d9da
Add docs recipe for generating documentation from the headers.
...
Note that since all the headers are not documented yet, this will fail
because an undocumented function is a fatal error in hdoc.
2023-04-27 18:39:05 +00:00
9880aac674
Split format recipe into format and license.
...
Format formats only C source code. License applies the license file to
C source code *and* header files.
2023-04-27 18:03:32 +00:00
24a03ba126
Added some more header documentation.
2023-04-27 18:00:26 +00:00
95cb14213f
Add support for return types that are const, structs, or enums.
2023-04-27 16:02:15 +00:00
6e976a2b8d
Fix line counts on syntax errors.
2023-04-27 15:54:21 +00:00
72467f6503
Begin moving documentation to headers.
2023-04-27 03:08:39 +00:00
3b06ab120b
Add some flags to hdoc to make it more useful.
2023-04-27 02:30:44 +00:00
2447bb63cc
Add hdoc, a simple tool for generating documentation from a C header.
...
This is a very early prototype. It works, but it is probably not efficient
or reliable. However, the documentation format it parses is stable, so I
will begin moving the documentation into the headers.
2023-04-27 01:34:49 +00:00
fdcf7ec065
Update changelog, add LD_EXTRA variable in td.
2023-04-26 01:43:32 +00:00
459b2e856f
Format source code.
2023-04-25 22:13:28 +00:00