bc71a7ec01
Add admin privilege to manage room aliases.
2023-08-09 15:50:03 +00:00
69d28f39d1
Begin working on room aliases.
...
These endpoints will help me build out some functionality that will be
needed when actually implementing rooms.
2023-08-09 15:19:45 +00:00
6ef965d1e0
Apply patch to make MatrixErrorCreate() take a custom message.
2023-08-05 19:26:03 +00:00
28d9e1cb3b
Add RoomCreateRequest schema.
2023-08-05 15:00:52 +00:00
78302d6320
Print admin registration token to configured log, not default stdout.
...
If Telodendria is started as a daemon and is logging to the syslog, we
want the token to show up in the syslog.
2023-08-05 14:12:02 +00:00
6ec87b8d76
Properly exclude Schema directories from showing up in CVS.
2023-08-05 14:03:08 +00:00
5f3220372e
Implement filter validation by using j2s.
2023-08-05 13:46:23 +00:00
aeaa8487c3
Add leaky Cytoplasm JSON -> Struct code generator.
...
It is basically complete, I just have to finish cleaning up some of the
memory leaks and remove the log messages.
2023-08-01 20:23:19 +00:00
d22baf440f
Update TODO.
2023-07-29 15:50:45 +00:00
a4330123b9
Add EventRedact() prototype.
2023-07-09 23:18:18 +00:00
5f34b846ee
Fix stable release version scheme (more details in an upcoming newsletter)
2023-07-01 20:18:59 +00:00
3054a80906
Fix Unicode handling.
2023-06-21 02:49:58 +00:00
539fde773f
Fix CanonicalJson and ArraySort.
2023-06-21 02:37:56 +00:00
1fa07d2d3c
Update TODO.
2023-06-18 03:25:03 +00:00
80da024e4e
Update change log.
2023-06-18 03:19:12 +00:00
861d4146c0
Add Filter API to validate filters and process events.
2023-06-18 02:53:06 +00:00
f9e1250d47
Begin working on filtering.
2023-06-17 19:09:06 +00:00
8bda70b1fb
Refactor Sha API to return raw bytes, added Sha1() function.
2023-06-17 17:36:11 +00:00
b9641e89d6
Update TODO
2023-06-13 14:06:05 +00:00
1381a31cbd
Update TODO.
2023-06-13 14:05:34 +00:00
c3287c1674
Update TODO.
2023-06-12 18:00:26 +00:00
2b3d0aaeaf
Prepare for v0.3.0 release.
...
Not exactly as complete as I initially imagined, but I want to get something
out because I've been spending too much time on the same issues.
2023-06-10 13:29:56 +00:00
b5b1a021d8
It appears that OpenSSL closes the socket descriptor for us.
...
When we close it again manually, we may actually be closing another thread's
file descriptor, which causes all kinds of problems.
2023-05-27 17:03:40 +00:00
34f33a1c1b
Fix SIGBUS on some platforms. Memory alignment matters!
...
This is a temporary fix; I'm not convinced it will work on all platforms,
so I will probably end up removing all of the memory boundary code
altogether.
2023-05-26 23:05:35 +00:00
d81600d944
Fix more memory leaks in json.
...
By doing a little reference tracking, we can make sure we don't miss any
JsonValues that may be floating around by the time we're done.
2023-05-26 22:11:07 +00:00
3b659ce09e
Adjust milestone requirements. I really want v0.3.0 out soon.
2023-05-26 19:21:25 +00:00
2693b89598
Add sane default memory hook to Cytoplasm, fix more leaks in json.
2023-05-23 22:43:37 +00:00
e22cf38eac
Fix leaks in json.
2023-05-23 20:34:27 +00:00
a4f369a0a9
Fix leak in HttpClient.
2023-05-21 13:55:49 +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
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
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
609890654e
Fix handling of STATIC and broken compilation on GNU systems.
2023-05-10 03:32:56 +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
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
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
e0c94d7bd2
Site now pulls built man pages.
2023-04-29 18:39:01 +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
24a03ba126
Added some more header documentation.
2023-04-27 18:00:26 +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
96ca9a725d
Finish up capabilities for now.
2023-04-25 22:11:34 +00:00
2ac08ad74d
Clean out finished TODO items.
2023-04-25 01:54:03 +00:00
05cf076ebc
Begin debugging OpenSSL.
2023-04-24 17:05:59 +00:00