2002-06-01 02:27:13 +08:00
|
|
|
/* $Id: utils.h,v 1.19 2002-05-31 18:27:13 rjkaes Exp $
|
2000-02-17 01:32:49 +08:00
|
|
|
*
|
|
|
|
* See 'utils.h' for a detailed description.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Steven Young
|
|
|
|
* Copyright (C) 1999 Robert James Kaes (rjkaes@flarenet.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2002-05-24 02:28:12 +08:00
|
|
|
#ifndef TINYPROXY_UTILS_H
|
|
|
|
#define TINYPROXY_UTILS_H
|
2001-10-26 00:58:50 +08:00
|
|
|
|
2001-11-23 09:19:15 +08:00
|
|
|
/*
|
2002-05-24 02:28:12 +08:00
|
|
|
* Forward declaration.
|
2001-11-23 09:19:15 +08:00
|
|
|
*/
|
2002-05-24 02:28:12 +08:00
|
|
|
struct conn_s;
|
2001-11-23 09:19:15 +08:00
|
|
|
|
2001-11-22 08:31:10 +08:00
|
|
|
extern int send_http_message(struct conn_s *connptr, int http_code,
|
2001-09-16 05:29:59 +08:00
|
|
|
const char *error_title, const char *message);
|
2002-04-15 10:07:27 +08:00
|
|
|
extern int send_http_error_message(struct conn_s *connptr);
|
|
|
|
extern int indicate_http_error(struct conn_s* connptr, int number, const char *string);
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2000-09-12 08:01:29 +08:00
|
|
|
extern void pidfile_create(const char *path);
|
2002-06-01 02:27:13 +08:00
|
|
|
extern int create_file_safely(const char *filename, bool_t truncate_file);
|
2001-09-16 05:29:59 +08:00
|
|
|
|
2002-04-19 00:57:06 +08:00
|
|
|
extern void rotate_log_files(void);
|
2001-11-23 09:19:15 +08:00
|
|
|
|
2000-02-17 01:32:49 +08:00
|
|
|
#endif
|