aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-01-16 22:14:37 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-01-16 22:14:37 +0000
commit67a83c1b3465c44b249eaa44fdc492952e59b31f (patch)
tree7240899b4d2b76095abdb09dcccd657a6177e9b5 /lib/urldata.h
parent1e8d094274139238fb710451e069ce42317e55e4 (diff)
David Shaw finally removed all traces of Gopher and we are now officially
not supporting it. It hasn't been functioning for years anyway, so this is just finally stating what already was true. And a cleanup at the same time.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 0293dd5ad..94889234a 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -30,7 +30,6 @@
#define PORT_FTP 21
#define PORT_FTPS 990
#define PORT_TELNET 23
-#define PORT_GOPHER 70
#define PORT_HTTP 80
#define PORT_HTTPS 443
#define PORT_DICT 2628
@@ -541,7 +540,6 @@ struct connectdata {
long protocol; /* PROT_* flags concerning the protocol set */
#define PROT_MISSING (1<<0)
-#define PROT_GOPHER (1<<1)
#define PROT_HTTP (1<<2)
#define PROT_HTTPS (1<<3)
#define PROT_FTP (1<<4)
@@ -703,7 +701,6 @@ struct connectdata {
/* previously this was in the urldata struct */
union {
struct HTTP *http;
- struct HTTP *gopher; /* alias, just for the sake of being more readable */
struct HTTP *https; /* alias, just for the sake of being more readable */
struct FTP *ftp;
void *tftp; /* private for tftp.c-eyes only */