2012-04-10 11:32:06 -04:00
|
|
|
#ifndef HEADER_CURL_SERVER_UTIL_H
|
|
|
|
#define HEADER_CURL_SERVER_UTIL_H
|
2005-04-30 19:30:55 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-10-23 06:05:49 -04:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2005-04-30 19:30:55 -04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2005-04-30 19:30:55 -04:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2012-04-10 11:32:06 -04:00
|
|
|
#include "server_setup.h"
|
2005-04-30 19:30:55 -04:00
|
|
|
|
2011-12-17 17:47:22 -05:00
|
|
|
char *data_to_hex(char *data, size_t len);
|
2005-04-30 19:30:55 -04:00
|
|
|
void logmsg(const char *msg, ...);
|
2017-10-23 06:05:49 -04:00
|
|
|
long timediff(struct timeval newer, struct timeval older);
|
2005-04-30 19:30:55 -04:00
|
|
|
|
2005-09-15 16:22:43 -04:00
|
|
|
#define TEST_DATA_PATH "%s/data/test%ld"
|
|
|
|
|
2008-04-23 19:55:34 -04:00
|
|
|
#define SERVERLOGS_LOCK "log/serverlogs.lock"
|
|
|
|
|
2005-09-15 16:22:43 -04:00
|
|
|
/* global variable, where to find the 'data' dir */
|
|
|
|
extern const char *path;
|
|
|
|
|
2008-09-18 12:21:09 -04:00
|
|
|
/* global variable, log file name */
|
|
|
|
extern const char *serverlogfile;
|
|
|
|
|
2006-10-11 12:01:16 -04:00
|
|
|
#ifdef WIN32
|
2005-05-17 06:22:22 -04:00
|
|
|
#include <process.h>
|
2006-09-13 09:41:53 -04:00
|
|
|
#include <fcntl.h>
|
2005-05-17 06:22:22 -04:00
|
|
|
|
|
|
|
#define sleep(sec) Sleep ((sec)*1000)
|
|
|
|
|
2006-10-18 17:05:40 -04:00
|
|
|
#undef perror
|
|
|
|
#define perror(m) win32_perror(m)
|
2016-12-19 02:31:59 -05:00
|
|
|
void win32_perror(const char *msg);
|
2006-10-18 17:05:40 -04:00
|
|
|
#endif /* WIN32 */
|
|
|
|
|
|
|
|
#ifdef USE_WINSOCK
|
2005-05-17 06:22:22 -04:00
|
|
|
void win32_init(void);
|
|
|
|
void win32_cleanup(void);
|
2006-10-18 17:05:40 -04:00
|
|
|
#endif /* USE_WINSOCK */
|
2005-09-15 16:22:43 -04:00
|
|
|
|
|
|
|
/* returns the path name to the test case file */
|
|
|
|
char *test2file(long testno);
|
2006-09-13 09:41:53 -04:00
|
|
|
|
2008-02-18 15:13:30 -05:00
|
|
|
int wait_ms(int timeout_ms);
|
2007-07-11 21:07:49 -04:00
|
|
|
|
2008-02-28 04:38:32 -05:00
|
|
|
int write_pidfile(const char *filename);
|
2008-02-26 10:06:44 -05:00
|
|
|
|
2008-04-23 19:55:34 -04:00
|
|
|
void set_advisor_read_lock(const char *filename);
|
|
|
|
|
|
|
|
void clear_advisor_read_lock(const char *filename);
|
|
|
|
|
2016-10-31 18:49:54 -04:00
|
|
|
int strncasecompare(const char *first, const char *second, size_t max);
|
|
|
|
|
2012-04-10 11:32:06 -04:00
|
|
|
#endif /* HEADER_CURL_SERVER_UTIL_H */
|