Imported Upstream version 1.4.16+git20130912

This commit is contained in:
Jan Wagner 2013-11-27 00:00:46 +01:00
parent ea90af2ba1
commit 01ca3b324f
14 changed files with 514 additions and 442 deletions

View file

@ -1,4 +1,22 @@
/* Header file for utils_tcp */
int np_expect_match(char* status, char** server_expect, int server_expect_count,
int all, int exact_match, int verbose);
#define NP_MATCH_ALL 0x1
#define NP_MATCH_EXACT 0x2
#define NP_MATCH_VERBOSE 0x4
/*
* The NP_MATCH_RETRY state indicates that matching might succeed if
* np_expect_match() is called with a longer input string. This allows the
* caller to decide whether it makes sense to wait for additional data from the
* server.
*/
enum np_match_result {
NP_MATCH_FAILURE,
NP_MATCH_SUCCESS,
NP_MATCH_RETRY
};
enum np_match_result np_expect_match(char *status,
char **server_expect,
int server_expect_count,
int flags);