summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_fd.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-01-19 21:23:13 +0100
committerAndy Polyakov <appro@openssl.org>2013-01-19 21:23:13 +0100
commita006fef78e56b078549a80f4bb4518b6a02eba84 (patch)
tree16669073d67ca852e41b488283fb617409839547 /crypto/bio/bss_fd.c
parent0e5cf7bc09377de8564b9a18d96050b87b156bb0 (diff)
Improve WINCE support.
Submitted by: Pierre Delaage
Diffstat (limited to 'crypto/bio/bss_fd.c')
-rw-r--r--crypto/bio/bss_fd.c20
1 files changed, 18 insertions, 2 deletions
diff --git a/crypto/bio/bss_fd.c b/crypto/bio/bss_fd.c
index d1bf85aae1..c274877c13 100644
--- a/crypto/bio/bss_fd.c
+++ b/crypto/bio/bss_fd.c
@@ -63,9 +63,25 @@
#if defined(OPENSSL_NO_POSIX_IO)
/*
- * One can argue that one should implement dummy placeholder for
- * BIO_s_fd here...
+ * Dummy placeholder for BIO_s_fd...
*/
+BIO *BIO_new_fd(int fd,int close_flag)
+ {
+ return NULL;
+ }
+int BIO_fd_non_fatal_error(int err)
+ {
+ return 0;
+ }
+int BIO_fd_should_retry(int i)
+ {
+ return 0;
+ }
+
+BIO_METHOD *BIO_s_fd(void)
+ {
+ return NULL;
+ }
#else
/*
* As for unconditional usage of "UPLINK" interface in this module.