Home | History | Annotate | Download | only in server
      1 #ifndef HEADER_CURL_SERVER_UTIL_H
      2 #define HEADER_CURL_SERVER_UTIL_H
      3 /***************************************************************************
      4  *                                  _   _ ____  _
      5  *  Project                     ___| | | |  _ \| |
      6  *                             / __| | | | |_) | |
      7  *                            | (__| |_| |  _ <| |___
      8  *                             \___|\___/|_| \_\_____|
      9  *
     10  * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel (at) 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 
     29 #define TEST_DATA_PATH "%s/data/test%ld"
     30 
     31 #define SERVERLOGS_LOCK "log/serverlogs.lock"
     32 
     33 /* global variable, where to find the 'data' dir */
     34 extern const char *path;
     35 
     36 /* global variable, log file name */
     37 extern const char *serverlogfile;
     38 
     39 #ifdef WIN32
     40 #include <process.h>
     41 #include <fcntl.h>
     42 
     43 #define sleep(sec)   Sleep ((sec)*1000)
     44 
     45 #undef perror
     46 #define perror(m) win32_perror(m)
     47 void win32_perror (const char *msg);
     48 #endif  /* WIN32 */
     49 
     50 #ifdef USE_WINSOCK
     51 void win32_init(void);
     52 void win32_cleanup(void);
     53 #endif  /* USE_WINSOCK */
     54 
     55 /* returns the path name to the test case file */
     56 char *test2file(long testno);
     57 
     58 int wait_ms(int timeout_ms);
     59 
     60 int write_pidfile(const char *filename);
     61 
     62 void set_advisor_read_lock(const char *filename);
     63 
     64 void clear_advisor_read_lock(const char *filename);
     65 
     66 int strncasecompare(const char *first, const char *second, size_t max);
     67 
     68 #endif  /* HEADER_CURL_SERVER_UTIL_H */
     69