summaryrefslogtreecommitdiff
path: root/toxcore/onion.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2020-03-14 02:22:39 +0000
committeriphydf <iphydf@users.noreply.github.com>2020-03-14 13:28:42 +0000
commitcb22b3df5f0b7509a37e091360ecbb4d8a9f2873 (patch)
treedd12e81f5f61e6ec268bd03d2e6951a7abee9506 /toxcore/onion.h
parent11ad5471b91dc1b36552ba4e5a3ea434c8a30f5f (diff)
Fix up comments a bit to start being more uniform.
Tokstyle (check-cimple) will start enforcing comment formats at some point. It will not support arbitrary stuff in comments, and will parse them. The result can then be semantically analysed.
Diffstat (limited to 'toxcore/onion.h')
-rw-r--r--toxcore/onion.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/toxcore/onion.h b/toxcore/onion.h
index f125f3c3..da145081 100644
--- a/toxcore/onion.h
+++ b/toxcore/onion.h
@@ -140,8 +140,6 @@ int send_onion_response(Networking_Core *net, IP_Port dest, const uint8_t *data,
140int onion_send_1(const Onion *onion, const uint8_t *plain, uint16_t len, IP_Port source, const uint8_t *nonce); 140int onion_send_1(const Onion *onion, const uint8_t *plain, uint16_t len, IP_Port source, const uint8_t *nonce);
141 141
142/* Set the callback to be called when the dest ip_port doesn't have TOX_AF_INET6 or TOX_AF_INET as the family. 142/* Set the callback to be called when the dest ip_port doesn't have TOX_AF_INET6 or TOX_AF_INET as the family.
143 *
144 * Format: function(void *object, IP_Port dest, uint8_t *data, uint16_t length)
145 */ 143 */
146void set_callback_handle_recv_1(Onion *onion, onion_recv_1_cb *function, void *object); 144void set_callback_handle_recv_1(Onion *onion, onion_recv_1_cb *function, void *object);
147 145