diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-09-10 19:01:04 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-09-10 19:01:04 +0000 |
commit | e134a4020885701b583b8af2e9d0414b090512f6 (patch) | |
tree | b93c895fb130564d17bce96d13c73b63edb7918a /tests/libtest/test.h | |
parent | 690888cfc107c16980785195ca9e05acba51593a (diff) |
Added select_test() function to allow selecting on no sockets on
Winsock.
Diffstat (limited to 'tests/libtest/test.h')
-rw-r--r-- | tests/libtest/test.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/libtest/test.h b/tests/libtest/test.h index a442ba4bd..83ec94b65 100644 --- a/tests/libtest/test.h +++ b/tests/libtest/test.h @@ -32,5 +32,9 @@ #endif extern char *arg2; /* set by first.c to the argv[2] or NULL */ + +int select_test (int num_fds, fd_set *rd, fd_set *wr, fd_set *exc, + struct timeval *tv); + int test(char *URL); /* the actual test function provided by each individual libXXX.c file */ |