0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-07 11:08:34 +02:00
construct/include/ircd/net
2018-03-09 17:10:45 -08:00
..
acceptor.h ircd::net: Add additional conf items; update resolver timeout to use ms. 2018-03-09 17:10:45 -08:00
asio.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
close.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
dns.h ircd::net: Add additional conf items; update resolver timeout to use ms. 2018-03-09 17:10:45 -08:00
hostport.h ircd::net: Improve the net::hostport amalgam ctor; comments. 2018-02-07 00:24:54 -08:00
ipport.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
listener.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
net.h ircd: Remove ircd::error_code typedef with more local typedefs. 2018-03-08 10:08:38 -08:00
open.h ircd::net: Add open() option to allow expired certificates. 2018-02-10 18:37:06 -08:00
read.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
README.md ircd::net: Update read()/write() strategies. 2018-01-14 20:45:30 -08:00
remote.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
resolver.h ircd::net: Add additional conf items; update resolver timeout to use ms. 2018-03-09 17:10:45 -08:00
sock_opts.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
socket.h ircd::net: Remove unused/erroneous has_timeout(). 2018-02-18 22:38:23 -08:00
wait.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
write.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00

IRCd Networking

open()

The open() call combines DNS resolution, TCP connecting and SSL handshaking. A dedicated options structure is provided to tweak the specifics of the process.

close()

Like the open() sequence, the close() sequence composes a complex of multiple operations to close_notify the SSL session with cryptographic soundness and then disconnect the TCP session. A dedicated options structure is provided to tweak details.

Conveyance

Four strategies are available to work with the socket. We have it all covered. The read() and write() suites contain functions postfixed by their behavior:

_all()

A call to read_all() or write_all() will yield the calling ircd::ctx until the supplied buffers are filled or transmitted, respectively.

It is strongly advised to set a timeout in the options structure when making calls of this type.

An ircd::ctx is required to make this call, it does not work on the main stack.

_few()

A call to *_few() also yields the ircd::ctx, but the yield only lasts until some data is sent or received. Once some activity takes place, as much as possible is accomplished; there will not be any more yielding.

It is strongly advised to set a timeout in the options structure when making calls of this type.

An ircd::ctx is required to make this call, it does not work on the main stack.

_any()

A call to *_any() has true non-blocking behavior. It does not require an ircd::ctx. This call tries to conduct as much IO as possible without blocking. Internally it may be a loop of the _one() strategy that works through as much of the buffers until error.

_one()

A call to *_one() also has true non-blocking behavior and does not require an ircd::ctx. This call makes one syscall which may not fill or transmit all of the user buffers even if the kernel has more capacity to do so. To maximize the amount of data read or written to kernelland use the _any() strategy.