X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=project.h;h=4d0d986305e2fe329030732cfd66711d7a155e6d;hb=ddc15f410cf7e878f7a40635daa645b08e17e92c;hp=8f1fc469b18b5b2de8fbadbba2d45e2e6dd1fcab;hpb=07b1101cc1ed28618e07eda179eaab84715a9399;p=privoxy.git diff --git a/project.h b/project.h index 8f1fc469..4d0d9863 100644 --- a/project.h +++ b/project.h @@ -1,7 +1,7 @@ #ifndef PROJECT_H_INCLUDED #define PROJECT_H_INCLUDED /** Version string. */ -#define PROJECT_H_VERSION "$Id: project.h,v 1.138 2009/05/16 13:27:20 fabiankeil Exp $" +#define PROJECT_H_VERSION "$Id: project.h,v 1.141 2009/06/11 11:46:22 fabiankeil Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/project.h,v $ @@ -318,6 +318,8 @@ struct http_request #define RSP_REASON_CONNECT_FAILED 8 #define RSP_REASON_OUT_OF_MEMORY 9 #define RSP_REASON_INTERNAL_ERROR 10 +#define RSP_REASON_CONNECTION_TIMEOUT 11 +#define RSP_REASON_NO_SERVER_DATA 12 /** * Response generated by CGI, blocker, or error handler @@ -739,13 +741,20 @@ struct reusable_connection * Flag for csp->flags: Set if the server specified the * content length. */ -#define CSP_FLAG_CONTENT_LENGTH_SET 0x00002000U +#define CSP_FLAG_SERVER_CONTENT_LENGTH_SET 0x00002000U + +/** + * Flag for csp->flags: Set if we know the content lenght, + * either because the server set it, or we figured it out + * on our own. + */ +#define CSP_FLAG_CONTENT_LENGTH_SET 0x00004000U /** * Flag for csp->flags: Set if the client wants to keep * the connection alive. */ -#define CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE 0x00004000U +#define CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE 0x00008000U #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */ /*