diff options
| author | 2023-07-13 17:58:18 +0200 | |
|---|---|---|
| committer | 2023-07-13 17:58:18 +0200 | |
| commit | 137f7756059bfcbf74ff551e72f2210e4e77789f (patch) | |
| tree | 5d4e3e7d24302757bc3a166359326aa933717335 /snac.h | |
| parent | Version 2.37 RELEASED. (diff) | |
| download | snac2-137f7756059bfcbf74ff551e72f2210e4e77789f.tar.gz snac2-137f7756059bfcbf74ff551e72f2210e4e77789f.tar.xz snac2-137f7756059bfcbf74ff551e72f2210e4e77789f.zip | |
Minor prototype tweak.
Diffstat (limited to 'snac.h')
| -rw-r--r-- | snac.h | 5 |
1 files changed, 3 insertions, 2 deletions
| @@ -234,8 +234,9 @@ int send_to_inbox_raw(const char *keyid, const char *seckey, | |||
| 234 | xs_val **payload, int *p_size, int timeout); | 234 | xs_val **payload, int *p_size, int timeout); |
| 235 | int send_to_inbox(snac *snac, const xs_str *inbox, const xs_dict *msg, | 235 | int send_to_inbox(snac *snac, const xs_str *inbox, const xs_dict *msg, |
| 236 | xs_val **payload, int *p_size, int timeout); | 236 | xs_val **payload, int *p_size, int timeout); |
| 237 | d_char *get_actor_inbox(snac *snac, const char *actor); | 237 | xs_str *get_actor_inbox(snac *snac, const char *actor); |
| 238 | int send_to_actor(snac *snac, char *actor, char *msg, d_char **payload, int *p_size, int timeout); | 238 | int send_to_actor(snac *snac, const char *actor, const char *msg, |
| 239 | xs_val **payload, int *p_size, int timeout); | ||
| 239 | int is_msg_public(snac *snac, const xs_dict *msg); | 240 | int is_msg_public(snac *snac, const xs_dict *msg); |
| 240 | int is_msg_for_me(snac *snac, const xs_dict *msg); | 241 | int is_msg_for_me(snac *snac, const xs_dict *msg); |
| 241 | 242 | ||