Get my foot in the door converting ssb.js to C.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4050 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2022-11-17 01:36:24 +00:00
parent 902287292d
commit be6f24b3ee
4 changed files with 90 additions and 28 deletions

View File

@ -3,6 +3,7 @@
#include "mem.h"
#include "ssb.connections.h"
#include "ssb.db.h"
#include "ssb.rpc.h"
#include "trace.h"
#include "util.js.h"
@ -1779,6 +1780,7 @@ tf_ssb_t* tf_ssb_create(uv_loop_t* loop, JSContext* context, sqlite3* db)
ssb->connections_tracker = tf_ssb_connections_create(ssb);
tf_ssb_rpc_register(ssb);
return ssb;
}