Package io.sisu.nng.internal
Interface NngLibrary
-
- All Superinterfaces:
com.sun.jna.Library
- All Known Implementing Classes:
NngDirectLibrary
public interface NngLibrary extends com.sun.jna.Library
Covers nng v1.3.2
-
-
Method Summary
-
-
-
Method Detail
-
nng_strerror
java.lang.String nng_strerror(int err)
-
nng_version
java.lang.String nng_version()
-
nng_close
int nng_close(SocketStruct.ByValue socket)
-
nng_dial
int nng_dial(SocketStruct.ByValue socket, java.lang.String url, com.sun.jna.Pointer dialer, int flags)
-
nng_listen
int nng_listen(SocketStruct.ByValue socket, java.lang.String url, com.sun.jna.Pointer listener, int flags)
-
nng_recv
int nng_recv(SocketStruct.ByValue socket, java.nio.ByteBuffer data, SizeByReference size, int flags)
-
nng_send
int nng_send(SocketStruct.ByValue socket, java.nio.ByteBuffer data, Size size, int flags)
-
nng_socket_get
int nng_socket_get(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer val, SizeByReference size)
-
nng_socket_get_bool
int nng_socket_get_bool(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.ptr.IntByReference bool)
-
nng_socket_get_int
int nng_socket_get_int(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.ptr.IntByReference intRef)
-
nng_socket_get_size
int nng_socket_get_size(SocketStruct.ByValue s, java.lang.String opt, SizeByReference size)
-
nng_socket_get_uint64
int nng_socket_get_uint64(SocketStruct.ByValue s, java.lang.String opt, UInt64ByReference uint64)
-
nng_socket_get_string
int nng_socket_get_string(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer strings)
-
nng_socket_get_ptr
int nng_socket_get_ptr(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer pointer)
-
nng_socket_get_ms
int nng_socket_get_ms(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.ptr.IntByReference duration)
-
nng_socket_get_addr
int nng_socket_get_addr(SocketStruct.ByValue s, java.lang.String opt, SockAddr addr)
-
nng_socket_set
int nng_socket_set(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer val, Size size)
-
nng_socket_set_bool
int nng_socket_set_bool(SocketStruct.ByValue s, java.lang.String opt, boolean bool)
-
nng_socket_set_int
int nng_socket_set_int(SocketStruct.ByValue s, java.lang.String opt, int intRef)
-
nng_socket_set_size
int nng_socket_set_size(SocketStruct.ByValue s, java.lang.String opt, Size size)
-
nng_socket_set_uint64
int nng_socket_set_uint64(SocketStruct.ByValue s, java.lang.String opt, UInt64 uint64)
-
nng_socket_set_string
int nng_socket_set_string(SocketStruct.ByValue s, java.lang.String opt, java.lang.String string)
-
nng_socket_set_ptr
int nng_socket_set_ptr(SocketStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer pointer)
-
nng_socket_set_ms
int nng_socket_set_ms(SocketStruct.ByValue s, java.lang.String opt, int duration)
-
nng_socket_id
int nng_socket_id(SocketStruct.ByValue socket)
-
nng_dialer_close
int nng_dialer_close(DialerStruct.ByValue dialer)
-
nng_dialer_create
int nng_dialer_create(DialerStruct dialer, SocketStruct.ByValue socket, java.lang.String url)
-
nng_dialer_id
int nng_dialer_id(DialerStruct.ByValue dialer)
-
nng_dialer_start
int nng_dialer_start(DialerStruct.ByValue dialer, int flags)
-
nng_listener_close
int nng_listener_close(ListenerStruct.ByValue listener)
-
nng_listener_create
int nng_listener_create(ListenerStruct listener, SocketStruct.ByValue socket, java.lang.String url)
-
nng_listener_id
int nng_listener_id(ListenerStruct.ByValue listener)
-
nng_listener_start
int nng_listener_start(ListenerStruct.ByValue listener, int flags)
-
nng_pipe_close
int nng_pipe_close(PipeStruct.ByValue pipe)
-
nng_pipe_dialer
DialerStruct.ByValue nng_pipe_dialer(PipeStruct.ByValue pipe)
-
nng_pipe_id
PipeStruct.ByValue nng_pipe_id(PipeStruct.ByValue pipe)
-
nng_pipe_listener
ListenerStruct.ByValue nng_pipe_listener(PipeStruct.ByValue pipe)
-
nng_pipe_notify
int nng_pipe_notify(SocketStruct.ByValue socket, int pipeEvent, NngCallback cb, com.sun.jna.Pointer arg)
-
nng_pipe_socket
SocketStruct.ByValue nng_pipe_socket(PipeStruct.ByValue pipe)
-
nng_pipe_get
int nng_pipe_get(PipeStruct.ByValue pipe, java.lang.String opt, com.sun.jna.Pointer value, SizeByReference size)
-
nng_pipe_get_int
int nng_pipe_get_int(PipeStruct.ByValue pipe, java.lang.String opt, com.sun.jna.ptr.IntByReference value)
-
nng_pipe_get_ms
int nng_pipe_get_ms(PipeStruct.ByValue pipe, java.lang.String opt, com.sun.jna.ptr.IntByReference duration)
-
nng_pipe_get_ptr
int nng_pipe_get_ptr(PipeStruct.ByValue pipe, java.lang.String opt, com.sun.jna.ptr.PointerByReference ref)
-
nng_pipe_get_addr
int nng_pipe_get_addr(PipeStruct.ByValue pipe, java.lang.String opt, SockAddr addr)
-
nng_pipe_get_string
int nng_pipe_get_string(PipeStruct.ByValue pipe, java.lang.String opt, com.sun.jna.Pointer ref)
-
nng_pipe_get_size
int nng_pipe_get_size(PipeStruct.ByValue pipe, java.lang.String opt, SizeByReference size)
-
nng_pipe_get_uint64
int nng_pipe_get_uint64(PipeStruct.ByValue pipe, java.lang.String opt, UInt64 ref)
-
nng_msg_alloc
int nng_msg_alloc(MessageByReference msgRef, Size size)
-
nng_msg_append
int nng_msg_append(MessagePointer msg, com.sun.jna.Pointer p, Size size)
-
nng_msg_append
int nng_msg_append(MessagePointer msg, java.nio.Buffer buf, Size size)
-
nng_msg_append
int nng_msg_append(MessagePointer msg, byte[] buf, int size)
-
nng_msg_append_u16
int nng_msg_append_u16(MessagePointer msg, UInt16 val)
-
nng_msg_append_u32
int nng_msg_append_u32(MessagePointer msg, UInt32 val)
-
nng_msg_append_u64
int nng_msg_append_u64(MessagePointer msg, UInt64 val)
-
nng_msg_body
BodyPointer nng_msg_body(MessagePointer msg)
-
nng_msg_chop
int nng_msg_chop(MessagePointer msg, Size size)
-
nng_msg_chop_u16
int nng_msg_chop_u16(MessagePointer msg, UInt16 size)
-
nng_msg_chop_u32
int nng_msg_chop_u32(MessagePointer msg, UInt32 size)
-
nng_msg_chop_u64
int nng_msg_chop_u64(MessagePointer msg, UInt64 size)
-
nng_msg_clear
void nng_msg_clear(MessagePointer msg)
-
nng_msg_dup
int nng_msg_dup(MessageByReference dup, MessagePointer orig)
-
nng_msg_free
void nng_msg_free(MessagePointer msg)
-
nng_msg_get_pipe
PipeStruct.ByValue nng_msg_get_pipe(MessagePointer msg)
-
nng_msg_insert
int nng_msg_insert(MessagePointer msg, java.nio.ByteBuffer buf, Size size)
-
nng_msg_insert_u16
int nng_msg_insert_u16(MessagePointer msg, UInt16 size)
-
nng_msg_insert_u32
int nng_msg_insert_u32(MessagePointer msg, UInt32 size)
-
nng_msg_insert_u64
int nng_msg_insert_u64(MessagePointer msg, UInt64 size)
-
nng_msg_len
int nng_msg_len(MessagePointer msg)
-
nng_msg_realloc
int nng_msg_realloc(MessagePointer msg, Size size)
-
nng_msg_set_pipe
int nng_msg_set_pipe(MessagePointer msg, PipeStruct.ByValue pipe)
-
nng_msg_trim
int nng_msg_trim(MessagePointer msg, Size size)
-
nng_msg_trim_u16
int nng_msg_trim_u16(MessagePointer msg, UInt16ByReference size)
-
nng_msg_trim_u32
int nng_msg_trim_u32(MessagePointer msg, UInt32ByReference size)
-
nng_msg_trim_u64
int nng_msg_trim_u64(MessagePointer msg, UInt64ByReference size)
-
nng_recvmsg
int nng_recvmsg(SocketStruct.ByValue socket, MessageByReference msg, int flags)
-
nng_sendmsg
int nng_sendmsg(SocketStruct.ByValue socket, MessagePointer msg, int flags)
-
nng_msg_header
HeaderPointer nng_msg_header(MessagePointer msg)
-
nng_msg_header_append
int nng_msg_header_append(MessagePointer msg, java.nio.ByteBuffer buf, Size size)
-
nng_msg_header_chop
int nng_msg_header_chop(MessagePointer msg, Size size)
-
nng_msg_header_chop_u16
int nng_msg_header_chop_u16(MessagePointer msg, UInt16 size)
-
nng_msg_header_chop_u32
int nng_msg_header_chop_u32(MessagePointer msg, UInt32 size)
-
nng_msg_header_chop_u64
int nng_msg_header_chop_u64(MessagePointer msg, UInt64 size)
-
nng_msg_header_clear
void nng_msg_header_clear(MessagePointer msg)
-
nng_msg_header_insert
int nng_msg_header_insert(MessagePointer msg, java.nio.ByteBuffer buf, Size size)
-
nng_msg_header_len
int nng_msg_header_len(MessagePointer msg)
-
nng_msg_header_trim
int nng_msg_header_trim(MessagePointer msg, Size size)
-
nng_msg_header_trim_u16
int nng_msg_header_trim_u16(MessagePointer msg, UInt16 size)
-
nng_msg_header_trim_u32
int nng_msg_header_trim_u32(MessagePointer msg, UInt32 size)
-
nng_msg_header_trim_u64
int nng_msg_header_trim_u64(MessagePointer msg, UInt64 size)
-
nng_aio_abort
void nng_aio_abort(AioPointer aio, int err)
-
nng_aio_alloc
int nng_aio_alloc(AioPointerByReference aiop, NngCallback cb, com.sun.jna.Pointer arg)
-
nng_aio_begin
boolean nng_aio_begin(AioPointer aio)
-
nng_aio_cancel
void nng_aio_cancel(AioPointer aio)
-
nng_aio_count
int nng_aio_count(AioPointer aio)
-
nng_aio_defer
void nng_aio_defer(AioPointer aio, NngCallback fn, com.sun.jna.Pointer arg)
-
nng_aio_finish
void nng_aio_finish(AioPointer aio, int err)
-
nng_aio_free
void nng_aio_free(AioPointer aio)
-
nng_aio_get_input
com.sun.jna.Pointer nng_aio_get_input(AioPointer aio, int index)
-
nng_aio_get_msg
com.sun.jna.Pointer nng_aio_get_msg(AioPointer aio)
-
nng_aio_get_output
com.sun.jna.Pointer nng_aio_get_output(AioPointer aio, int index)
-
nng_aio_result
int nng_aio_result(AioPointer aio)
-
nng_aio_set_input
void nng_aio_set_input(AioPointer aio, int index, com.sun.jna.Pointer param)
-
nng_aio_set_iov
int nng_aio_set_iov(AioPointer aio, int niov, IovStruct[] iov)
-
nng_aio_set_msg
void nng_aio_set_msg(AioPointer aio, MessagePointer msg)
-
nng_aio_set_output
void nng_aio_set_output(AioPointer aio, int index, com.sun.jna.Pointer result)
-
nng_aio_set_timeout
void nng_aio_set_timeout(AioPointer aio, int timeoutMillis)
-
nng_aio_stop
void nng_aio_stop(AioPointer aio)
-
nng_aio_wait
void nng_aio_wait(AioPointer aio)
-
nng_recv_aio
void nng_recv_aio(SocketStruct.ByValue socket, AioPointer aio)
-
nng_send_aio
void nng_send_aio(SocketStruct.ByValue socket, AioPointer aio)
-
nng_sleep_aio
void nng_sleep_aio(int durationMills, AioPointer aio)
-
nng_bus0_open
int nng_bus0_open(SocketStruct socket)
-
nng_bus0_open_raw
int nng_bus0_open_raw(SocketStruct socket)
-
nng_pair0_open
int nng_pair0_open(SocketStruct socket)
-
nng_pair0_open_raw
int nng_pair0_open_raw(SocketStruct socket)
-
nng_pair1_open
int nng_pair1_open(SocketStruct socket)
-
nng_pair1_open_raw
int nng_pair1_open_raw(SocketStruct socket)
-
nng_pub0_open
int nng_pub0_open(SocketStruct socket)
-
nng_pub0_open_raw
int nng_pub0_open_raw(SocketStruct socket)
-
nng_pull0_open
int nng_pull0_open(SocketStruct socket)
-
nng_pull0_open_raw
int nng_pull0_open_raw(SocketStruct socket)
-
nng_push0_open
int nng_push0_open(SocketStruct socket)
-
nng_push0_open_raw
int nng_push0_open_raw(SocketStruct socket)
-
nng_rep0_open
int nng_rep0_open(SocketStruct socket)
-
nng_rep0_open_raw
int nng_rep0_open_raw(SocketStruct socket)
-
nng_req0_open
int nng_req0_open(SocketStruct socket)
-
nng_req0_open_raw
int nng_req0_open_raw(SocketStruct socket)
-
nng_respondent0_open
int nng_respondent0_open(SocketStruct socket)
-
nng_respondent0_open_raw
int nng_respondent0_open_raw(SocketStruct socket)
-
nng_sub0_open
int nng_sub0_open(SocketStruct socket)
-
nng_sub0_open_raw
int nng_sub0_open_raw(SocketStruct socket)
-
nng_surveyor0_open
int nng_surveyor0_open(SocketStruct socket)
-
nng_surveyor0_open_raw
int nng_surveyor0_open_raw(SocketStruct socket)
-
nng_ctx_close
int nng_ctx_close(ContextStruct.ByValue context)
-
nng_ctx_id
int nng_ctx_id(ContextStruct.ByValue context)
-
nng_ctx_open
int nng_ctx_open(ContextStruct context, SocketStruct.ByValue socket)
-
nng_ctx_recv
void nng_ctx_recv(ContextStruct.ByValue context, AioPointer aio)
-
nng_ctx_send
void nng_ctx_send(ContextStruct.ByValue context, AioPointer aio)
-
nng_ctx_get
int nng_ctx_get(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer val, SizeByReference size)
-
nng_ctx_get_bool
int nng_ctx_get_bool(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.ptr.IntByReference bool)
-
nng_ctx_get_int
int nng_ctx_get_int(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.ptr.IntByReference intRef)
-
nng_ctx_get_size
int nng_ctx_get_size(ContextStruct.ByValue s, java.lang.String opt, SizeByReference size)
-
nng_ctx_get_uint64
int nng_ctx_get_uint64(ContextStruct.ByValue s, java.lang.String opt, UInt64ByReference uint64)
-
nng_ctx_get_string
int nng_ctx_get_string(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer strings)
-
nng_ctx_get_ptr
int nng_ctx_get_ptr(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer pointer)
-
nng_ctx_get_ms
int nng_ctx_get_ms(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.ptr.IntByReference duration)
-
nng_ctx_get_addr
int nng_ctx_get_addr(ContextStruct.ByValue s, java.lang.String opt, SockAddr addr)
-
nng_ctx_set
int nng_ctx_set(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer val, Size size)
-
nng_ctx_set_bool
int nng_ctx_set_bool(ContextStruct.ByValue s, java.lang.String opt, boolean bool)
-
nng_ctx_set_int
int nng_ctx_set_int(ContextStruct.ByValue s, java.lang.String opt, int intRef)
-
nng_ctx_set_size
int nng_ctx_set_size(ContextStruct.ByValue s, java.lang.String opt, Size size)
-
nng_ctx_set_uint64
int nng_ctx_set_uint64(ContextStruct.ByValue s, java.lang.String opt, UInt64 uint64)
-
nng_ctx_set_string
int nng_ctx_set_string(ContextStruct.ByValue s, java.lang.String opt, java.lang.String string)
-
nng_ctx_set_ptr
int nng_ctx_set_ptr(ContextStruct.ByValue s, java.lang.String opt, com.sun.jna.Pointer pointer)
-
nng_ctx_set_ms
int nng_ctx_set_ms(ContextStruct.ByValue s, java.lang.String opt, int duration)
-
nng_url_parse
int nng_url_parse(UrlByReference urlPointer, java.lang.String rawUrl)
-
nng_url_free
void nng_url_free(UrlStruct url)
-
nng_http_conn_close
void nng_http_conn_close(com.sun.jna.Pointer client)
-
nng_http_conn_read
void nng_http_conn_read(com.sun.jna.Pointer client, AioPointer aio)
-
nng_http_conn_read_all
void nng_http_conn_read_all(com.sun.jna.Pointer conn, AioPointer aio)
-
nng_http_conn_read_req
void nng_http_conn_read_req(com.sun.jna.Pointer conn, HttpReqPointer req, AioPointer aio)
-
nng_http_conn_read_res
void nng_http_conn_read_res(com.sun.jna.Pointer conn, HttpResPointer res, AioPointer aio)
-
nng_http_conn_write_all
void nng_http_conn_write_all(com.sun.jna.Pointer conn, AioPointer aio)
-
nng_http_conn_write_req
void nng_http_conn_write_req(com.sun.jna.Pointer conn, HttpReqPointer req, AioPointer aio)
-
nng_http_conn_write_res
void nng_http_conn_write_res(com.sun.jna.Pointer conn, HttpResPointer res, AioPointer aio)
-
nng_http_req_add_header
int nng_http_req_add_header(HttpReqPointer req, java.lang.String key, java.lang.String val)
-
nng_http_req_alloc
int nng_http_req_alloc(HttpReqPointerByReference req, UrlStruct url)
-
nng_http_req_copy_data
int nng_http_req_copy_data(HttpReqPointer req, java.nio.ByteBuffer data, Size size)
-
nng_http_req_del_header
int nng_http_req_del_header(HttpReqPointer req, java.lang.String key)
-
nng_http_req_free
void nng_http_req_free(HttpReqPointer req)
-
nng_http_req_get_data
int nng_http_req_get_data(HttpReqPointer req, BodyPointerByReference ref, SizeByReference size)
-
nng_http_req_get_header
java.lang.String nng_http_req_get_header(HttpReqPointer req, java.lang.String key)
-
nng_http_req_get_method
java.lang.String nng_http_req_get_method(HttpReqPointer req)
-
nng_http_req_get_uri
java.lang.String nng_http_req_get_uri(HttpReqPointer req)
-
nng_http_req_get_version
java.lang.String nng_http_req_get_version(HttpReqPointer req)
-
nng_http_req_reset
void nng_http_req_reset(HttpReqPointer req)
-
nng_http_req_set_data
int nng_http_req_set_data(HttpReqPointer req, java.nio.ByteBuffer data, Size size)
-
nng_http_req_set_header
int nng_http_req_set_header(HttpReqPointer req, java.lang.String key, java.lang.String val)
-
nng_http_req_set_method
int nng_http_req_set_method(HttpReqPointer req, java.lang.String method)
-
nng_http_req_set_uri
int nng_http_req_set_uri(HttpReqPointer req, java.lang.String uri)
-
nng_http_req_set_version
int nng_http_req_set_version(HttpReqPointer req, java.lang.String version)
-
nng_http_res_add_header
int nng_http_res_add_header(HttpResPointer req, java.lang.String key, java.lang.String val)
-
nng_http_res_alloc
int nng_http_res_alloc(HttpResPointerByReference ref)
-
nng_http_res_alloc_error
int nng_http_res_alloc_error(HttpResPointerByReference ref, short status)
-
nng_http_res_copy_data
int nng_http_res_copy_data(HttpResPointer res, java.nio.ByteBuffer data, Size size)
-
nng_http_res_del_header
int nng_http_res_del_header(HttpResPointer res, java.lang.String key)
-
nng_http_res_free
void nng_http_res_free(HttpResPointer res)
-
nng_http_res_get_data
void nng_http_res_get_data(HttpResPointer res, BodyPointerByReference ref, SizeByReference size)
-
nng_http_res_get_header
java.lang.String nng_http_res_get_header(HttpResPointer res, java.lang.String key)
-
nng_http_res_get_reason
java.lang.String nng_http_res_get_reason(HttpResPointer res)
-
nng_http_res_get_status
short nng_http_res_get_status(HttpResPointer res)
-
nng_http_res_get_version
java.lang.String nng_http_res_get_version(HttpResPointer res)
-
nng_http_res_reset
void nng_http_res_reset(HttpResPointer res)
-
nng_http_res_set_data
int nng_http_res_set_data(HttpResPointer res, java.nio.ByteBuffer data, Size size)
-
nng_http_res_set_header
int nng_http_res_set_header(HttpResPointer res, java.lang.String key, java.lang.String val)
-
nng_http_res_set_reason
int nng_http_res_set_reason(HttpResPointer res, java.lang.String reason)
-
nng_http_res_set_status
int nng_http_res_set_status(HttpResPointer res, short status)
-
nng_http_res_set_version
int nng_http_res_set_version(HttpResPointer res, java.lang.String version)
-
nng_http_client_alloc
int nng_http_client_alloc(HttpClientPointerByReference client, UrlStruct url)
-
nng_http_client_free
void nng_http_client_free(HttpClientPointer client)
-
nng_http_client_connect
void nng_http_client_connect(HttpClientPointer client, AioPointer aio)
-
nng_http_handler_alloc_static
int nng_http_handler_alloc_static(HttpHandlerPointerByReference handlerRef, java.lang.String path, com.sun.jna.Pointer data, Size size, java.lang.String contentType)
-
nng_http_handler_free
void nng_http_handler_free(HttpHandlerPointer handler)
-
nng_http_server_add_handler
int nng_http_server_add_handler(HttpServerPointer server, HttpHandlerPointer handler)
-
nng_http_server_del_handler
int nng_http_server_del_handler(HttpServerPointer server, HttpHandlerPointer handler)
-
nng_http_server_get_addr
int nng_http_server_get_addr(HttpServerPointer server, SockAddr addr)
-
nng_http_server_hold
int nng_http_server_hold(HttpServerPointerByReference serverRef, UrlStruct url)
-
nng_http_server_release
void nng_http_server_release(HttpServerPointer server)
-
nng_http_server_start
int nng_http_server_start(HttpServerPointer server)
-
nng_http_server_stop
void nng_http_server_stop(HttpServerPointer server)
-
nng_tls_config_alloc
int nng_tls_config_alloc(TlsConfigByReference ref, int mode)
-
nng_tls_config_auth_mode
int nng_tls_config_auth_mode(TlsConfigPointer cfg, int mode)
-
nng_tls_config_ca_chain
int nng_tls_config_ca_chain(TlsConfigPointer cfg, java.lang.String chain, java.lang.String crl)
-
nng_tls_config_ca_file
int nng_tls_config_ca_file(TlsConfigPointer cfg, java.lang.String path)
-
nng_tls_config_cert_key_file
int nng_tls_config_cert_key_file(TlsConfigPointer cfg, java.lang.String pathToKey, java.lang.String password)
-
nng_tls_config_free
int nng_tls_config_free(TlsConfigPointer cfg)
-
nng_tls_config_hold
int nng_tls_config_hold(TlsConfigPointer cfg)
-
nng_tls_config_own_cert
int nng_tls_config_own_cert(TlsConfigPointer cfg, java.lang.String cert, java.lang.String key, java.lang.String password)
-
nng_tls_config_server_name
int nng_tls_config_server_name(TlsConfigPointer cfg, java.lang.String serverName)
-
nng_tls_config_version
int nng_tls_config_version(TlsConfigPointer cfg, int minVersion, int maxVersion)
-
nng_tls_engine_description
java.lang.String nng_tls_engine_description()
-
nng_tls_engine_fips_mode
boolean nng_tls_engine_fips_mode()
-
nng_tls_engine_name
java.lang.String nng_tls_engine_name()
-
-