diff options
author | default <nobody@localhost> | 2023-12-10 17:50:03 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-12-10 17:50:03 +0100 |
commit | 09b926c16847d88e97bfba1ce239206a7bfd19bb (patch) | |
tree | 75f8853aacbefeef76b0cd96475fc41fbd971c81 /snac.h | |
parent | 0e6c5f9463d7800b40b777af50c6c09ee3d97af2 (diff) |
More functions do not require the user argument.
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -212,7 +212,7 @@ xs_dict *http_signed_request(snac *snac, const char *method, const char *url, const char *body, int b_size, int *status, xs_str **payload, int *p_size, int timeout); -int check_signature(snac *snac, xs_dict *req, xs_str **err); +int check_signature(xs_dict *req, xs_str **err); void httpd(void); @@ -249,7 +249,7 @@ int send_to_inbox_raw(const char *keyid, const char *seckey, xs_val **payload, int *p_size, int timeout); int send_to_inbox(snac *snac, const xs_str *inbox, const xs_dict *msg, xs_val **payload, int *p_size, int timeout); -xs_str *get_actor_inbox(snac *snac, const char *actor); +xs_str *get_actor_inbox(const char *actor); int send_to_actor(snac *snac, const char *actor, const xs_dict *msg, xs_val **payload, int *p_size, int timeout); int is_msg_public(const xs_dict *msg); |