aboutsummaryrefslogtreecommitdiff
path: root/docs/ref/tran
Commit message (Collapse)AuthorAge
* Replace nng_pipe_get_addr, nng_stream_get_addr, and the NNG_OPT_REMADDR option.Garrett D'Amore2025-10-27
| | | | | | | | | | | More direct access methods are provided instead. This results in much lower friction when using, and is a step on the path to removing NNG_OPT_LOCADDR as well. We need to figure a solution for NNG_OPT_LOCADDR for dialers; for listeners there is little use in it either, and it will be removed. (Dialers will probably get a new NNG_OPT_BIND_IP option.)
* NNG_OPT_BOUND_PORT replaces NNG_OPT_TCP/UDP_BOUND_PORT.Garrett D'Amore2025-10-26
| | | | | | | | | | This is easier and agnostic about the underlying L3 protocol. We plan to remove direct NNG_OPT_LOCADDR support from listeners (and probably both NNG_OPT_LOCADDR and NNG_OPT_REMADDR have numbered days left in their lifetime. They will be replaced with more direct typed access functions as has been done for pipes already.) While here fixed some include for IWYU in the POSIX platform.
* Numerous link fixups - protocols now use xrefs.md properly.Garrett D'Amore2025-10-08
|
* fixes #2061 Move IPC parameters from uint64 to intGarrett D'Amore2025-01-03
|
* docs: more transport doc updatesGarrett D'Amore2025-01-02
|
* docs: update some transport option docsGarrett D'Amore2025-01-02
|
* docs: remove references to asterisk wildcard, other tweaksGarrett D'Amore2025-01-02
|
* fixes #863 socket activation: for TCP and IPC (POSIX only)Garrett D'Amore2024-12-30
| | | | | | | | | This introduces a new option "NNG_OPT_LISTEN_FD", understood by TCP, TLS, and (on POSIX systems) IPC. This option is used to pass a file descriptor or handle (Windows) that is already listening (ready for ACCEPT to be called). For TCP and TLS, the socket must be of type AF_INET or AF_INET6, and for IPC it must be of type AF_UNIX.
* Remove the NNG_OPT_IPC_SECURITY_DESCRIPTOR option.Garrett D'Amore2024-11-24
| | | | | | | | This is now replaced with nng_listener_set_security_descriptor and nng_stream_listener_set_security_descriptor functions. We may elect to remove these entirely, but for named pipe users they are probably still quite useful. Moving towards UNIX domain sockets would obsolete this functionality.
* docs: Document removal of NNG_OPT_URL, even though it isn't done yet.Garrett D'Amore2024-11-23
| | | | | We're going to start ripping out support for it. The alternative functions should be used instead.
* docs: consolidate misc chapterGarrett D'Amore2024-10-22
|
* IPC transport converted to mdbook.Garrett D'Amore2024-10-18
|
* Minor fixes for () in docsGarrett D'Amore2024-10-14
|
* Minor fixes to mdbook docs.Garrett D'Amore2024-10-12
|
* Convert inproc doc to mdbook.Garrett D'Amore2024-10-11
|
* more mdbook stuffGarrett D'Amore2024-10-11
|
* Convert nng_socket_pair.Garrett D'Amore2024-10-11
| | | | Also some cleanups on the organization of the mdbook.
* Indexing improvements to mdbook docs.Garrett D'Amore2024-10-06
|
* Add missing description header to socket manualGarrett D'Amore2024-10-06
|
* Forgot to add the UDP man page!Garrett D'Amore2024-10-06
|
* Fix UDP port numbers in docsGarrett D'Amore2024-10-06
|
* Initial swag at UDP transport docs, also converted socket transport to mdbookGarrett D'Amore2024-10-06
This has a lot of TODO links, because there are missing pieces still of course.