diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-03-30 23:55:05 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-03-30 23:55:05 +0800 |
commit | 9c7485331a581d1ff32f9caf005e7b13fa1c051e (patch) | |
tree | ae4945330518e38d3dad9d51a5b542fb85cece7b /algo.h | |
parent | 99d9cf500b30c77107bf8477dd55831626f9beaf (diff) |
Get rid of client/server specific buf_match_algo, use single
function with a couple of if statements instead
--HG--
branch : kexguess
Diffstat (limited to 'algo.h')
-rw-r--r-- | algo.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -93,9 +93,7 @@ enum kexguess2_used { #define KEXGUESS2_ALGO_ID 99 -algo_type * svr_buf_match_algo(buffer* buf, algo_type localalgos[], - enum kexguess2_used *kexguess2, int *goodguess); -algo_type * cli_buf_match_algo(buffer* buf, algo_type localalgos[], +algo_type * buf_match_algo(buffer* buf, algo_type localalgos[], enum kexguess2_used *kexguess2, int *goodguess); #ifdef ENABLE_USER_ALGO_LIST |