summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Start of 1.4.0Garrett D'Amore2020-08-08
|
* fixes #1279 Add support for ws4:// and ws6:// style websocket urlsGarrett D'Amore2020-08-08
| | | | fixes #1277 FreeBSD errors due to bad v4 vs. v6 assumptions
* resolve warnings building testGarrett D'Amore2020-08-08
|
* fixes #1275 Test timeouts on FreeBSDGarrett D'Amore2020-08-08
| | | | | | | | | | This was responsible for hangs in close on FreeBSD. Apparently our use of EVFILT_USER was incorrect, and rather than fix it, we have switched to using a notification pipe for synchronizing closing pipes. In addition to fixing this problem, it should significantly improve things for NetBSD and OpenBSD, which will now be able tbenefit from kqueue(), since we no longer depend on EVFILT_USER.
* Support tag referencesGarrett D'Amore2020-08-08
|
* Bump for v1.3.2.Garrett D'Amore2020-08-08
| | | | | Note that v1.3.2 contains only documentation fixes compared to v1.3.1. So there is no urgency to update if already on 1.3.1.
* Prefix all tests with PROJECT_NAME (#1276)Hugo Lindström2020-08-07
|
* Fix build on FreeBSD (#1272)Steve Wills2020-08-04
|
* fixes #1270 Move web page publication tool to main branchGarrett D'Amore2020-08-02
|
* fix title of nng_http_res_del_headerGarrett D'Amore2020-08-01
|
* nng_http_req_get_uri titleGarrett D'Amore2020-08-01
|
* nng_req_http_del_header titleGarrett D'Amore2020-08-01
|
* nn_send, not nn_recvGarrett D'Amore2020-08-01
|
* Another incorrect man page title.Garrett D'Amore2020-08-01
|
* wrong document titleGarrett D'Amore2020-08-01
|
* Bump version to 1.3.1.v1.3.1Garrett D'Amore2020-07-27
|
* Add test code for bug1247.Garrett D'Amore2020-07-27
|
* fixes #1242 EADDRINUSE is not reported on Win32Garrett D'Amore2020-07-27
|
* fixes #1267 testutil cannot use ipc names on WindowsGarrett D'Amore2020-07-27
|
* fixes #844 WebSocket wildcard host errorsGarrett D'Amore2020-07-27
| | | | | | | | | | fixes #1224 wss fails on IPV6 address This fixes bugs and inconsistencies in the way addresses are handled for HTTP (and consequently websocket). The Host: address line needs to look at numeric IPs and treat wildcards as if they are not specified, and needs to understand the IPv6 address format using brackets (e.g. [::1]:80).
* fixes #1232 EVFILT_USER is not available on NetBSDGarrett D'Amore2020-07-26
| | | | | | This means that NetBSD and OpenBSD cannot benefit from kqueue, and will need to use poll(). The best answer for those platforms is that someone contribute a working EVFILT_USER implementation.
* fixes #1235 framing error in SSL/TLSGarrett D'Amore2020-07-26
| | | | | | This was first detected as a stack overrun, but in actuality the problem could have lead to corruption of TLS messages due to prematurely recording transmit completion.
* Print NNG configuring message to STATUS mode.Indy2020-07-06
| | | | The default mode under default configration prints to stderr, some build tools take this to mean an error has occured incorrectlly.
* Harmonize the use of NNG in documentation.Garrett D'Amore2020-06-18
| | | | | NNG is always a noun, never an adjective, and should always be capitalized. We also reduced some unnecessary usages of it.
* Language cleanups in the documentation.Garrett D'Amore2020-06-18
| | | | | | Mostly this is removal of the smart quotes, which were over-used, and misused, and could have been mistaken to be pejorative. A few other minor nits were fixed while here.
* Don't use explicit curved apostrophes.Garrett D'Amore2020-06-18
| | | | Modern asciidoctor will detect this correctly based on context.
* Fix incorrect section header levels.Garrett D'Amore2020-06-18
|
* fix #1252jeikabu2020-06-16
| | | | - nng_msg_clear should only clear the message body and not the head. Add test to verify
* nng: support NNG_OPT_IPC_PEER_PID on modern macOS systemsRichard Markiewicz2020-06-15
|
* layout and wording fixesGarrett D'Amore2020-05-27
|
* fixes #1007 nngcat should accept data from stdinEvan Haas2020-05-25
| | | | | | Allows passing a filename of `-` to the `--file` option in order to read from stdin. Also removes the requirement for the file to be seekable - this allows nngcat to be used as part of a shell pipeline, or with other non-seekable files
* fix typo in nng_cv_wait exampleDavid Horsley2020-05-25
|
* nng_url.5 related doc updatesGarrett D'Amore2020-05-25
|
* Yet more cross reference fixesGarrett D'Amore2020-05-25
|
* Cross reference fixups.Garrett D'Amore2020-05-25
|
* Added nng_url.5 man page.Garrett D'Amore2020-05-25
|
* Remove more dead TLS references in docsGarrett D'Amore2020-05-25
|
* more documentation fixupsGarrett D'Amore2020-05-25
|
* Remove dead references from libnng overview.Garrett D'Amore2020-05-25
|
* fixes #1241 SIGSEGV in RepReq's rep0 recv - use after freeGarrett D'Amore2020-05-25
| | | | | This also affects the respondent protocol. Examination of the other protocols did not turn up any evidence of the same issue.
* Clean up section descriptionsGarrett D'Amore2020-05-24
|
* Note commercial TLS and FIPS support.Garrett D'Amore2020-05-24
|
* Section 3TCP is defunct.Garrett D'Amore2020-05-24
|
* fixes #1230 NNG_OPT_RECONNMAXT zero does not prevent exponential back-offGarrett D'Amore2020-05-24
|
* fixes #1239 Use after free in tlsGarrett D'Amore2020-05-23
| | | | | Also, addressed a number of Clang-tidy complaints. Potential hangs in close addressed as well.
* Tests for sending large amounts of data over NNG TLS streams.Garrett D'Amore2020-05-23
| | | | | This also starts the test framework NNG streams, so that we can test those more directly.
* Add vcpkg installation instructionswangli282020-05-22
|
* Add vcpkg installation instructionswangli282020-05-22
|
* fixes #1236 Deadlock triggered on nng_closeGarrett D'Amore2020-05-17
| | | | fixes #1219 nng_close occasionally hang on Windows
* fixes #1237 atomic library check is backwardsGarrett D'Amore2020-05-04
|