summaryrefslogtreecommitdiff
path: root/url.c
diff options
context:
space:
mode:
authoradevries <devnull@localhost>1999-02-04 18:48:03 +0000
committeradevries <devnull@localhost>1999-02-04 18:48:03 +0000
commita7366495ae19850d0cc996cae867ac5b59b250af (patch)
tree7f308692a525c362accf7570614aba13cb199c44 /url.c
parent0166b45137233b4e51b0062633b13962a6af0715 (diff)
downloadlibrpm-tizen-a7366495ae19850d0cc996cae867ac5b59b250af.tar.gz
librpm-tizen-a7366495ae19850d0cc996cae867ac5b59b250af.tar.bz2
librpm-tizen-a7366495ae19850d0cc996cae867ac5b59b250af.zip
Finally, preliminary http support.
- Alex CVS patchset: 2773 CVS date: 1999/02/04 18:48:03
Diffstat (limited to 'url.c')
-rw-r--r--url.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/url.c b/url.c
index ed28c3e13..817bbe373 100644
--- a/url.c
+++ b/url.c
@@ -6,6 +6,7 @@
#include "url.h"
#include "ftp.h"
+#include "http.h"
static struct urlstring {
const char *leadin;
@@ -299,6 +300,7 @@ FD_t ufdOpen(const char *url, int flags, mode_t mode)
break;
if ((fd = fdNew()) == NULL)
break;
+ httpProxySetup(url,&u);
fd->fd_url = u;
fd->fd_fd = httpOpen(u);
break;