| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | wording fixup | Garrett D'Amore | 2025-10-11 |
| | | |||
| * | docs: convert http_handler_free doc | Garrett D'Amore | 2025-10-11 |
| | | |||
| * | fixes #2183 docs: convert AIO provider docs | Garrett D'Amore | 2025-10-10 |
| | | |||
| * | fixes #1868 Add nng_http_[remote,local]_address APIs. | Garrett D'Amore | 2025-10-09 |
| | | |||
| * | Minor doc fixups. | Garrett D'Amore | 2025-10-08 |
| | | |||
| * | More doc fixes for http (link fixes). | Garrett D'Amore | 2025-10-08 |
| | | |||
| * | HTTP markdown doc fixes | Garrett D'Amore | 2025-10-08 |
| | | |||
| * | options: string options are passed by reference | Garrett D'Amore | 2025-10-07 |
| | | | | | | | | This avoids needless allocations, and we offer for pipes (which need this because they might be ephemeral) the get_strdup, get_strcpy, and get_strlen forms. (Those do the copying or allocations while holding the pipe reference.) | ||
| * | http: implement nng_http_next_header | Garrett D'Amore | 2025-10-07 |
| | | |||
| * | fixes #2173 New TLS cert API - replaces the properties for CN and ALTNAMES. | Garrett D'Amore | 2025-10-05 |
| | | | | | | | This will replace the NNG_OPT_TLS_PEER_ALTNAMES and NNG_OPT_TLS_PEER_CN properties, and gives a bit more access to the certificate, as well as direct access to the raw DER form, which should allow use in other APIs. | ||
| * | Update msg.md | ryosga | 2025-07-28 |
| | | | | Modify the unmatched brackets in the sample code | ||
| * | Fix typos across docs, comments, and CMake | mochalins | 2025-06-02 |
| | | |||
| * | Converted property functions to use nng_err. | Garrett D'Amore | 2025-04-27 |
| | | |||
| * | docs: Fix reference to nng_fini | Garrett D'Amore | 2025-04-13 |
| | | |||
| * | http docs: documentation conversion for http handlers | Garrett D'Amore | 2025-01-15 |
| | | | | | This is not yet fully complete, but it's most of the content. | ||
| * | socketpair: use nng_err | Garrett D'Amore | 2025-01-14 |
| | | |||
| * | init: use nng_err | Garrett D'Amore | 2025-01-14 |
| | | |||
| * | docs: markup fix | Garrett D'Amore | 2025-01-14 |
| | | |||
| * | aio: more nng_err updates | Garrett D'Amore | 2025-01-14 |
| | | |||
| * | docs: pipe documentation | Garrett D'Amore | 2025-01-14 |
| | | | | | While here addressed some minor issues with http docs as well. | ||
| * | docs: update http docs for nng_http_status | Garrett D'Amore | 2025-01-12 |
| | | |||
| * | api: extend usage of nng_err | Garrett D'Amore | 2025-01-12 |
| | | | | | | | This replaces the int, and we will expand this further, as this makes it clear that the int is actually an error code and helps in debuggers that can provide symbolic values. | ||
| * | http: status and reason fixes (make it match docs) | Garrett D'Amore | 2025-01-12 |
| | | |||
| * | http: The big HTTP API refactoring of January 2025.v2.0.0-alpha.3http-client-trans | Garrett D'Amore | 2025-01-09 |
| | | | | | | | | | | | | | | | | | | | | | | | This represents a major change in the HTTP code base, consisting of a complete revamp of the HTTP API. The changes here are too numerous to mention, but the end result should be a vastly simpler API for both server and client applications. Many needless allocations were removed by providing fixed buffers for various parameters and headers when possible. A few bugs were fixed. Most especially we have fixed some bugs around very large URIs and headers, and we have also addressed conformance bugs to more closely conform to RFCs 9110 and 9112. As part of this work, the APIs for WebSockets changed slightly as well. In particular the properties available for accessing headers have changed. There is still documentation conversion work to do, and additional functionality (such as proper support for chunked transfers), but this is a big step in the right direction. | ||
| * | args: Convert nng_opts_parse into a header only library using `nng_args_parse`. | Garrett D'Amore | 2025-01-04 |
| | | | | | | | | | The API is identical, except that some names have changed, and this is now a header library in `nng/args.h` - so the core library does not need to carry this code in binaries. Being a header library also means it is not necessary to link against NNG, and it does not include any parts of NNG; it only depends on a standard C99 or C11 environment. | ||
| * | api: Promote idhash supplemental API to core | Garrett D'Amore | 2025-01-04 |
| | | |||
| * | api: rename nng_send_aio and nng_recv_aio to nng_socket_send and nng_socket_recv | Garrett D'Amore | 2025-01-04 |
| | | | | | This aligns more closely with the nng_ctx functions. | ||
| * | api: drop the 64-bit option accessors (no more 64-bit option types) | Garrett D'Amore | 2025-01-03 |
| | | |||
| * | docs: remove references to asterisk wildcard, other tweaks | Garrett D'Amore | 2025-01-02 |
| | | |||
| * | docs: document NNG_OPT_MAXTTL, other cleanups | Garrett D'Amore | 2025-01-02 |
| | | |||
| * | api: remove unused _uint64 options accessors for contexts and sockets | Garrett D'Amore | 2025-01-01 |
| | | | | | Also, clarification and add socket option docs for MAXRECVSZ, RECONNMINT, RECONNMAXT | ||
| * | docs: convert socket options to mdbook | Garrett D'Amore | 2025-01-01 |
| | | |||
| * | docs: convert the context docs to mdbook | Garrett D'Amore | 2025-01-01 |
| | | |||
| * | api: Remove the NNG_FLAG_ALLOC | Garrett D'Amore | 2025-01-01 |
| | | | | | | | | | This flag failed to provide real zero copy that it was intended for, and it also involved extra allocations. Further, the API for it was brittle and error prone. Modern code should just work directly with nng_msg structures. | ||
| * | docs: add missing msg header prototypes | Garrett D'Amore | 2025-01-01 |
| | | |||
| * | docs: converted and improved stream factory docs | Garrett D'Amore | 2025-01-01 |
| | | |||
| * | docs: add an example of nng_recv_aio with subv2.0.0-alpha.2 | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: convert socket receive docs | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | doc: document socket send API, including an example | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: remove stray backtick | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: convert nng_stream_get family | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | socket: rename nng_close to nng_socket_close | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: progress on socket document conversion | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: start of streams API documentation | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: API chapter index fixes | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: statistics updates, document nng_stat_parent (fixes #1896) | Garrett D'Amore | 2024-12-31 |
| | | |||
| * | docs: fix URL documentation | Garrett D'Amore | 2024-12-31 |
| | | | | | | | Document `nng_url_resolve_port`, make the structure opaque, fix port numbers to be uint32 (needed for some cases), and fix a missing `const` specifier. | ||
| * | aio: nng_aio_defer replaced by nng_aio_start | Garrett D'Amore | 2024-12-26 |
| | | | | | | This represents an API change, and we remove the nng_aio_begin function as well, introducing the lightweight nng_aio_reset instead. | ||
| * | aio: introduce NNG_ESTOPPED | Garrett D'Amore | 2024-12-26 |
| | | | | | | | | | | | | This error code results when an AIO is stopped permanently, as a result of nni_aio_close or nni_aio_stop. The associated AIO object cannot be used again. This discrimantes against a file being closed, or a temporary cancellation which might allow the aio to be reused. Consumers must check for this error status in their callbacks, and not resubmit an operation that failed with this error. Doing so, will result in an infinite loop of submit / errors. | ||
| * | Introduce accessors for nng_url struct and make it opaque. | Garrett D'Amore | 2024-11-18 |
| | | | | | | This provides safety by ensuring that applications do not depend on the size or layout of nng_url itself. | ||
