summaryrefslogtreecommitdiff
path: root/toxcore/TCP_server.h
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-06-28 22:14:54 -0400
committerirungentoo <irungentoo@gmail.com>2015-06-28 22:14:54 -0400
commit50e0802a62520fe0aceff9f4e6bb6d54f1bfa0b0 (patch)
tree8042086f5b9183f9a447da438fd9917c80f92077 /toxcore/TCP_server.h
parentb8362a6726c49ae53fa08846739f354b7b75ee13 (diff)
Removed useless parameter from new_TCP_server()
Diffstat (limited to 'toxcore/TCP_server.h')
-rw-r--r--toxcore/TCP_server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxcore/TCP_server.h b/toxcore/TCP_server.h
index ba3e7308..3f6b18ae 100644
--- a/toxcore/TCP_server.h
+++ b/toxcore/TCP_server.h
@@ -143,8 +143,8 @@ typedef struct {
143 143
144/* Create new TCP server instance. 144/* Create new TCP server instance.
145 */ 145 */
146TCP_Server *new_TCP_server(uint8_t ipv6_enabled, uint16_t num_sockets, const uint16_t *ports, const uint8_t *public_key, 146TCP_Server *new_TCP_server(uint8_t ipv6_enabled, uint16_t num_sockets, const uint16_t *ports, const uint8_t *secret_key,
147 const uint8_t *secret_key, Onion *onion); 147 Onion *onion);
148 148
149/* Run the TCP_server 149/* Run the TCP_server
150 */ 150 */