X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=project.h;h=8b6c429029934b4b1f7f8e92fdb8e0706cb9b5e4;hp=2b0292ae7bc4415818734bac7a5b6555b24a1074;hb=8a5751cc96dd085fcbcc34bef77499306bddc0c0;hpb=e8db07c2f0720685bb504013a6a1e576b0cf718f diff --git a/project.h b/project.h index 2b0292ae..8b6c4290 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.135 2009/05/10 10:19:23 fabiankeil Exp $" +#define PROJECT_H_VERSION "$Id: project.h,v 1.136 2009/05/13 18:20:54 fabiankeil Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/project.h,v $ @@ -37,6 +37,9 @@ * * Revisions : * $Log: project.h,v $ + * Revision 1.136 2009/05/13 18:20:54 fabiankeil + * There's no reason for keep_alive_timeout to be signed. + * * Revision 1.135 2009/05/10 10:19:23 fabiankeil * Reenable server-side-only keep-alive support, but only share * outgoing connections if the connection-sharing option is set. @@ -1321,6 +1324,11 @@ struct reusable_connection jb_socket sfd; int in_use; time_t timestamp; + /* + * Number of seconds after which this + * connection will no longer be reused. + */ + unsigned int keep_alive_timeout; char *host; int port; @@ -1879,7 +1887,7 @@ struct configuration_spec int socket_timeout; #ifdef FEATURE_CONNECTION_KEEP_ALIVE - /* Number of seconds after which an open connection will no longer be reused. */ + /* Maximum number of seconds after which an open connection will no longer be reused. */ unsigned int keep_alive_timeout; #endif