.. |
bcrypt.js.c
|
Merge in mingw changes.
|
2022-05-16 22:30:14 +00:00 |
bcrypt.js.h
|
Move all JS interface things into .js.c files with _register() functions.
|
2021-10-24 15:46:30 +00:00 |
database.js.c
|
Use a custom allocator for everything.
|
2022-06-04 17:04:51 +00:00 |
database.js.h
|
Move all JS interface things into .js.c files with _register() functions.
|
2021-10-24 15:46:30 +00:00 |
file.js.c
|
Move some things to C that probably should have never been in JS, especially sha1. Minor refactors, cleanup, and deletes along the way.
|
2023-01-28 21:59:36 +00:00 |
file.js.h
|
Move all JS interface things into .js.c files with _register() functions.
|
2021-10-24 15:46:30 +00:00 |
main.c
|
Fix exporting.
|
2023-02-15 02:43:08 +00:00 |
mem.c
|
Oh yeah, OpenSSL on windows, too, these days.
|
2023-01-17 22:56:36 +00:00 |
mem.h
|
Track our own quickjs memory usage so that we can avoid expensive calls to JS_ComputeMemoryUsage.
|
2022-06-20 17:57:07 +00:00 |
packetstream.c
|
Use a custom allocator for everything.
|
2022-06-04 17:04:51 +00:00 |
packetstream.h
|
Child processes send trace information back to the parent. Also fixed weird double-activation of children.
|
2022-01-02 18:17:58 +00:00 |
serialize.c
|
Add a helper for getting array length: tf_util_get_length.
|
2022-07-09 15:13:35 +00:00 |
serialize.h
|
Merge branches/quickjs to trunk. This is the way.
|
2021-01-02 18:10:00 +00:00 |
socket.js.c
|
Move some things to C that probably should have never been in JS, especially sha1. Minor refactors, cleanup, and deletes along the way.
|
2023-01-28 21:59:36 +00:00 |
socket.js.h
|
Move all JS interface things into .js.c files with _register() functions.
|
2021-10-24 15:46:30 +00:00 |
ssb.c
|
Vague attempt at some more cleanup, and stick pthread_self() in the traces.
|
2023-02-15 02:34:46 +00:00 |
ssb.connections.c
|
Expose stored connections to script, and only store connections that were explicitly requested.
|
2023-01-18 00:37:45 +00:00 |
ssb.connections.h
|
Merge branches/quickjs to trunk. This is the way.
|
2021-01-02 18:10:00 +00:00 |
ssb.db.c
|
Remove dependency on base64c. Use libsodium's. Also consolidate the calls, as the usage is quite special.
|
2023-02-14 03:15:24 +00:00 |
ssb.db.h
|
Expose stored connections to script, and only store connections that were explicitly requested.
|
2023-01-18 00:37:45 +00:00 |
ssb.export.c
|
Refactored import and export. No user on disk.
|
2023-02-02 02:09:05 +00:00 |
ssb.export.h
|
Trying to get organized. Move things db, import, and export out of ssb.c.
|
2021-08-22 19:34:28 +00:00 |
ssb.h
|
Allow running read-only sqlite queries from libuv worker threads. Needs so much more testing.
|
2023-02-08 01:29:44 +00:00 |
ssb.import.c
|
Finish import.
|
2023-02-03 14:09:53 +00:00 |
ssb.import.h
|
Trying to get organized. Move things db, import, and export out of ssb.c.
|
2021-08-22 19:34:28 +00:00 |
ssb.js.c
|
More memory leaks.
|
2023-02-15 02:59:46 +00:00 |
ssb.js.h
|
Move all JS interface things into .js.c files with _register() functions.
|
2021-10-24 15:46:30 +00:00 |
ssb.rpc.c
|
Disable Nagle's algorithm before we start the TLS handshake. Just speculation that it will help with some responsiveness.
|
2023-02-06 02:29:00 +00:00 |
ssb.rpc.h
|
Get my foot in the door converting ssb.js to C.
|
2022-11-17 01:36:24 +00:00 |
ssb.tests.c
|
Allow running read-only sqlite queries from libuv worker threads. Needs so much more testing.
|
2023-02-08 01:29:44 +00:00 |
ssb.tests.h
|
Start of a benchmark.
|
2022-12-12 03:11:32 +00:00 |
task.c
|
Allow running read-only sqlite queries from libuv worker threads. Needs so much more testing.
|
2023-02-08 01:29:44 +00:00 |
task.h
|
No more secrets in ~/.config, and speed up some tests.
|
2022-10-14 12:27:34 +00:00 |
taskstub.js.c
|
No more secrets in ~/.config, and speed up some tests.
|
2022-10-14 12:27:34 +00:00 |
taskstub.js.h
|
Send prints to the browser console. Obvious in retrospect.
|
2022-02-13 22:39:22 +00:00 |
tests.c
|
Remove dependency on base64c. Use libsodium's. Also consolidate the calls, as the usage is quite special.
|
2023-02-14 03:15:24 +00:00 |
tests.h
|
Add some test infrastructure.
|
2021-09-06 18:23:22 +00:00 |
tls.c
|
Add prebuild OpenSSL, and remove SCHANNEL code and whatever it was on MacOS. Build mingw for 64-bit.
|
2022-12-29 23:55:49 +00:00 |
tls.h
|
Merge branches/quickjs to trunk. This is the way.
|
2021-01-02 18:10:00 +00:00 |
tlscontext.js.c
|
Use a custom allocator for everything.
|
2022-06-04 17:04:51 +00:00 |
tlscontext.js.h
|
Move all JS interface things into .js.c files with _register() functions.
|
2021-10-24 15:46:30 +00:00 |
trace.c
|
Vague attempt at some more cleanup, and stick pthread_self() in the traces.
|
2023-02-15 02:34:46 +00:00 |
trace.h
|
Add process name to trace.
|
2023-02-01 23:20:16 +00:00 |
util.js.c
|
Remove dependency on base64c. Use libsodium's. Also consolidate the calls, as the usage is quite special.
|
2023-02-14 03:15:24 +00:00 |
util.js.h
|
Remove dependency on base64c. Use libsodium's. Also consolidate the calls, as the usage is quite special.
|
2023-02-14 03:15:24 +00:00 |