From 0f18e4fc3a1205d5abd7f38c984b2dc707dc46c9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 16 Nov 2013 15:23:27 +0100 Subject: BB#106: remove now unused extract_ssl_url. Signed-off-by: Michael Adam --- src/reqs.c | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'src') diff --git a/src/reqs.c b/src/reqs.c index d872294..d7f5438 100644 --- a/src/reqs.c +++ b/src/reqs.c @@ -243,31 +243,6 @@ ERROR_EXIT: return -1; } -/* - * Extract the URL from a SSL connection. - */ -static int extract_ssl_url (const char *url, struct request_s *request) -{ - request->host = (char *) safemalloc (strlen (url) + 1); - if (!request->host) - return -1; - - if (sscanf (url, "%[^:]:%hu", request->host, &request->port) == 2) ; - else if (sscanf (url, "%s", request->host) == 1) - request->port = HTTP_PORT_SSL; - else { - log_message (LOG_ERR, "extract_ssl_url: Can't parse URL."); - - safefree (request->host); - return -1; - } - - /* Remove the username/password if they're present */ - strip_username_password (request->host); - - return 0; -} - /* * Create a connection for HTTP connections. */ -- cgit v1.2.3