aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/yahoo/yahoo_httplib.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-10-20 10:44:59 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2012-10-20 10:44:59 +0100
commit3cd37d784147808b2d93218b7eca3413a124b1b6 (patch)
tree8b951b4d1cb9fec7be7478d5f3ed3d1cb9dd37c2 /protocols/yahoo/yahoo_httplib.c
parent509cf60140e5d757c79558a7b39145fe3c0cb2b5 (diff)
Cleaning up some more Yahoo! symbols.
Diffstat (limited to 'protocols/yahoo/yahoo_httplib.c')
-rw-r--r--protocols/yahoo/yahoo_httplib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/yahoo/yahoo_httplib.c b/protocols/yahoo/yahoo_httplib.c
index 6bb8923d..fd63d507 100644
--- a/protocols/yahoo/yahoo_httplib.c
+++ b/protocols/yahoo/yahoo_httplib.c
@@ -61,6 +61,7 @@ extern struct yahoo_callbacks *yc;
extern enum yahoo_log_level log_level;
+#if 0
int yahoo_tcp_readline(char *ptr, int maxlen, void *fd)
{
int n, rc;
@@ -92,6 +93,7 @@ int yahoo_tcp_readline(char *ptr, int maxlen, void *fd)
*ptr = 0;
return (n);
}
+#endif
static int url_to_host_port_path(const char *url,
char *host, int *port, char *path, int *ssl)
@@ -182,6 +184,7 @@ char *yahoo_urlencode(const char *instr)
return (str);
}
+#if 0
char *yahoo_urldecode(const char *instr)
{
int ipos = 0, bpos = 0;
@@ -278,6 +281,7 @@ char *yahoo_xmldecode(const char *instr)
return (str);
}
+#endif
typedef void (*http_connected) (int id, void *fd, int error);