Deleted Added
sdiff udiff text old ( 206048 ) new ( 215698 )
full compact
1.\" Automatically generated by Pod::Man 2.22 (Pod::Simple 3.07)
2.\"
3.\" Standard preamble:
4.\" ========================================================================
5.de Sp \" Vertical space (when we can't use .PP)
6.if t .sp .5v
7.if n .sp
8..
9.de Vb \" Begin verbatim text
10.ft CW
11.nf
12.ne \\$1
13..
14.de Ve \" End verbatim text
15.ft R
16.fi
17..
18.\" Set up some character translations and predefined strings. \*(-- will
19.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
20.\" double quote, and \*(R" will give a right double quote. \*(C+ will
21.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
22.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
23.\" nothing in troff, for use with C<>.
24.tr \(*W-
25.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
26.ie n \{\
27. ds -- \(*W-
28. ds PI pi
29. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
31. ds L" ""
32. ds R" ""
33. ds C` ""
34. ds C' ""
35'br\}
36.el\{\
37. ds -- \|\(em\|
38. ds PI \(*p
39. ds L" ``
40. ds R" ''
41'br\}
42.\"
43.\" Escape single quotes in literal strings from groff's Unicode transform.
44.ie \n(.g .ds Aq \(aq
45.el .ds Aq '
46.\"
47.\" If the F register is turned on, we'll generate index entries on stderr for
48.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
49.\" entries marked with X<> in POD. Of course, you'll have to process the
50.\" output yourself in some meaningful fashion.
51.ie \nF \{\
52. de IX
53. tm Index:\\$1\t\\n%\t"\\$2"
54..
55. nr % 0
56. rr F
57.\}
58.el \{\
59. de IX
60..
61.\}
62.\"
63.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
64.\" Fear. Run. Save yourself. No user-serviceable parts.
65. \" fudge factors for nroff and troff
66.if n \{\
67. ds #H 0
68. ds #V .8m
69. ds #F .3m
70. ds #[ \f1

--- 48 unchanged lines hidden (view full) ---

119. ds Th \o'LP'
120. ds ae ae
121. ds Ae AE
122.\}
123.rm #[ #] #H #V #F C
124.\" ========================================================================
125.\"
126.IX Title "BIO_s_connect 3"
127.TH BIO_s_connect 3 "2010-11-16" "0.9.8p" "OpenSSL"
128.\" For nroff, turn off justification. Always turn off hyphenation; it makes
129.\" way too many mistakes in technical documents.
130.if n .ad l
131.nh
132.SH "NAME"
133BIO_s_connect, BIO_set_conn_hostname, BIO_set_conn_port,
134BIO_set_conn_ip, BIO_set_conn_int_port, BIO_get_conn_hostname,
135BIO_get_conn_port, BIO_get_conn_ip, BIO_get_conn_int_port,
136BIO_set_nbio, BIO_do_connect \- connect BIO
137.SH "SYNOPSIS"
138.IX Header "SYNOPSIS"
139.Vb 1
140\& #include <openssl/bio.h>
141\&
142\& BIO_METHOD * BIO_s_connect(void);
143\&
144\& BIO *BIO_new_connect(char *name);
145\&
146\& long BIO_set_conn_hostname(BIO *b, char *name);
147\& long BIO_set_conn_port(BIO *b, char *port);
148\& long BIO_set_conn_ip(BIO *b, char *ip);
149\& long BIO_set_conn_int_port(BIO *b, char *port);
150\& char *BIO_get_conn_hostname(BIO *b);
151\& char *BIO_get_conn_port(BIO *b);
152\& char *BIO_get_conn_ip(BIO *b, dummy);
153\& long BIO_get_conn_int_port(BIO *b, int port);
154\&
155\& long BIO_set_nbio(BIO *b, long n);
156\&
157\& int BIO_do_connect(BIO *b);
158.Ve
159.SH "DESCRIPTION"
160.IX Header "DESCRIPTION"
161\&\fIBIO_s_connect()\fR returns the connect \s-1BIO\s0 method. This is a wrapper
162round the platform's \s-1TCP/IP\s0 socket connection routines.
163.PP
164Using connect BIOs, \s-1TCP/IP\s0 connections can be made and data

--- 120 unchanged lines hidden (view full) ---

285.PP
286\&\fIBIO_do_connect()\fR returns 1 if the connection was successfully
287established and 0 or \-1 if the connection failed.
288.SH "EXAMPLE"
289.IX Header "EXAMPLE"
290This is example connects to a webserver on the local host and attempts
291to retrieve a page and copy the result to standard output.
292.PP
293.Vb 10
294\& BIO *cbio, *out;
295\& int len;
296\& char tmpbuf[1024];
297\& ERR_load_crypto_strings();
298\& cbio = BIO_new_connect("localhost:http");
299\& out = BIO_new_fp(stdout, BIO_NOCLOSE);
300\& if(BIO_do_connect(cbio) <= 0) {
301\& fprintf(stderr, "Error connecting to server\en");

--- 15 unchanged lines hidden ---