diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2011-05-05 00:02:39 +0200 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2011-05-05 00:02:39 +0200 | 
| commit | 61877b569f29ec735e35cf0b52bc1b00ce03078b (patch) | |
| tree | 4a422bf181585d102d7154f302ed48e529e0bdff | |
| parent | dc15a88076c82aabfd0340bc2eb4ef4086b38cb4 (diff) | |
Corrected comments
closepolicy has been deprecated and unused for years
| -rw-r--r-- | include/curl/curl.h | 3 | ||||
| -rw-r--r-- | lib/url.c | 13 | 
2 files changed, 8 insertions, 8 deletions
| diff --git a/include/curl/curl.h b/include/curl/curl.h index ee9754da8..e731ee900 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -991,8 +991,7 @@ typedef enum {    /* Max amount of cached alive connections */    CINIT(MAXCONNECTS, LONG, 71), -  /* What policy to use when closing connections when the cache is filled -     up */ +  /* 72 - DEPRECATED */    CINIT(CLOSEPOLICY, LONG, 72),    /* 73 = OBSOLETE */ @@ -3025,9 +3025,10 @@ ConnectionExists(struct SessionHandle *data,  /* - * This function frees/closes a connection in the connection cache. This - * should take the previously set policy into account when deciding which - * of the connections to kill. + * This function kills and removes an existing connection in the connection + * cache. The connection that has been unused for the longest time. + * + * Returns -1 if it can't find any unused connection to kill.   */  static long  ConnectionKillOne(struct SessionHandle *data) @@ -3078,9 +3079,9 @@ ConnectionDone(struct connectdata *conn)  }  /* - * The given input connection struct pointer is to be stored. If the "cache" - * is already full, we must clean out the most suitable using the previously - * set policy. + * The given input connection struct pointer is to be stored in the connection + * cache. If the cache is already full, least interesting existing connection + * (if any) gets closed.   *   * The given connection should be unique. That must've been checked prior to   * this call. | 
