aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-12-20 22:11:16 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-12-20 22:11:16 +0000
commitd911e22d8f233a9d3994f1f00bedb5124070925b (patch)
treec51e5c7ca242cef9b131c92b849ef493a1e93fb4 /lib/smtp.c
parentefd1d9dc04b4624e64f5b87ae96b1516981ed512 (diff)
remove some unused code
Diffstat (limited to 'lib/smtp.c')
-rw-r--r--lib/smtp.c33
1 files changed, 1 insertions, 32 deletions
diff --git a/lib/smtp.c b/lib/smtp.c
index 0a168b8bd..074d9e7db 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -94,7 +94,6 @@
#include "memdebug.h"
/* Local API functions */
-static CURLcode smtp_parse_url_path(struct connectdata *conn);
static CURLcode smtp_regular_transfer(struct connectdata *conn, bool *done);
static CURLcode smtp_do(struct connectdata *conn, bool *done);
static CURLcode smtp_done(struct connectdata *conn,
@@ -108,9 +107,7 @@ static int smtp_getsock(struct connectdata *conn,
static CURLcode smtp_doing(struct connectdata *conn,
bool *dophase_done);
static CURLcode smtp_setup_connection(struct connectdata * conn);
-#if 0
-static void smtp_respinit(struct connectdata *conn);
-#endif
+
/*
* SMTP protocol handler.
@@ -322,9 +319,6 @@ static CURLcode smtp_mail(struct connectdata *conn)
{
CURLcode result = CURLE_OK;
struct SessionHandle *data = conn->data;
-#if 0
- struct FTP *smtp = data->state.proto.smtp;
-#endif
/* send MAIL */
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "MAIL FROM:<%s>",
@@ -739,10 +733,6 @@ static CURLcode smtp_do(struct connectdata *conn, bool *done)
if(retcode)
return retcode;
- retcode = smtp_parse_url_path(conn);
- if(retcode)
- return retcode;
-
retcode = smtp_regular_transfer(conn, done);
return retcode;
@@ -796,27 +786,6 @@ static CURLcode smtp_disconnect(struct connectdata *conn)
return CURLE_OK;
}
-/***********************************************************************
- *
- * smtp_parse_url_path()
- *
- * Parse the URL path into separate path components.
- *
- */
-static CURLcode smtp_parse_url_path(struct connectdata *conn)
-{
- /* the smtp struct is already inited in smtp_connect() */
-#if 0
- struct smtp_conn *smtpc = &conn->proto.smtpc;
- struct SessionHandle *data = conn->data;
-#endif
- (void)conn;
-
- /* url decode... */
-
- return CURLE_OK;
-}
-
/* call this when the DO phase has completed */
static CURLcode smtp_dophase_done(struct connectdata *conn,
bool connected)