Home
last modified time | relevance | path

Searched refs:connection (Results 1 – 25 of 492) sorted by relevance

12345678910>>...20

/freebsd/lib/libc/net/
H A Dnscachedcli.c58 safe_write(struct cached_connection_ *connection, const void *data, in safe_write() argument
74 nevents = _kevent(connection->write_queue, NULL, 0, &eventlist, in safe_write()
77 s_result = _sendto(connection->sockfd, data + result, in safe_write()
102 safe_read(struct cached_connection_ *connection, void *data, size_t data_size) in safe_read() argument
117 nevents = _kevent(connection->read_queue, NULL, 0, &eventlist, in safe_read()
120 s_result = _read(connection->sockfd, data + result, in safe_read()
142 send_credentials(struct cached_connection_ *connection, int type) in send_credentials() argument
168 EV_SET(&eventlist, connection->sockfd, EVFILT_WRITE, EV_ADD, in send_credentials()
170 (void)_kevent(connection->write_queue, &eventlist, 1, NULL, 0, NULL); in send_credentials()
172 nevents = _kevent(connection->write_queue, NULL, 0, &eventlist, 1, in send_credentials()
[all …]
H A Dnscache.c57 cached_connection connection; in __nss_common_cache_read() local
108 connection = __open_cached_connection(&params); in __nss_common_cache_read()
109 if (connection == NULL) { in __nss_common_cache_read()
113 res = __cached_read(connection, cache_info->entry_name, in __nss_common_cache_read()
116 __close_cached_connection(connection); in __nss_common_cache_read()
161 cached_connection connection; in __nss_common_cache_write() local
180 connection = __open_cached_connection(&params); in __nss_common_cache_write()
181 if (connection == NULL) { in __nss_common_cache_write()
210 __close_cached_connection(connection); in __nss_common_cache_write()
216 res = __cached_write(connection, cache_info->entry_name, in __nss_common_cache_write()
[all …]
/freebsd/usr.sbin/nscd/
H A Dnscdcli.c53 safe_write(struct nscd_connection_ *connection, const void *data, in safe_write() argument
69 nevents = kevent(connection->write_queue, NULL, 0, &eventlist, in safe_write()
72 s_result = write(connection->sockfd, in safe_write()
91 safe_read(struct nscd_connection_ *connection, void *data, size_t data_size) in safe_read() argument
106 nevents = kevent(connection->read_queue, NULL, 0, &eventlist, 1, in safe_read()
109 s_result = read(connection->sockfd, in safe_read()
128 send_credentials(struct nscd_connection_ *connection, int type) in send_credentials() argument
155 EV_SET(&eventlist, connection->sockfd, EVFILT_WRITE, EV_ADD, in send_credentials()
157 kevent(connection->write_queue, &eventlist, 1, NULL, 0, NULL); in send_credentials()
159 nevents = kevent(connection->write_queue, NULL, 0, &eventlist, 1, NULL); in send_credentials()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_get_version.pod6 protocol information of a connection
24 connection. Note that, for TLS, this value will never indicate a version greater
26 returns the name of the protocol used for the connection. SSL_version() returns
27 the numeric protocol version used for the connection. They should only be called
31 SSL_is_dtls() returns one if the connection is using DTLS, zero if not.
42 The connection uses the SSLv3 protocol.
46 The connection uses the TLSv1.0 protocol.
50 The connection uses the TLSv1.1 protocol.
54 The connection uses the TLSv1.2 protocol.
58 The connection uses the TLSv1.3 protocol.
[all …]
H A DBIO_s_accept.pod48 on the underlying connection. If no connection is established
50 waits for an incoming connection.
55 connection on that chain is shutdown and the socket closed when
59 connection and reset the BIO into a state where it awaits another
60 incoming connection.
92 connection is received. This is useful if, for example, a
93 buffering or SSL BIO is required for each connection. The
116 connection, or request a retry in non blocking mode.
121 incoming connection before processing I/O calls. When an accept
125 When a connection is established a new socket BIO is created for
[all …]
H A DBIO_s_connect.pod36 round the platform's TCP/IP socket connection routines.
43 on the underlying connection. If no connection is established
45 a connection is established first.
50 connection is shutdown and the socket closed when the BIO
54 connection and reset the BIO into a state where it can connect
90 should be made before the connection is established because
95 For non-SSL BIOs the connection is done typically at TCP level.
98 The function returns 1 if the connection was established successfully.
99 A zero or negative value is returned if the connection could not be established.
102 If a connection has already been established this call has no effect.
[all …]
H A DSSL_key_update.pod10 - initiate and obtain information about updating connection keys
25 SSL_key_update() schedules an update of the keys for the current TLS connection.
27 the sending keys for this connection will be updated and the peer will be
29 B<SSL_KEY_UPDATE_REQUESTED> then the sending keys for this connection will be
38 or SSL_write_ex() takes place on the connection. Alternatively SSL_do_handshake()
48 connection will result in an error.
51 handshake over an existing SSL/TLS connection. The next time an IO operation
52 such as SSL_read_ex() or SSL_write_ex() takes place on the connection a check
55 attempt to resume any session associated with the connection in the new
60 session associated with the current connection in the new handshake.
[all …]
H A DSSL_clear.pod5 SSL_clear - reset SSL object to allow another connection
15 Reset B<ssl> to allow another connection. All settings (method, ciphers,
20 SSL_clear is used to prepare an SSL object for a new connection. While all
24 if L<SSL_shutdown(3)> was not called for the connection
34 will might lead to connection failures (see L<SSL_new(3)>)
39 SSL_clear() resets the SSL object to allow for another connection. The
42 handshake). It only makes sense for a new connection with the exact
/freebsd/lib/libiscsiutil/
H A Dlibiscsiutil.h42 struct connection { struct
62 struct connection *pdu_connection; argument
72 void (*fail)(const struct connection *, const char *);
136 struct pdu *pdu_new(struct connection *ic);
146 void text_send_request(struct connection *conn,
148 struct keys * text_read_response(struct connection *conn);
149 struct keys * text_read_request(struct connection *conn,
154 void connection_init(struct connection *conn,
H A Dtext.c42 text_new_request(struct connection *conn, uint32_t ttt) in text_new_request()
63 text_receive_request(struct connection *conn) in text_receive_request()
99 struct connection *conn; in text_new_response()
125 text_receive_response(struct connection *conn) in text_receive_response()
170 text_send_request(struct connection *conn, struct keys *request_keys) in text_send_request()
191 text_read_response(struct connection *conn) in text_read_response()
247 text_read_request(struct connection *conn, struct pdu **requestp) in text_read_request()
277 struct connection *conn = request->pdu_connection; in text_send_response()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dfsl-ls2088a-rdb.dts28 phy-connection-type = "10gbase-r";
33 phy-connection-type = "10gbase-r";
38 phy-connection-type = "10gbase-r";
43 phy-connection-type = "10gbase-r";
48 phy-connection-type = "10gbase-r";
53 phy-connection-type = "10gbase-r";
58 phy-connection-type = "10gbase-r";
63 phy-connection-type = "10gbase-r";
H A Dfsl-ls1088a-rdb.dts22 phy-connection-type = "10gbase-r";
28 phy-connection-type = "qsgmii";
35 phy-connection-type = "qsgmii";
42 phy-connection-type = "qsgmii";
49 phy-connection-type = "qsgmii";
56 phy-connection-type = "qsgmii";
63 phy-connection-type = "qsgmii";
70 phy-connection-type = "qsgmii";
77 phy-connection-type = "qsgmii";
H A Dfsl-ls1088a-ten64.dts96 phy-connection-type = "10gbase-r";
104 phy-connection-type = "10gbase-r";
111 phy-connection-type = "qsgmii";
118 phy-connection-type = "qsgmii";
125 phy-connection-type = "qsgmii";
132 phy-connection-type = "qsgmii";
140 phy-connection-type = "qsgmii";
147 phy-connection-type = "qsgmii";
154 phy-connection-type = "qsgmii";
161 phy-connection-type = "qsgmii";
H A Dfsl-ls1046a-rdb.dts132 phy-connection-type = "rgmii-id";
137 phy-connection-type = "rgmii-id";
142 phy-connection-type = "sgmii";
147 phy-connection-type = "sgmii";
152 phy-connection-type = "xgmii";
156 phy-connection-type = "10gbase-r";
H A Dfsl-ls1043a-rdb.dts141 phy-connection-type = "qsgmii";
146 phy-connection-type = "qsgmii";
151 phy-connection-type = "rgmii-id";
156 phy-connection-type = "rgmii-id";
161 phy-connection-type = "qsgmii";
166 phy-connection-type = "qsgmii";
171 phy-connection-type = "xgmii";
H A Dfsl-ls1046a-qds.dts197 phy-connection-type = "sgmii";
202 phy-connection-type = "sgmii";
207 phy-connection-type = "rgmii";
212 phy-connection-type = "rgmii";
217 phy-connection-type = "sgmii";
222 phy-connection-type = "sgmii";
227 phy-connection-type = "xgmii";
232 phy-connection-type = "xgmii";
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_mac.cpp294 xpc_connection_t connection, xpc_handler_t handler) { in TSAN_INTERCEPTOR() argument
295 SCOPED_TSAN_INTERCEPTOR(xpc_connection_set_event_handler, connection, in TSAN_INTERCEPTOR()
297 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
301 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
305 REAL(xpc_connection_set_event_handler)(connection, new_handler); in TSAN_INTERCEPTOR()
308 TSAN_INTERCEPTOR(void, xpc_connection_send_barrier, xpc_connection_t connection, in TSAN_INTERCEPTOR() argument
310 SCOPED_TSAN_INTERCEPTOR(xpc_connection_send_barrier, connection, barrier); in TSAN_INTERCEPTOR()
311 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
315 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
319 REAL(xpc_connection_send_barrier)(connection, new_barrier); in TSAN_INTERCEPTOR()
[all …]
/freebsd/contrib/sendmail/contrib/
H A DsocketmapClient.pl11 my $connection = shift @ARGV;
16 if ($connection =~ /tcp:(.+):([0-9]*)/) {
22 } elsif ($connection =~ /((unix)|(local)):(.+)/) {
28 die "unrecognized connection specification $connection";
H A DsocketmapServer.pl10 my $connection = shift @ARGV;
13 if ($connection =~ /tcp:(.+):([0-9]*)/) {
21 } elsif ($connection =~ /((unix)|(local)):(.+)/) {
29 die "unrecognized connection specification $connection";
/freebsd/lib/libfetch/
H A Dftp.errors7 125 OK Data connection already open; transfer starting
8 150 OK File status okay; about to open data connection
17 221 OK Service closing control connection
18 225 OK Data connection open; no transfer in progress
28 421 DOWN Service not available, closing control connection
29 425 NETWORK Can't open data connection
/freebsd/contrib/ntp/sntp/libevent/
H A Devrpc.c504 static int evrpc_schedule_request(struct evhttp_connection *connection,
540 struct evhttp_connection *connection; in evrpc_pool_free() local
556 while ((connection = TAILQ_FIRST(&pool->connections)) != NULL) { in evrpc_pool_free()
557 TAILQ_REMOVE(&pool->connections, connection, next); in evrpc_pool_free()
558 evhttp_connection_free(connection); in evrpc_pool_free()
581 struct evhttp_connection *connection) in evrpc_pool_add_connection() argument
583 EVUTIL_ASSERT(connection->http_server == NULL); in evrpc_pool_add_connection()
584 TAILQ_INSERT_TAIL(&pool->connections, connection, next); in evrpc_pool_add_connection()
590 evhttp_connection_set_base(connection, pool->base); in evrpc_pool_add_connection()
596 if (!evutil_timerisset(&connection->timeout)) in evrpc_pool_add_connection()
[all …]
/freebsd/contrib/libevent/
H A Devrpc.c504 static int evrpc_schedule_request(struct evhttp_connection *connection,
540 struct evhttp_connection *connection; in evrpc_pool_free() local
556 while ((connection = TAILQ_FIRST(&pool->connections)) != NULL) { in evrpc_pool_free()
557 TAILQ_REMOVE(&pool->connections, connection, next); in evrpc_pool_free()
558 evhttp_connection_free(connection); in evrpc_pool_free()
581 struct evhttp_connection *connection) in evrpc_pool_add_connection() argument
583 EVUTIL_ASSERT(connection->http_server == NULL); in evrpc_pool_add_connection()
584 TAILQ_INSERT_TAIL(&pool->connections, connection, next); in evrpc_pool_add_connection()
590 evhttp_connection_set_base(connection, pool->base); in evrpc_pool_add_connection()
596 if (!evutil_timerisset(&connection->timeout)) in evrpc_pool_add_connection()
[all …]
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A Dt4240rdb.dts157 phy-connection-type = "sgmii";
162 phy-connection-type = "sgmii";
167 phy-connection-type = "sgmii";
172 phy-connection-type = "sgmii";
185 phy-connection-type = "xgmii";
190 phy-connection-type = "xgmii";
197 phy-connection-type = "sgmii";
202 phy-connection-type = "sgmii";
207 phy-connection-type = "sgmii";
212 phy-connection-type = "sgmii";
[all …]
H A Dt2080qds.dts67 phy-connection-type = "xgmii";
72 phy-connection-type = "xgmii";
77 phy-connection-type = "rgmii";
82 phy-connection-type = "rgmii";
87 phy-connection-type = "sgmii";
92 phy-connection-type = "sgmii";
97 phy-connection-type = "xgmii";
102 phy-connection-type = "xgmii";
H A Dt4240qds.dts481 phy-connection-type = "sgmii";
486 phy-connection-type = "sgmii";
491 phy-connection-type = "sgmii";
496 phy-connection-type = "sgmii";
501 phy-connection-type = "rgmii";
506 phy-connection-type = "sgmii";
511 phy-connection-type = "xgmii";
516 phy-connection-type = "xgmii";
557 phy-connection-type = "sgmii";
562 phy-connection
[all...]

12345678910>>...20