2002-04-15 10:07:27 +08:00
|
|
|
/* $Id: utils.h,v 1.14 2002-04-15 02:07:27 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.
|
|
|
|
*/
|
|
|
|
|
2000-09-12 08:01:29 +08:00
|
|
|
#ifndef _TINYPROXY_UTILS_H_
|
|
|
|
#define _TINYPROXY_UTILS_H_
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2000-09-12 08:01:29 +08:00
|
|
|
#include "tinyproxy.h"
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2001-10-26 00:58:50 +08:00
|
|
|
#include "conns.h"
|
|
|
|
|
2001-11-23 09:19:15 +08:00
|
|
|
/*
|
|
|
|
* Error codes used within the utility functions.
|
|
|
|
*/
|
|
|
|
#define EERROR 1 /* Generic error */
|
|
|
|
#define ENOMEMORY 2 /* Out of memory (or allocation error) */
|
2001-11-25 10:22:05 +08:00
|
|
|
#define EOUTRANGE 3 /* The variable is out of range */
|
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
|
|
|
|
|
|
|
extern void makedaemon(void);
|
2000-09-12 08:01:29 +08:00
|
|
|
extern void pidfile_create(const char *path);
|
|
|
|
|
2001-09-16 05:29:59 +08:00
|
|
|
extern int create_file_safely(const char *filename);
|
|
|
|
|
2001-05-27 10:38:46 +08:00
|
|
|
#ifndef HAVE_STRLCAT
|
2000-09-12 08:01:29 +08:00
|
|
|
extern size_t strlcat(char *dst, const char *src, size_t size);
|
2001-11-22 08:31:10 +08:00
|
|
|
#endif /* HAVE_STRLCAT */
|
2001-05-27 10:38:46 +08:00
|
|
|
|
|
|
|
#ifndef HAVE_STRLCPY
|
2000-09-12 08:01:29 +08:00
|
|
|
extern size_t strlcpy(char *dst, const char *src, size_t size);
|
2001-11-22 08:31:10 +08:00
|
|
|
#endif /* HAVE_STRLCPY */
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2001-11-23 09:19:15 +08:00
|
|
|
extern size_t chomp(char *buffer, size_t length);
|
|
|
|
|
2001-09-09 02:55:58 +08:00
|
|
|
/*
|
|
|
|
* The following is to allow for better memory checking.
|
|
|
|
*/
|
|
|
|
#ifndef NDEBUG
|
|
|
|
|
2001-11-22 08:31:10 +08:00
|
|
|
extern void *debugging_calloc(size_t nmemb, size_t size, const char *file,
|
|
|
|
unsigned long line);
|
|
|
|
extern void *debugging_malloc(size_t size, const char *file,
|
|
|
|
unsigned long line);
|
2001-09-09 02:55:58 +08:00
|
|
|
extern void debugging_free(void *ptr, const char *file, unsigned long line);
|
2001-11-22 08:31:10 +08:00
|
|
|
extern void *debugging_realloc(void *ptr, size_t size, const char *file,
|
|
|
|
unsigned long line);
|
2001-09-09 02:55:58 +08:00
|
|
|
|
|
|
|
# define safecalloc(x, y) debugging_calloc(x, y, __FILE__, __LINE__)
|
|
|
|
# define safemalloc(x) debugging_malloc(x, __FILE__, __LINE__)
|
2001-09-12 03:27:27 +08:00
|
|
|
# define saferealloc(x, y) debugging_realloc(x, y, __FILE__, __LINE__)
|
2001-09-09 02:55:58 +08:00
|
|
|
# define safefree(x) debugging_free(x, __FILE__, __LINE__)
|
|
|
|
#else
|
|
|
|
# define safecalloc(x, y) calloc(x, y)
|
|
|
|
# define safemalloc(x) malloc(x)
|
2001-09-12 03:27:27 +08:00
|
|
|
# define saferealloc(x, y) realloc(x, y)
|
2001-09-09 02:55:58 +08:00
|
|
|
# define safefree(x) free(x)
|
|
|
|
#endif
|
|
|
|
|
2000-02-17 01:32:49 +08:00
|
|
|
#endif
|