connection_release private
[pazpar2-moved-to-github.git] / src / connection.c
index 1526938..7913651 100644 (file)
@@ -288,7 +288,7 @@ static void connection_handler(IOCHAN iochan, int event)
 
 
 // Disassociate connection from client
-void connection_release(struct connection *co)
+static void connection_release(struct connection *co)
 {
     struct client *cl = co->client;
 
@@ -439,11 +439,6 @@ static int connection_connect(struct connection *con, iochan_man_t iochan_man)
     return 0;
 }
 
-const char *connection_get_url(struct connection *co)
-{
-    return client_get_url(co->client);
-}
-
 // Ensure that client has a connection associated
 int client_prep_connection(struct client *cl,
                            int operation_timeout, int session_timeout,