1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-29 06:56:44 +02:00

connect to limited number of nodes on init instead of all of them

This commit is contained in:
Jfreegman
2014-02-24 20:08:51 -05:00
parent e7920d1da7
commit 2d9f4facf7
2 changed files with 8 additions and 5 deletions

View File

@ -2,8 +2,8 @@
* Toxic -- Tox Curses Client
*/
// #define MIN(x, y) (((x) < (y)) ? (x) : (y))
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
/* convert a hex string to binary */
unsigned char *hex_string_to_bin(char hex_string[]);