SSL_set_fd(3) OpenSSL SSL_set_fd(3)NAME
SSL_set_fd - connect the SSL object with a file descriptor
LIBRARY
libcrypto, -lcrypto
SYNOPSIS
#include <openssl/ssl.h>
int SSL_set_fd(SSL *ssl, int fd);
int SSL_set_rfd(SSL *ssl, int fd);
int SSL_set_wfd(SSL *ssl, int fd);
DESCRIPTION
SSL_set_fd() sets the file descriptor fd as the input/output facility for the TLS/SSL (encrypted) side of ssl. fd will typically be the
socket file descriptor of a network connection.
When performing the operation, a socket BIO is automatically created to interface between the ssl and fd. The BIO and hence the SSL engine
inherit the behaviour of fd. If fd is non-blocking, the ssl will also have non-blocking behaviour.
If there was already a BIO connected to ssl, BIO_free() will be called (for both the reading and writing side, if different).
SSL_set_rfd() and SSL_set_wfd() perform the respective action, but only for the read channel or the write channel, which can be set
independently.
RETURN VALUES
The following return values can occur:
0 The operation failed. Check the error stack to find out why.
1 The operation succeeded.
SEE ALSO SSL_get_fd(3), SSL_set_bio(3), SSL_connect(3), SSL_accept(3), SSL_shutdown(3), ssl(3) , openssl_bio(3)1.0.1i 2014-06-05 SSL_set_fd(3)
Check Out this Related Man Page
SSL_set_fd(3SSL) OpenSSL SSL_set_fd(3SSL)NAME
SSL_set_fd - connect the SSL object with a file descriptor
SYNOPSIS
#include <openssl/ssl.h>
int SSL_set_fd(SSL *ssl, int fd);
int SSL_set_rfd(SSL *ssl, int fd);
int SSL_set_wfd(SSL *ssl, int fd);
DESCRIPTION
SSL_set_fd() sets the file descriptor fd as the input/output facility for the TLS/SSL (encrypted) side of ssl. fd will typically be the
socket file descriptor of a network connection.
When performing the operation, a socket BIO is automatically created to interface between the ssl and fd. The BIO and hence the SSL engine
inherit the behaviour of fd. If fd is non-blocking, the ssl will also have non-blocking behaviour.
If there was already a BIO connected to ssl, BIO_free() will be called (for both the reading and writing side, if different).
SSL_set_rfd() and SSL_set_wfd() perform the respective action, but only for the read channel or the write channel, which can be set
independently.
RETURN VALUES
The following return values can occur:
0 The operation failed. Check the error stack to find out why.
1 The operation succeeded.
SEE ALSO SSL_get_fd(3), SSL_set_bio(3), SSL_connect(3), SSL_accept(3), SSL_shutdown(3), ssl(3) , bio(3)1.0.0e 2000-09-16 SSL_set_fd(3SSL)
I have a csv file looking like:
echo,w-cai,w-cai-ssl
echo,countrywide,countrywide-ssl
haystack,intranet3,intranet3-ssl
haystack,pnf,pnf-ssl
Basically, I want to process this file row by row assigning each word delimited by a comma to a variable.
ie. for the first row, $variable1=echo... (5 Replies)
I wonder if someone could give advice on that topic
Done with ssl user auth, but no idea with protecting data channel from sniffers on my local network (0 Replies)
Hi All,
I m very new to SSL and unix .. I m trying to set up a client server communication using SSL .( C++ )
I m trying to write my code using open ssl libraries.
The problem which I m facing now is the certificate generation
Can any one explain me the concept of certificates and the... (0 Replies)
Example:
bash:pwd
/home/balamv
bash:more test.txt
hello
hello-ssl
welcome
welcome-ssl
hi
bye
bye-ssl
seeyou
I want to get all the lines which contain ssl and also the one does not contain ssl.
Output should be like this. (4 Replies)
Hi. um. I'm trying to make a LAMP server on Fedora 7, but When I try to turn Apache/Httpd on, it gives me this error:
# chkconfig -- levels 235 httpd on
# /etc/init.d/httpd start
Starting httpd: (98)Address already in use: make_sock: could not bind to address 192.168.1.110.80
no listening... (8 Replies)
Instead of using an external Certification Authority CA such as Verisgn, in windows I have been told there is something called self ssl ( The server is its own Certification Authority)
In Solaris is there such an alternate?
In need it for apache.
Much appreciate for any guidence.
Thanks (2 Replies)
We are running Apache 1.3 on solaris 8 we have renewed our ssl key with verisign. They have confirmed renewel and new ssl certifcate is appended to the end of the email.
out apache config file has two directives
SSLCertificateFile /export/home/apache/conf/ssl.crt/xxxx.crt
SSLCertificationKeyFile... (2 Replies)
Is there a way I can execute an installp command in debug mode, so that I can see whats happening when a fileset is being installed or updated? (What files are being replace etc etc).
I have an installp command failing for unknown reason. (7 Replies)
say i have an apache server configured for ssl/non ssl virtual hosts and a proxy configured as follows (see squid.conf)
the ssl on each name based virtual host is configured on its own port (only 7 of the domains need this the rest are just media and other insignificant bits of data but domains... (1 Reply)
I am running apache2 in my local network and I am learning about the ssl.
I found this document.
It tell me to run the following command (down) in order to generate SSL certificate:
apache2-ssl-certificate
However when I run the command I get the message that there is no such command.
I... (6 Replies)
hi ..
am senthil..
need clarification in SSL certification...
what kind of algorithm do they support...
m a newbie to SSL
guide me eith your ideas.. (5 Replies)
./split2.sh: line 1: split/ssl/pop3s.txt: No such file or directory
sort: cannot read: split/ssl/pop3s.txt: No such file or directory
Hi there,
I am pulling data from the following source:
ssl/http
ssl/http
ssl/http-alt
ssl/https
ssl/https
ssl/https
ssl/https
ssl/https
ssl/https... (3 Replies)