diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-20 15:25:29 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-20 15:25:29 +0000 |
commit | 136d8b81158406cfc00e617be6b0edc85011170e (patch) | |
tree | 0ab63f7621a9cc4f9f95674227a09481eb2ce072 | |
parent | [w3m-dev 03658] Re: Other user can see local cookie. (diff) | |
download | w3m-136d8b81158406cfc00e617be6b0edc85011170e.tar.gz w3m-136d8b81158406cfc00e617be6b0edc85011170e.zip |
[w3m-dev 03659] Can't download from SSL.
* istream.c (ISfileno): case IST_SSL
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | istream.c | 6 |
2 files changed, 11 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2003-01-21 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp> + * [w3m-dev 03659] Can't download from SSL. + * istream.c (ISfileno): case IST_SSL + +2003-01-21 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp> + * [w3m-dev 03658] Re: Other user can see local cookie. * fm.h (rc_dir): init(NULL) * rc.c (config_file): deleted @@ -6621,4 +6626,4 @@ a * [w3m-dev 03276] compile error on EWS4800 * release-0-2-1 * import w3m-0.2.1 -$Id: ChangeLog,v 1.694 2003/01/20 15:24:19 ukai Exp $ +$Id: ChangeLog,v 1.695 2003/01/20 15:25:29 ukai Exp $ @@ -1,4 +1,4 @@ -/* $Id: istream.c,v 1.19 2003/01/18 18:40:32 ukai Exp $ */ +/* $Id: istream.c,v 1.20 2003/01/20 15:25:30 ukai Exp $ */ #include "fm.h" #include "myctype.h" #include "istream.h" @@ -343,6 +343,10 @@ ISfileno(InputStream stream) return *(int *)stream->base.handle; case IST_FILE: return fileno(stream->file.handle->f); +#ifdef USE_SSL + case IST_SSL: + return stream->ssl.handle->sock; +#endif case IST_ENCODED: return ISfileno(stream->ens.handle->is); default: |