comparison dbutil.h @ 948:f92eb625c48d

- Don't use multichar constants since recent gcc complains - Add release script - Simplify print_version
author Matt Johnston <matt@ucc.asn.au>
date Sun, 27 Jul 2014 22:55:29 +0800
parents 5daedffd0769
children 6fb4c010c448
comparison
equal deleted inserted replaced
947:e4453b367db7 948:f92eb625c48d
60 void printmpint(const char *label, mp_int *mp); 60 void printmpint(const char *label, mp_int *mp);
61 extern int debug_trace; 61 extern int debug_trace;
62 #endif 62 #endif
63 63
64 enum dropbear_prio { 64 enum dropbear_prio {
65 DROPBEAR_PRIO_DEFAULT = 'dffd', 65 DROPBEAR_PRIO_DEFAULT = 10,
66 DROPBEAR_PRIO_LOWDELAY = 'lddl', 66 DROPBEAR_PRIO_LOWDELAY = 11,
67 DROPBEAR_PRIO_BULK = 'bllb', 67 DROPBEAR_PRIO_BULK = 12,
68 }; 68 };
69 69
70 char * stripcontrol(const char * text); 70 char * stripcontrol(const char * text);
71 void get_socket_address(int fd, char **local_host, char **local_port, 71 void get_socket_address(int fd, char **local_host, char **local_port,
72 char **remote_host, char **remote_port, int host_lookup); 72 char **remote_host, char **remote_port, int host_lookup);