diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-25 02:22:05 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-11-25 02:22:05 +0000 |
commit | 6e054e4a721733e74b1ebf3c38393f7c9ba0a786 (patch) | |
tree | b9a6212048f669d82132b5d58d476e895fca6a4d | |
parent | 8dc7035fbcb1050bb2f78cd4de06db1478edf637 (diff) | |
download | tinyproxy-6e054e4a721733e74b1ebf3c38393f7c9ba0a786.tar.gz tinyproxy-6e054e4a721733e74b1ebf3c38393f7c9ba0a786.zip |
Added a new error code.
Diffstat (limited to '')
-rw-r--r-- | src/utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h index 0fdf312..a401201 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,4 +1,4 @@ -/* $Id: utils.h,v 1.12 2001-11-23 01:19:15 rjkaes Exp $ +/* $Id: utils.h,v 1.13 2001-11-25 02:22:05 rjkaes Exp $ * * See 'utils.h' for a detailed description. * @@ -28,6 +28,7 @@ */ #define EERROR 1 /* Generic error */ #define ENOMEMORY 2 /* Out of memory (or allocation error) */ +#define EOUTRANGE 3 /* The variable is out of range */ extern int send_http_message(struct conn_s *connptr, int http_code, const char *error_title, const char *message); |