diff options
author | adevries <devnull@localhost> | 1999-02-04 18:48:03 +0000 |
---|---|---|
committer | adevries <devnull@localhost> | 1999-02-04 18:48:03 +0000 |
commit | a7366495ae19850d0cc996cae867ac5b59b250af (patch) | |
tree | 7f308692a525c362accf7570614aba13cb199c44 /url.c | |
parent | 0166b45137233b4e51b0062633b13962a6af0715 (diff) | |
download | librpm-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |