From 26983053c431bf470a7293d184447bcb44b98f68 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 29 Aug 2001 09:36:41 +0000 Subject: take port numbers into account when finding a previous session from the cache --- lib/ssluse.c | 8 +++++--- lib/urldata.h | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/ssluse.c b/lib/ssluse.c index b8d91d59d..730ae41d3 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -371,7 +371,8 @@ static int Get_SSL_Session(struct connectdata *conn, if(!check->sessionid) /* not session ID means blank entry */ continue; - if(strequal(conn->name, check->name)) { + if(strequal(conn->name, check->name) && + (conn->remote_port == check->remote_port) ) { /* yes, we have a session ID! */ data->ssl.sessionage++; /* increase general age */ check->age = data->ssl.sessionage; /* set this as used in this age */ @@ -457,8 +458,9 @@ static int Store_SSL_Session(struct connectdata *conn) /* now init the session struct wisely */ store->sessionid = ssl_sessionid; - store->age = data->ssl.sessionage; /* set current age */ - store->name = strdup(conn->name); /* clone host name */ + store->age = data->ssl.sessionage; /* set current age */ + store->name = strdup(conn->name); /* clone host name */ + store->remote_port = conn->remote_port; /* port number */ return 0; } diff --git a/lib/urldata.h b/lib/urldata.h index 8f155e394..72e288142 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -130,6 +130,7 @@ struct curl_ssl_session { char *name; /* host name for which this ID was used */ void *sessionid; /* as returned from the SSL layer */ long age; /* just a number, the higher the more recent */ + unsigned short remote_port; /* remote port to connect to */ }; struct ssl_config_data { -- cgit v1.2.3