summaryrefslogtreecommitdiff
path: root/auto_tests/TCP_test.c
AgeCommit message (Collapse)Author
2016-08-31Add braces to all if statements.iphydf
2016-08-19Fix operation sequencing in TCP_test.iphydf
The expression was fun(foo = bar, foo). The evaluation order is unspecified, and often this will do the wrong thing. We should forbid side effects in argument lists and conditionals.
2016-08-18Fix some compiler warnings.iphydf
2016-08-18Make tox_callback_friend_name stateless.iphydf
See #27 and #40 for details.
2016-01-27 fix: compare sensitive data with sodium_memcmpRoman Proskuryakov
fix: make increment_nonce & increment_nonce_number independent of user-controlled input fix: make crypto_core more stable agains null ptr dereference
2015-07-06Test oob responding too.irungentoo
2015-07-05Added a TCP test for oob packets.irungentoo
2015-07-04Test fix.irungentoo
2015-07-02Added a couple of checks to test.irungentoo
2015-07-01Basic tcp connections test done.irungentoo
2015-06-29TCP connections test start.irungentoo
2015-06-28Removed useless parameter from new_TCP_server()irungentoo
2015-04-08Small change to TCP test.irungentoo
2015-02-07Properly free everything at the end of each test.irungentoo
2014-08-14Added basic socks5 proxy support to TCP client.irungentoo
2014-08-09Remove DEFTESTCASE and DEFTESTCASE_SLOW redefinitionspyruvate
2014-07-02Fixed const related warnings.irungentoo
2014-05-15Exposed and tested disconnect notification TCP packets.irungentoo
2014-05-14Added OOB packets to the TCP client and server.irungentoo
2014-05-14Really fixed TCP_test.irungentoo
2014-05-13Fixed TCP_test.irungentoo
TCP_test now tests set_tcp_connection_number.
2014-04-21Crypto related cleanups.irungentoo
Moved Bunch of functions from net_crypto to crypto_core. decrypt_data_fast and decrypt_data_symmetric were the same thing therefore, removed decrypt_data_fast. Replaced all the crypto_secretbox_* defines with the equivalent crypto_box_* one. New define: crypto_box_KEYBYTES that is equal to crypto_box_BEFORENMBYTES.
2014-04-14Added function to TCP client and some tests.irungentoo
2014-04-12Pings and onion packets implemented in TCP_Client.cirungentoo
Astyled one test and added a couple lines to another.
2014-04-06Added TCP_client.irungentoo
Some work done on the TCP part.
2014-03-31tox_group_get_names now returns a list of name lengths along with the list ↵irungentoo
of names. TCP test now also tests pings.
2014-03-29TCP server now has onion functionality.irungentoo
All the IP/Port related structs now have __attribute__ ((__packed__))
2014-03-28TCP server almost ready.irungentoo
2014-03-26TCP server testing in progress.irungentoo
2014-03-14A bit of work done on the TCP relay server.irungentoo