├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md └── workflows │ ├── R-CMD-check.yaml │ ├── check-no-suggests.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── CLAUDE.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── LICENSE.note ├── NAMESPACE ├── NEWS.md ├── R ├── aio.R ├── context.R ├── docs.R ├── listdial.R ├── messenger.R ├── nano.R ├── nanonext-package.R ├── ncurl.R ├── opts.R ├── sendrecv.R ├── socket.R ├── stats.R ├── stream.R ├── sync.R ├── tls.R └── utils.R ├── README.Rmd ├── README.md ├── cleanup ├── cleanup.win ├── codecov.yml ├── configure ├── configure.ucrt ├── configure.win ├── cran-comments.md ├── dev └── vignettes │ ├── _nanonext.Rmd │ └── precompile.R ├── inst └── CITATION ├── man ├── as.promise.ncurlAio.Rd ├── as.promise.recvAio.Rd ├── call_aio.Rd ├── close.Rd ├── collect_aio.Rd ├── context.Rd ├── cv.Rd ├── dial.Rd ├── dot-advance.Rd ├── dot-context.Rd ├── dot-keep.Rd ├── dot-read_header.Rd ├── dot-unresolved.Rd ├── figures │ └── logo.png ├── grapes-twiddle-greater-than-grapes.Rd ├── ip_addr.Rd ├── is_aio.Rd ├── is_error_value.Rd ├── listen.Rd ├── mclock.Rd ├── messenger.Rd ├── monitor.Rd ├── msleep.Rd ├── nano.Rd ├── nanonext-package.Rd ├── ncurl.Rd ├── ncurl_aio.Rd ├── ncurl_session.Rd ├── nng_error.Rd ├── nng_version.Rd ├── opt.Rd ├── parse_url.Rd ├── pipe_id.Rd ├── pipe_notify.Rd ├── protocols.Rd ├── random.Rd ├── read_stdin.Rd ├── reap.Rd ├── recv.Rd ├── recv_aio.Rd ├── reply.Rd ├── request.Rd ├── send.Rd ├── send_aio.Rd ├── serial_config.Rd ├── socket.Rd ├── start.Rd ├── stat.Rd ├── status_code.Rd ├── stop_aio.Rd ├── stop_request.Rd ├── stream.Rd ├── subscribe.Rd ├── survey_time.Rd ├── tls_config.Rd ├── transports.Rd ├── unresolved.Rd ├── write_cert.Rd ├── write_stdout.Rd └── zzz.Rd ├── nanonext.Rproj ├── pkgdown ├── _pkgdown.yml └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-48x48.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── src ├── .gitignore ├── Makevars.in ├── Makevars.ucrt ├── Makevars.win ├── aio.c ├── comms.c ├── core.c ├── init.c ├── mbedtls │ ├── CMakeLists.txt │ ├── LICENSE │ ├── cmake │ │ └── MbedTLSConfig.cmake.in │ ├── include │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── mbedtls │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── block_cipher.h │ │ │ ├── build_info.h │ │ │ ├── ccm.h │ │ │ ├── chacha20.h │ │ │ ├── chachapoly.h │ │ │ ├── check_config.h │ │ │ ├── cipher.h │ │ │ ├── cmac.h │ │ │ ├── config_adjust_legacy_crypto.h │ │ │ ├── config_adjust_ssl.h │ │ │ ├── config_adjust_x509.h │ │ │ ├── constant_time.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecp.h │ │ │ ├── entropy.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── hkdf.h │ │ │ ├── mbedtls_config.h │ │ │ ├── md.h │ │ │ ├── md5.h │ │ │ ├── net_sockets.h │ │ │ ├── nist_kw.h │ │ │ ├── oid.h │ │ │ ├── pem.h │ │ │ ├── pk.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs5.h │ │ │ ├── pkcs7.h │ │ │ ├── platform.h │ │ │ ├── platform_time.h │ │ │ ├── platform_util.h │ │ │ ├── poly1305.h │ │ │ ├── private_access.h │ │ │ ├── rsa.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sha512.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── ssl_ciphersuites.h │ │ │ ├── ssl_cookie.h │ │ │ ├── ssl_ticket.h │ │ │ ├── threading.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_crt.h │ │ │ └── x509_csr.h │ └── library │ │ ├── CMakeLists.txt │ │ ├── aes.c │ │ ├── aesce.c │ │ ├── aesce.h │ │ ├── aesni.c │ │ ├── aesni.h │ │ ├── alignment.h │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── base64_internal.h │ │ ├── bignum.c │ │ ├── bignum_core.c │ │ ├── bignum_core.h │ │ ├── bignum_internal.h │ │ ├── bignum_mod.h │ │ ├── block_cipher.c │ │ ├── block_cipher_internal.h │ │ ├── bn_mul.h │ │ ├── ccm.c │ │ ├── chacha20.c │ │ ├── chachapoly.c │ │ ├── check_crypto_config.h │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── cipher_wrap.h │ │ ├── cmac.c │ │ ├── common.h │ │ ├── constant_time.c │ │ ├── constant_time_impl.h │ │ ├── constant_time_internal.h │ │ ├── ctr.h │ │ ├── ctr_drbg.c │ │ ├── debug_internal.h │ │ ├── des.c │ │ ├── dhm.c │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ecp.c │ │ ├── ecp_curves.c │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── entropy_poll.h │ │ ├── error.c │ │ ├── gcm.c │ │ ├── hkdf.c │ │ ├── md.c │ │ ├── md5.c │ │ ├── md_wrap.h │ │ ├── net_sockets.c │ │ ├── nist_kw.c │ │ ├── oid.c │ │ ├── padlock.c │ │ ├── padlock.h │ │ ├── pem.c │ │ ├── pk.c │ │ ├── pk_ecc.c │ │ ├── pk_internal.h │ │ ├── pk_wrap.c │ │ ├── pk_wrap.h │ │ ├── pkcs12.c │ │ ├── pkcs5.c │ │ ├── pkcs7.c │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── pkwrite.h │ │ ├── platform.c │ │ ├── platform_util.c │ │ ├── poly1305.c │ │ ├── rsa.c │ │ ├── rsa_alt_helpers.c │ │ ├── rsa_alt_helpers.h │ │ ├── rsa_internal.h │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── ssl_cache.c │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_ciphersuites_internal.h │ │ ├── ssl_client.c │ │ ├── ssl_client.h │ │ ├── ssl_cookie.c │ │ ├── ssl_debug_helpers.h │ │ ├── ssl_misc.h │ │ ├── ssl_msg.c │ │ ├── ssl_ticket.c │ │ ├── ssl_tls.c │ │ ├── ssl_tls12_client.c │ │ ├── ssl_tls12_server.c │ │ ├── ssl_tls13_keys.h │ │ ├── threading.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crt.c │ │ ├── x509_csr.c │ │ ├── x509_internal.h │ │ ├── x509write.c │ │ ├── x509write_crt.c │ │ └── x509write_csr.c ├── nanonext.h ├── ncurl.c ├── net.c ├── nng │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── cmake │ │ ├── FindmbedTLS.cmake │ │ ├── NNGHelpers.cmake │ │ ├── NNGOptions.cmake │ │ └── nng-config.cmake.in │ ├── include │ │ └── nng │ │ │ ├── nng.h │ │ │ ├── protocol │ │ │ ├── bus0 │ │ │ │ └── bus.h │ │ │ ├── pair0 │ │ │ │ └── pair.h │ │ │ ├── pair1 │ │ │ │ └── pair.h │ │ │ ├── pipeline0 │ │ │ │ ├── pull.h │ │ │ │ └── push.h │ │ │ ├── pubsub0 │ │ │ │ ├── pub.h │ │ │ │ └── sub.h │ │ │ ├── reqrep0 │ │ │ │ ├── rep.h │ │ │ │ └── req.h │ │ │ └── survey0 │ │ │ │ ├── respond.h │ │ │ │ └── survey.h │ │ │ ├── supplemental │ │ │ ├── http │ │ │ │ └── http.h │ │ │ ├── tls │ │ │ │ ├── engine.h │ │ │ │ └── tls.h │ │ │ └── util │ │ │ │ ├── options.h │ │ │ │ └── platform.h │ │ │ └── transport │ │ │ ├── inproc │ │ │ └── inproc.h │ │ │ ├── ipc │ │ │ └── ipc.h │ │ │ ├── tcp │ │ │ └── tcp.h │ │ │ ├── tls │ │ │ └── tls.h │ │ │ └── ws │ │ │ └── websocket.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── core │ │ ├── CMakeLists.txt │ │ ├── aio.c │ │ ├── aio.h │ │ ├── defs.h │ │ ├── device.c │ │ ├── device.h │ │ ├── dialer.c │ │ ├── dialer.h │ │ ├── file.c │ │ ├── file.h │ │ ├── idhash.c │ │ ├── idhash.h │ │ ├── init.c │ │ ├── init.h │ │ ├── list.c │ │ ├── list.h │ │ ├── listener.c │ │ ├── listener.h │ │ ├── lmq.c │ │ ├── lmq.h │ │ ├── message.c │ │ ├── message.h │ │ ├── msgqueue.c │ │ ├── msgqueue.h │ │ ├── nng_impl.h │ │ ├── options.c │ │ ├── options.h │ │ ├── panic.c │ │ ├── panic.h │ │ ├── pipe.c │ │ ├── pipe.h │ │ ├── platform.h │ │ ├── pollable.c │ │ ├── pollable.h │ │ ├── protocol.h │ │ ├── reap.c │ │ ├── reap.h │ │ ├── socket.c │ │ ├── socket.h │ │ ├── sockfd.c │ │ ├── sockfd.h │ │ ├── sockimpl.h │ │ ├── stats.c │ │ ├── stats.h │ │ ├── stream.c │ │ ├── stream.h │ │ ├── strs.c │ │ ├── strs.h │ │ ├── taskq.c │ │ ├── taskq.h │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── thread.c │ │ ├── thread.h │ │ ├── url.c │ │ └── url.h │ │ ├── nng.c │ │ ├── platform │ │ ├── CMakeLists.txt │ │ ├── posix │ │ │ ├── CMakeLists.txt │ │ │ ├── posix_aio.h │ │ │ ├── posix_alloc.c │ │ │ ├── posix_atomic.c │ │ │ ├── posix_clock.c │ │ │ ├── posix_config.h │ │ │ ├── posix_debug.c │ │ │ ├── posix_file.c │ │ │ ├── posix_impl.h │ │ │ ├── posix_ipc.h │ │ │ ├── posix_ipcconn.c │ │ │ ├── posix_ipcdial.c │ │ │ ├── posix_ipclisten.c │ │ │ ├── posix_peerid.c │ │ │ ├── posix_peerid.h │ │ │ ├── posix_pipe.c │ │ │ ├── posix_pollq.h │ │ │ ├── posix_pollq_epoll.c │ │ │ ├── posix_pollq_kqueue.c │ │ │ ├── posix_pollq_poll.c │ │ │ ├── posix_pollq_port.c │ │ │ ├── posix_rand_arc4random.c │ │ │ ├── posix_rand_getrandom.c │ │ │ ├── posix_rand_urandom.c │ │ │ ├── posix_resolv_gai.c │ │ │ ├── posix_sockaddr.c │ │ │ ├── posix_socketpair.c │ │ │ ├── posix_sockfd.c │ │ │ ├── posix_tcp.h │ │ │ ├── posix_tcpconn.c │ │ │ ├── posix_tcpdial.c │ │ │ ├── posix_tcplisten.c │ │ │ ├── posix_thread.c │ │ │ └── posix_udp.c │ │ └── windows │ │ │ ├── CMakeLists.txt │ │ │ ├── win_clock.c │ │ │ ├── win_debug.c │ │ │ ├── win_file.c │ │ │ ├── win_impl.h │ │ │ ├── win_io.c │ │ │ ├── win_ipc.h │ │ │ ├── win_ipcconn.c │ │ │ ├── win_ipcdial.c │ │ │ ├── win_ipclisten.c │ │ │ ├── win_pipe.c │ │ │ ├── win_rand.c │ │ │ ├── win_resolv.c │ │ │ ├── win_sockaddr.c │ │ │ ├── win_socketpair.c │ │ │ ├── win_tcp.c │ │ │ ├── win_tcp.h │ │ │ ├── win_tcpconn.c │ │ │ ├── win_tcpdial.c │ │ │ ├── win_tcplisten.c │ │ │ ├── win_thread.c │ │ │ └── win_udp.c │ │ ├── sp │ │ ├── CMakeLists.txt │ │ ├── protocol.c │ │ ├── protocol │ │ │ ├── CMakeLists.txt │ │ │ ├── bus0 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── bus.c │ │ │ ├── pair0 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── pair.c │ │ │ ├── pair1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pair.c │ │ │ │ └── pair1_poly.c │ │ │ ├── pipeline0 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pull.c │ │ │ │ └── push.c │ │ │ ├── pubsub0 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pub.c │ │ │ │ ├── sub.c │ │ │ │ └── xsub.c │ │ │ ├── reqrep0 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── rep.c │ │ │ │ ├── req.c │ │ │ │ ├── xrep.c │ │ │ │ └── xreq.c │ │ │ └── survey0 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── respond.c │ │ │ │ ├── survey.c │ │ │ │ ├── xrespond.c │ │ │ │ └── xsurvey.c │ │ ├── transport.c │ │ ├── transport.h │ │ └── transport │ │ │ ├── CMakeLists.txt │ │ │ ├── inproc │ │ │ ├── CMakeLists.txt │ │ │ └── inproc.c │ │ │ ├── ipc │ │ │ ├── CMakeLists.txt │ │ │ └── ipc.c │ │ │ ├── socket │ │ │ ├── CMakeLists.txt │ │ │ └── sockfd.c │ │ │ ├── tcp │ │ │ ├── CMakeLists.txt │ │ │ └── tcp.c │ │ │ ├── tls │ │ │ ├── CMakeLists.txt │ │ │ └── tls.c │ │ │ └── ws │ │ │ ├── CMakeLists.txt │ │ │ └── websocket.c │ │ └── supplemental │ │ ├── CMakeLists.txt │ │ ├── base64 │ │ ├── CMakeLists.txt │ │ ├── base64.c │ │ └── base64.h │ │ ├── http │ │ ├── CMakeLists.txt │ │ ├── http_api.h │ │ ├── http_chunk.c │ │ ├── http_client.c │ │ ├── http_conn.c │ │ ├── http_msg.c │ │ ├── http_public.c │ │ ├── http_schemes.c │ │ └── http_server.c │ │ ├── sha1 │ │ ├── CMakeLists.txt │ │ ├── sha1.c │ │ └── sha1.h │ │ ├── tls │ │ ├── CMakeLists.txt │ │ ├── mbedtls │ │ │ ├── CMakeLists.txt │ │ │ └── tls.c │ │ ├── tls_api.h │ │ └── tls_common.c │ │ ├── util │ │ ├── CMakeLists.txt │ │ ├── options.c │ │ └── platform.c │ │ └── websocket │ │ ├── CMakeLists.txt │ │ ├── stub.c │ │ ├── websocket.c │ │ └── websocket.h ├── proto.c ├── sync.c ├── thread.c ├── tls.c └── utils.c ├── tests └── tests.R └── vignettes ├── .gitignore └── nanonext.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/check-no-suggests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.github/workflows/check-no-suggests.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: nanonext authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/LICENSE.note -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/aio.R -------------------------------------------------------------------------------- /R/context.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/context.R -------------------------------------------------------------------------------- /R/docs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/docs.R -------------------------------------------------------------------------------- /R/listdial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/listdial.R -------------------------------------------------------------------------------- /R/messenger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/messenger.R -------------------------------------------------------------------------------- /R/nano.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/nano.R -------------------------------------------------------------------------------- /R/nanonext-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/nanonext-package.R -------------------------------------------------------------------------------- /R/ncurl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/ncurl.R -------------------------------------------------------------------------------- /R/opts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/opts.R -------------------------------------------------------------------------------- /R/sendrecv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/sendrecv.R -------------------------------------------------------------------------------- /R/socket.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/socket.R -------------------------------------------------------------------------------- /R/stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/stats.R -------------------------------------------------------------------------------- /R/stream.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/stream.R -------------------------------------------------------------------------------- /R/sync.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/sync.R -------------------------------------------------------------------------------- /R/tls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/tls.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/README.md -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -rf src/Makevars build install 3 | -------------------------------------------------------------------------------- /cleanup.win: -------------------------------------------------------------------------------- 1 | rm -rf src/Makevars build install 2 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/codecov.yml -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/configure -------------------------------------------------------------------------------- /configure.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/configure.ucrt -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/configure.win -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/cran-comments.md -------------------------------------------------------------------------------- /dev/vignettes/_nanonext.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/dev/vignettes/_nanonext.Rmd -------------------------------------------------------------------------------- /dev/vignettes/precompile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/dev/vignettes/precompile.R -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/as.promise.ncurlAio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/as.promise.ncurlAio.Rd -------------------------------------------------------------------------------- /man/as.promise.recvAio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/as.promise.recvAio.Rd -------------------------------------------------------------------------------- /man/call_aio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/call_aio.Rd -------------------------------------------------------------------------------- /man/close.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/close.Rd -------------------------------------------------------------------------------- /man/collect_aio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/collect_aio.Rd -------------------------------------------------------------------------------- /man/context.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/context.Rd -------------------------------------------------------------------------------- /man/cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/cv.Rd -------------------------------------------------------------------------------- /man/dial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/dial.Rd -------------------------------------------------------------------------------- /man/dot-advance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/dot-advance.Rd -------------------------------------------------------------------------------- /man/dot-context.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/dot-context.Rd -------------------------------------------------------------------------------- /man/dot-keep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/dot-keep.Rd -------------------------------------------------------------------------------- /man/dot-read_header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/dot-read_header.Rd -------------------------------------------------------------------------------- /man/dot-unresolved.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/dot-unresolved.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/grapes-twiddle-greater-than-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/grapes-twiddle-greater-than-grapes.Rd -------------------------------------------------------------------------------- /man/ip_addr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/ip_addr.Rd -------------------------------------------------------------------------------- /man/is_aio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/is_aio.Rd -------------------------------------------------------------------------------- /man/is_error_value.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/is_error_value.Rd -------------------------------------------------------------------------------- /man/listen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/listen.Rd -------------------------------------------------------------------------------- /man/mclock.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/mclock.Rd -------------------------------------------------------------------------------- /man/messenger.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/messenger.Rd -------------------------------------------------------------------------------- /man/monitor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/monitor.Rd -------------------------------------------------------------------------------- /man/msleep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/msleep.Rd -------------------------------------------------------------------------------- /man/nano.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/nano.Rd -------------------------------------------------------------------------------- /man/nanonext-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/nanonext-package.Rd -------------------------------------------------------------------------------- /man/ncurl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/ncurl.Rd -------------------------------------------------------------------------------- /man/ncurl_aio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/ncurl_aio.Rd -------------------------------------------------------------------------------- /man/ncurl_session.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/ncurl_session.Rd -------------------------------------------------------------------------------- /man/nng_error.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/nng_error.Rd -------------------------------------------------------------------------------- /man/nng_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/nng_version.Rd -------------------------------------------------------------------------------- /man/opt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/opt.Rd -------------------------------------------------------------------------------- /man/parse_url.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/parse_url.Rd -------------------------------------------------------------------------------- /man/pipe_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/pipe_id.Rd -------------------------------------------------------------------------------- /man/pipe_notify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/pipe_notify.Rd -------------------------------------------------------------------------------- /man/protocols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/protocols.Rd -------------------------------------------------------------------------------- /man/random.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/random.Rd -------------------------------------------------------------------------------- /man/read_stdin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/read_stdin.Rd -------------------------------------------------------------------------------- /man/reap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/reap.Rd -------------------------------------------------------------------------------- /man/recv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/recv.Rd -------------------------------------------------------------------------------- /man/recv_aio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/recv_aio.Rd -------------------------------------------------------------------------------- /man/reply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/reply.Rd -------------------------------------------------------------------------------- /man/request.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/request.Rd -------------------------------------------------------------------------------- /man/send.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/send.Rd -------------------------------------------------------------------------------- /man/send_aio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/send_aio.Rd -------------------------------------------------------------------------------- /man/serial_config.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/serial_config.Rd -------------------------------------------------------------------------------- /man/socket.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/socket.Rd -------------------------------------------------------------------------------- /man/start.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/start.Rd -------------------------------------------------------------------------------- /man/stat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/stat.Rd -------------------------------------------------------------------------------- /man/status_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/status_code.Rd -------------------------------------------------------------------------------- /man/stop_aio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/stop_aio.Rd -------------------------------------------------------------------------------- /man/stop_request.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/stop_request.Rd -------------------------------------------------------------------------------- /man/stream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/stream.Rd -------------------------------------------------------------------------------- /man/subscribe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/subscribe.Rd -------------------------------------------------------------------------------- /man/survey_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/survey_time.Rd -------------------------------------------------------------------------------- /man/tls_config.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/tls_config.Rd -------------------------------------------------------------------------------- /man/transports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/transports.Rd -------------------------------------------------------------------------------- /man/unresolved.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/unresolved.Rd -------------------------------------------------------------------------------- /man/write_cert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/write_cert.Rd -------------------------------------------------------------------------------- /man/write_stdout.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/write_stdout.Rd -------------------------------------------------------------------------------- /man/zzz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/man/zzz.Rd -------------------------------------------------------------------------------- /nanonext.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/nanonext.Rproj -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/favicon-48x48.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- 1 | PKG_CFLAGS=@cflags@ $(C_VISIBILITY) 2 | PKG_LIBS=@libs@ 3 | -------------------------------------------------------------------------------- /src/Makevars.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/Makevars.ucrt -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/aio.c -------------------------------------------------------------------------------- /src/comms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/comms.c -------------------------------------------------------------------------------- /src/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/core.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/init.c -------------------------------------------------------------------------------- /src/mbedtls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/LICENSE -------------------------------------------------------------------------------- /src/mbedtls/cmake/MbedTLSConfig.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include("${CMAKE_CURRENT_LIST_DIR}/MbedTLSTargets.cmake") 4 | -------------------------------------------------------------------------------- /src/mbedtls/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | mbedtls/check_config 5 | -------------------------------------------------------------------------------- /src/mbedtls/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/aes.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/asn1.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/asn1write.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/base64.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/bignum.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/block_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/block_cipher.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/build_info.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ccm.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/chacha20.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/chachapoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/chachapoly.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/check_config.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/cipher.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/cmac.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/config_adjust_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/config_adjust_ssl.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/config_adjust_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/config_adjust_x509.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/constant_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/constant_time.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/debug.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/des.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/dhm.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ecdh.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ecp.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/entropy.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/error.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/gcm.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/hkdf.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/mbedtls_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/mbedtls_config.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/md.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/md5.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/net_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/net_sockets.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/nist_kw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/nist_kw.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/oid.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/pem.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/pk.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/pkcs7.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/platform.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/platform_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/platform_time.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/platform_util.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/poly1305.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/private_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/private_access.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/rsa.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/sha1.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/sha256.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/sha512.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ssl.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ssl_cache.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_ciphersuites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ssl_ciphersuites.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ssl_cookie.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/ssl_ticket.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/threading.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/timing.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/version.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/x509.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/include/mbedtls/x509_csr.h -------------------------------------------------------------------------------- /src/mbedtls/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/library/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/aes.c -------------------------------------------------------------------------------- /src/mbedtls/library/aesce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/aesce.c -------------------------------------------------------------------------------- /src/mbedtls/library/aesce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/aesce.h -------------------------------------------------------------------------------- /src/mbedtls/library/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/aesni.c -------------------------------------------------------------------------------- /src/mbedtls/library/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/aesni.h -------------------------------------------------------------------------------- /src/mbedtls/library/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/alignment.h -------------------------------------------------------------------------------- /src/mbedtls/library/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/asn1parse.c -------------------------------------------------------------------------------- /src/mbedtls/library/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/asn1write.c -------------------------------------------------------------------------------- /src/mbedtls/library/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/base64.c -------------------------------------------------------------------------------- /src/mbedtls/library/base64_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/base64_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/bignum.c -------------------------------------------------------------------------------- /src/mbedtls/library/bignum_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/bignum_core.c -------------------------------------------------------------------------------- /src/mbedtls/library/bignum_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/bignum_core.h -------------------------------------------------------------------------------- /src/mbedtls/library/bignum_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/bignum_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/bignum_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/bignum_mod.h -------------------------------------------------------------------------------- /src/mbedtls/library/block_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/block_cipher.c -------------------------------------------------------------------------------- /src/mbedtls/library/block_cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/block_cipher_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/bn_mul.h -------------------------------------------------------------------------------- /src/mbedtls/library/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ccm.c -------------------------------------------------------------------------------- /src/mbedtls/library/chacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/chacha20.c -------------------------------------------------------------------------------- /src/mbedtls/library/chachapoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/chachapoly.c -------------------------------------------------------------------------------- /src/mbedtls/library/check_crypto_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/check_crypto_config.h -------------------------------------------------------------------------------- /src/mbedtls/library/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/cipher.c -------------------------------------------------------------------------------- /src/mbedtls/library/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/cipher_wrap.c -------------------------------------------------------------------------------- /src/mbedtls/library/cipher_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/cipher_wrap.h -------------------------------------------------------------------------------- /src/mbedtls/library/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/cmac.c -------------------------------------------------------------------------------- /src/mbedtls/library/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/common.h -------------------------------------------------------------------------------- /src/mbedtls/library/constant_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/constant_time.c -------------------------------------------------------------------------------- /src/mbedtls/library/constant_time_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/constant_time_impl.h -------------------------------------------------------------------------------- /src/mbedtls/library/constant_time_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/constant_time_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ctr.h -------------------------------------------------------------------------------- /src/mbedtls/library/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ctr_drbg.c -------------------------------------------------------------------------------- /src/mbedtls/library/debug_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/debug_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/des.c -------------------------------------------------------------------------------- /src/mbedtls/library/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/dhm.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ecdh.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ecdsa.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ecp.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecp_curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ecp_curves.c -------------------------------------------------------------------------------- /src/mbedtls/library/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/entropy.c -------------------------------------------------------------------------------- /src/mbedtls/library/entropy_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/entropy_poll.c -------------------------------------------------------------------------------- /src/mbedtls/library/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/entropy_poll.h -------------------------------------------------------------------------------- /src/mbedtls/library/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/error.c -------------------------------------------------------------------------------- /src/mbedtls/library/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/gcm.c -------------------------------------------------------------------------------- /src/mbedtls/library/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/hkdf.c -------------------------------------------------------------------------------- /src/mbedtls/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/md.c -------------------------------------------------------------------------------- /src/mbedtls/library/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/md5.c -------------------------------------------------------------------------------- /src/mbedtls/library/md_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/md_wrap.h -------------------------------------------------------------------------------- /src/mbedtls/library/net_sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/net_sockets.c -------------------------------------------------------------------------------- /src/mbedtls/library/nist_kw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/nist_kw.c -------------------------------------------------------------------------------- /src/mbedtls/library/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/oid.c -------------------------------------------------------------------------------- /src/mbedtls/library/padlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/padlock.c -------------------------------------------------------------------------------- /src/mbedtls/library/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/padlock.h -------------------------------------------------------------------------------- /src/mbedtls/library/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pem.c -------------------------------------------------------------------------------- /src/mbedtls/library/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pk.c -------------------------------------------------------------------------------- /src/mbedtls/library/pk_ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pk_ecc.c -------------------------------------------------------------------------------- /src/mbedtls/library/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pk_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/pk_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pk_wrap.c -------------------------------------------------------------------------------- /src/mbedtls/library/pk_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pk_wrap.h -------------------------------------------------------------------------------- /src/mbedtls/library/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pkcs12.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pkcs5.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pkcs7.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pkparse.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pkwrite.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/pkwrite.h -------------------------------------------------------------------------------- /src/mbedtls/library/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/platform.c -------------------------------------------------------------------------------- /src/mbedtls/library/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/platform_util.c -------------------------------------------------------------------------------- /src/mbedtls/library/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/poly1305.c -------------------------------------------------------------------------------- /src/mbedtls/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/rsa.c -------------------------------------------------------------------------------- /src/mbedtls/library/rsa_alt_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/rsa_alt_helpers.c -------------------------------------------------------------------------------- /src/mbedtls/library/rsa_alt_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/rsa_alt_helpers.h -------------------------------------------------------------------------------- /src/mbedtls/library/rsa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/rsa_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/sha1.c -------------------------------------------------------------------------------- /src/mbedtls/library/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/sha256.c -------------------------------------------------------------------------------- /src/mbedtls/library/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/sha512.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_cache.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_ciphersuites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_ciphersuites.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_ciphersuites_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_ciphersuites_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_client.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_client.h -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_cookie.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_debug_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_debug_helpers.h -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_misc.h -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_msg.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_ticket.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_tls.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_tls12_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_tls12_client.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_tls12_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_tls12_server.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_tls13_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/ssl_tls13_keys.h -------------------------------------------------------------------------------- /src/mbedtls/library/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/threading.c -------------------------------------------------------------------------------- /src/mbedtls/library/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/timing.c -------------------------------------------------------------------------------- /src/mbedtls/library/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/version.c -------------------------------------------------------------------------------- /src/mbedtls/library/version_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/version_features.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509_create.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509_crl.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509_crt.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509_csr.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509_internal.h -------------------------------------------------------------------------------- /src/mbedtls/library/x509write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509write.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509write_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509write_crt.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509write_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/mbedtls/library/x509write_csr.c -------------------------------------------------------------------------------- /src/nanonext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nanonext.h -------------------------------------------------------------------------------- /src/ncurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/ncurl.c -------------------------------------------------------------------------------- /src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/net.c -------------------------------------------------------------------------------- /src/nng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/LICENSE.txt -------------------------------------------------------------------------------- /src/nng/cmake/FindmbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/cmake/FindmbedTLS.cmake -------------------------------------------------------------------------------- /src/nng/cmake/NNGHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/cmake/NNGHelpers.cmake -------------------------------------------------------------------------------- /src/nng/cmake/NNGOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/cmake/NNGOptions.cmake -------------------------------------------------------------------------------- /src/nng/cmake/nng-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/cmake/nng-config.cmake.in -------------------------------------------------------------------------------- /src/nng/include/nng/nng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/nng.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/bus0/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/bus0/bus.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/pair0/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/pair0/pair.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/pair1/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/pair1/pair.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/pipeline0/pull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/pipeline0/pull.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/pipeline0/push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/pipeline0/push.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/pubsub0/pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/pubsub0/pub.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/pubsub0/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/pubsub0/sub.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/reqrep0/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/reqrep0/rep.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/reqrep0/req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/reqrep0/req.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/survey0/respond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/survey0/respond.h -------------------------------------------------------------------------------- /src/nng/include/nng/protocol/survey0/survey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/protocol/survey0/survey.h -------------------------------------------------------------------------------- /src/nng/include/nng/supplemental/http/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/supplemental/http/http.h -------------------------------------------------------------------------------- /src/nng/include/nng/supplemental/tls/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/supplemental/tls/engine.h -------------------------------------------------------------------------------- /src/nng/include/nng/supplemental/tls/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/supplemental/tls/tls.h -------------------------------------------------------------------------------- /src/nng/include/nng/supplemental/util/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/supplemental/util/options.h -------------------------------------------------------------------------------- /src/nng/include/nng/supplemental/util/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/supplemental/util/platform.h -------------------------------------------------------------------------------- /src/nng/include/nng/transport/inproc/inproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/transport/inproc/inproc.h -------------------------------------------------------------------------------- /src/nng/include/nng/transport/ipc/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/transport/ipc/ipc.h -------------------------------------------------------------------------------- /src/nng/include/nng/transport/tcp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/transport/tcp/tcp.h -------------------------------------------------------------------------------- /src/nng/include/nng/transport/tls/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/transport/tls/tls.h -------------------------------------------------------------------------------- /src/nng/include/nng/transport/ws/websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/include/nng/transport/ws/websocket.h -------------------------------------------------------------------------------- /src/nng/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/core/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/aio.c -------------------------------------------------------------------------------- /src/nng/src/core/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/aio.h -------------------------------------------------------------------------------- /src/nng/src/core/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/defs.h -------------------------------------------------------------------------------- /src/nng/src/core/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/device.c -------------------------------------------------------------------------------- /src/nng/src/core/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/device.h -------------------------------------------------------------------------------- /src/nng/src/core/dialer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/dialer.c -------------------------------------------------------------------------------- /src/nng/src/core/dialer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/dialer.h -------------------------------------------------------------------------------- /src/nng/src/core/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/file.c -------------------------------------------------------------------------------- /src/nng/src/core/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/file.h -------------------------------------------------------------------------------- /src/nng/src/core/idhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/idhash.c -------------------------------------------------------------------------------- /src/nng/src/core/idhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/idhash.h -------------------------------------------------------------------------------- /src/nng/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/init.c -------------------------------------------------------------------------------- /src/nng/src/core/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/init.h -------------------------------------------------------------------------------- /src/nng/src/core/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/list.c -------------------------------------------------------------------------------- /src/nng/src/core/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/list.h -------------------------------------------------------------------------------- /src/nng/src/core/listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/listener.c -------------------------------------------------------------------------------- /src/nng/src/core/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/listener.h -------------------------------------------------------------------------------- /src/nng/src/core/lmq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/lmq.c -------------------------------------------------------------------------------- /src/nng/src/core/lmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/lmq.h -------------------------------------------------------------------------------- /src/nng/src/core/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/message.c -------------------------------------------------------------------------------- /src/nng/src/core/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/message.h -------------------------------------------------------------------------------- /src/nng/src/core/msgqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/msgqueue.c -------------------------------------------------------------------------------- /src/nng/src/core/msgqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/msgqueue.h -------------------------------------------------------------------------------- /src/nng/src/core/nng_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/nng_impl.h -------------------------------------------------------------------------------- /src/nng/src/core/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/options.c -------------------------------------------------------------------------------- /src/nng/src/core/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/options.h -------------------------------------------------------------------------------- /src/nng/src/core/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/panic.c -------------------------------------------------------------------------------- /src/nng/src/core/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/panic.h -------------------------------------------------------------------------------- /src/nng/src/core/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/pipe.c -------------------------------------------------------------------------------- /src/nng/src/core/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/pipe.h -------------------------------------------------------------------------------- /src/nng/src/core/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/platform.h -------------------------------------------------------------------------------- /src/nng/src/core/pollable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/pollable.c -------------------------------------------------------------------------------- /src/nng/src/core/pollable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/pollable.h -------------------------------------------------------------------------------- /src/nng/src/core/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/protocol.h -------------------------------------------------------------------------------- /src/nng/src/core/reap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/reap.c -------------------------------------------------------------------------------- /src/nng/src/core/reap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/reap.h -------------------------------------------------------------------------------- /src/nng/src/core/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/socket.c -------------------------------------------------------------------------------- /src/nng/src/core/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/socket.h -------------------------------------------------------------------------------- /src/nng/src/core/sockfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/sockfd.c -------------------------------------------------------------------------------- /src/nng/src/core/sockfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/sockfd.h -------------------------------------------------------------------------------- /src/nng/src/core/sockimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/sockimpl.h -------------------------------------------------------------------------------- /src/nng/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/stats.c -------------------------------------------------------------------------------- /src/nng/src/core/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/stats.h -------------------------------------------------------------------------------- /src/nng/src/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/stream.c -------------------------------------------------------------------------------- /src/nng/src/core/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/stream.h -------------------------------------------------------------------------------- /src/nng/src/core/strs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/strs.c -------------------------------------------------------------------------------- /src/nng/src/core/strs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/strs.h -------------------------------------------------------------------------------- /src/nng/src/core/taskq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/taskq.c -------------------------------------------------------------------------------- /src/nng/src/core/taskq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/taskq.h -------------------------------------------------------------------------------- /src/nng/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/tcp.c -------------------------------------------------------------------------------- /src/nng/src/core/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/tcp.h -------------------------------------------------------------------------------- /src/nng/src/core/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/thread.c -------------------------------------------------------------------------------- /src/nng/src/core/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/thread.h -------------------------------------------------------------------------------- /src/nng/src/core/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/url.c -------------------------------------------------------------------------------- /src/nng/src/core/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/core/url.h -------------------------------------------------------------------------------- /src/nng/src/nng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/nng.c -------------------------------------------------------------------------------- /src/nng/src/platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/platform/posix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_aio.h -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_alloc.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_atomic.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_clock.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_config.h -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_debug.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_file.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_impl.h -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_ipc.h -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_ipcconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_ipcconn.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_ipcdial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_ipcdial.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_ipclisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_ipclisten.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_peerid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_peerid.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_peerid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_peerid.h -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_pipe.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_pollq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_pollq.h -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_pollq_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_pollq_epoll.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_pollq_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_pollq_kqueue.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_pollq_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_pollq_poll.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_pollq_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_pollq_port.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_rand_arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_rand_arc4random.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_rand_getrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_rand_getrandom.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_rand_urandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_rand_urandom.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_resolv_gai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_resolv_gai.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_sockaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_sockaddr.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_socketpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_socketpair.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_sockfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_sockfd.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_tcp.h -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_tcpconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_tcpconn.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_tcpdial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_tcpdial.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_tcplisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_tcplisten.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_thread.c -------------------------------------------------------------------------------- /src/nng/src/platform/posix/posix_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/posix/posix_udp.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_clock.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_debug.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_file.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_impl.h -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_io.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_ipc.h -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_ipcconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_ipcconn.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_ipcdial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_ipcdial.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_ipclisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_ipclisten.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_pipe.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_rand.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_resolv.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_sockaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_sockaddr.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_socketpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_socketpair.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_tcp.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_tcp.h -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_tcpconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_tcpconn.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_tcpdial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_tcpdial.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_tcplisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_tcplisten.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_thread.c -------------------------------------------------------------------------------- /src/nng/src/platform/windows/win_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/platform/windows/win_udp.c -------------------------------------------------------------------------------- /src/nng/src/sp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/bus0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/bus0/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/bus0/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/bus0/bus.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pair0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pair0/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pair0/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pair0/pair.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pair1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pair1/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pair1/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pair1/pair.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pair1/pair1_poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pair1/pair1_poly.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pipeline0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pipeline0/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pipeline0/pull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pipeline0/pull.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pipeline0/push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pipeline0/push.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pubsub0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pubsub0/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pubsub0/pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pubsub0/pub.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pubsub0/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pubsub0/sub.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/pubsub0/xsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/pubsub0/xsub.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/reqrep0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/reqrep0/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/reqrep0/rep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/reqrep0/rep.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/reqrep0/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/reqrep0/req.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/reqrep0/xrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/reqrep0/xrep.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/reqrep0/xreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/reqrep0/xreq.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/survey0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/survey0/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/survey0/respond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/survey0/respond.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/survey0/survey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/survey0/survey.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/survey0/xrespond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/survey0/xrespond.c -------------------------------------------------------------------------------- /src/nng/src/sp/protocol/survey0/xsurvey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/protocol/survey0/xsurvey.c -------------------------------------------------------------------------------- /src/nng/src/sp/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport.c -------------------------------------------------------------------------------- /src/nng/src/sp/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport.h -------------------------------------------------------------------------------- /src/nng/src/sp/transport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/transport/inproc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/inproc/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/transport/inproc/inproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/inproc/inproc.c -------------------------------------------------------------------------------- /src/nng/src/sp/transport/ipc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/ipc/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/transport/ipc/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/ipc/ipc.c -------------------------------------------------------------------------------- /src/nng/src/sp/transport/socket/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/socket/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/transport/socket/sockfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/socket/sockfd.c -------------------------------------------------------------------------------- /src/nng/src/sp/transport/tcp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/tcp/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/transport/tcp/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/tcp/tcp.c -------------------------------------------------------------------------------- /src/nng/src/sp/transport/tls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/tls/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/transport/tls/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/tls/tls.c -------------------------------------------------------------------------------- /src/nng/src/sp/transport/ws/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/ws/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/sp/transport/ws/websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/sp/transport/ws/websocket.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/base64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/base64/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/base64/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/base64/base64.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/base64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/base64/base64.h -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_api.h -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_chunk.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_client.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_conn.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_msg.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_public.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_schemes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_schemes.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/http/http_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/http/http_server.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/sha1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/sha1/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/sha1/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/sha1/sha1.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/sha1/sha1.h -------------------------------------------------------------------------------- /src/nng/src/supplemental/tls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/tls/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/tls/mbedtls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/tls/mbedtls/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/tls/mbedtls/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/tls/mbedtls/tls.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/tls/tls_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/tls/tls_api.h -------------------------------------------------------------------------------- /src/nng/src/supplemental/tls/tls_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/tls/tls_common.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/util/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/util/options.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/util/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/util/platform.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/websocket/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/websocket/CMakeLists.txt -------------------------------------------------------------------------------- /src/nng/src/supplemental/websocket/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/websocket/stub.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/websocket/websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/websocket/websocket.c -------------------------------------------------------------------------------- /src/nng/src/supplemental/websocket/websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/nng/src/supplemental/websocket/websocket.h -------------------------------------------------------------------------------- /src/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/proto.c -------------------------------------------------------------------------------- /src/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/sync.c -------------------------------------------------------------------------------- /src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/thread.c -------------------------------------------------------------------------------- /src/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/tls.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/src/utils.c -------------------------------------------------------------------------------- /tests/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/tests/tests.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /vignettes/nanonext.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/nanonext/HEAD/vignettes/nanonext.Rmd --------------------------------------------------------------------------------