commit 3a412a068303f07b844e705d2f58570a25583500
parent cefea0ca438530f3a50add2d0774d8ddb2cc01bd
Author: ukai <ukai>
Date: Mon, 20 Jan 2003 15:25:29 +0000
[w3m-dev 03659] Can't download from SSL.
* istream.c (ISfileno): case IST_SSL
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat:
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -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
diff --git a/istream.c b/istream.c
@@ -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: