1 | #ifndef HEADER_CURL_SERVER_UTIL_H |
2 | #define |
3 | /*************************************************************************** |
4 | * _ _ ____ _ |
5 | * Project ___| | | | _ \| | |
6 | * / __| | | | |_) | | |
7 | * | (__| |_| | _ <| |___ |
8 | * \___|\___/|_| \_\_____| |
9 | * |
10 | * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. |
11 | * |
12 | * This software is licensed as described in the file COPYING, which |
13 | * you should have received as part of this distribution. The terms |
14 | * are also available at https://curl.haxx.se/docs/copyright.html. |
15 | * |
16 | * You may opt to use, copy, modify, merge, publish, distribute and/or sell |
17 | * copies of the Software, and permit persons to whom the Software is |
18 | * furnished to do so, under the terms of the COPYING file. |
19 | * |
20 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
21 | * KIND, either express or implied. |
22 | * |
23 | ***************************************************************************/ |
24 | #include "server_setup.h" |
25 | |
26 | char *data_to_hex(char *data, size_t len); |
27 | void logmsg(const char *msg, ...); |
28 | long timediff(struct timeval newer, struct timeval older); |
29 | |
30 | #define TEST_DATA_PATH "%s/data/test%ld" |
31 | |
32 | #define SERVERLOGS_LOCK "log/serverlogs.lock" |
33 | |
34 | /* global variable, where to find the 'data' dir */ |
35 | extern const char *path; |
36 | |
37 | /* global variable, log file name */ |
38 | extern const char *serverlogfile; |
39 | |
40 | #ifdef WIN32 |
41 | #include <process.h> |
42 | #include <fcntl.h> |
43 | |
44 | #define sleep(sec) Sleep ((sec)*1000) |
45 | |
46 | #undef perror |
47 | #define perror(m) win32_perror(m) |
48 | void win32_perror(const char *msg); |
49 | #endif /* WIN32 */ |
50 | |
51 | #ifdef USE_WINSOCK |
52 | void win32_init(void); |
53 | void win32_cleanup(void); |
54 | #endif /* USE_WINSOCK */ |
55 | |
56 | /* returns the path name to the test case file */ |
57 | char *test2file(long testno); |
58 | |
59 | int wait_ms(int timeout_ms); |
60 | |
61 | int write_pidfile(const char *filename); |
62 | |
63 | void set_advisor_read_lock(const char *filename); |
64 | |
65 | void clear_advisor_read_lock(const char *filename); |
66 | |
67 | int strncasecompare(const char *first, const char *second, size_t max); |
68 | |
69 | #endif /* HEADER_CURL_SERVER_UTIL_H */ |
70 | |