From: Adam Dickmeiss Date: Mon, 13 Oct 2008 13:13:39 +0000 (+0200) Subject: Removed unused function connection_send_apdu. X-Git-Tag: v1.1.0~106 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=713bfdf6d506f0786e87950cbb685cb6fce7e9d0;p=pazpar2-moved-to-github.git Removed unused function connection_send_apdu. --- diff --git a/src/connection.c b/src/connection.c index a90e6c1..089847b 100644 --- a/src/connection.c +++ b/src/connection.c @@ -479,13 +479,6 @@ int client_prep_connection(struct client *cl) return 0; } -// DELETEME - - -int connection_send_apdu(struct connection *co, Z_APDU *a){return 10;} - - - /* * Local variables: * c-basic-offset: 4 diff --git a/src/connection.h b/src/connection.h index 86b0ebf..80bc261 100644 --- a/src/connection.h +++ b/src/connection.h @@ -36,7 +36,6 @@ struct session; void connection_destroy(struct connection *co); struct connection *connection_create(struct client *cl); void connect_resolver_host(struct host *host); -int connection_send_apdu(struct connection *co, Z_APDU *a); struct host *connection_get_host(struct connection *con); void connection_set_authentication(struct connection *co, char *auth); int connection_connect(struct connection *con);