|
pn_transport_t * | pn_transport (void) |
| Factory for creating a transport.
|
|
void | pn_transport_set_server (pn_transport_t *transport) |
| Configure a transport as a server.
|
|
void | pn_transport_free (pn_transport_t *transport) |
| Free a transport object.
|
|
const char * | pn_transport_get_user (pn_transport_t *transport) |
| Retrieve the authenticated user.
|
|
void | pn_transport_require_auth (pn_transport_t *transport, bool required) |
| Set whether a non-authenticated transport connection is allowed.
|
|
bool | pn_transport_is_authenticated (pn_transport_t *transport) |
| Tell whether the transport connection is authenticated.
|
|
void | pn_transport_require_encryption (pn_transport_t *transport, bool required) |
| Set whether a non encrypted transport connection is allowed.
|
|
bool | pn_transport_is_encrypted (pn_transport_t *transport) |
| Tell whether the transport connection is encrypted.
|
|
pn_condition_t * | pn_transport_condition (pn_transport_t *transport) |
| Get additional information about the condition of the transport.
|
|
pn_logger_t * | pn_transport_logger (pn_transport_t *transport) |
| Get the transport logger.
|
|
pn_error_t * | pn_transport_error (pn_transport_t *transport) |
| Deprecated - Use pn_transport_condition().
|
|
int | pn_transport_bind (pn_transport_t *transport, pn_connection_t *connection) |
| Deprecated - Use pn_connection_driver_init().
|
|
int | pn_transport_unbind (pn_transport_t *transport) |
| Deprecated - Use pn_connection_driver_destroy().
|
|
void | pn_transport_trace (pn_transport_t *transport, pn_trace_t trace) |
| Update a transports trace flags.
|
|
void | pn_transport_set_tracer (pn_transport_t *transport, pn_tracer_t tracer) |
| Set the tracing function used by a transport.
|
|
pn_tracer_t | pn_transport_get_tracer (pn_transport_t *transport) |
| Get the tracing function used by a transport.
|
|
void * | pn_transport_get_context (pn_transport_t *transport) |
| Get the application context that is associated with a transport object.
|
|
void | pn_transport_set_context (pn_transport_t *transport, void *context) |
| Set a new application context for a transport object.
|
|
pn_record_t * | pn_transport_attachments (pn_transport_t *transport) |
| Get the attachments that are associated with a transport object.
|
|
void | pn_transport_log (pn_transport_t *transport, const char *message) |
| Log a message using a transport's logging mechanism.
|
|
void | pn_transport_vlogf (pn_transport_t *transport, const char *fmt, va_list ap) |
| Log a printf formatted message using a transport's logging mechanism.
|
|
void | pn_transport_logf (pn_transport_t *transport, PN_PRINTF_FORMAT const char *fmt,...) PN_PRINTF_FORMAT_ATTR(2 |
| Log a printf formatted message using a transport's logging mechanism.
|
|
void uint16_t | pn_transport_get_channel_max (pn_transport_t *transport) |
| Get the maximum allowed channel for a transport.
|
|
int | pn_transport_set_channel_max (pn_transport_t *transport, uint16_t channel_max) |
| Set the maximum allowed channel number for a transport.
|
|
uint16_t | pn_transport_remote_channel_max (pn_transport_t *transport) |
| Get the maximum allowed channel of a transport's remote peer.
|
|
uint32_t | pn_transport_get_max_frame (pn_transport_t *transport) |
| Get the maximum frame size of a transport.
|
|
void | pn_transport_set_max_frame (pn_transport_t *transport, uint32_t size) |
| Set the maximum frame size of a transport.
|
|
uint32_t | pn_transport_get_remote_max_frame (pn_transport_t *transport) |
| Get the maximum frame size of a transport's remote peer.
|
|
pn_millis_t | pn_transport_get_idle_timeout (pn_transport_t *transport) |
| Get the idle timeout for a transport.
|
|
void | pn_transport_set_idle_timeout (pn_transport_t *transport, pn_millis_t timeout) |
| Set the idle timeout for a transport.
|
|
pn_millis_t | pn_transport_get_remote_idle_timeout (pn_transport_t *transport) |
| Get the idle timeout for a transport's remote peer.
|
|
ssize_t | pn_transport_input (pn_transport_t *transport, const char *bytes, size_t available) |
| Deprecated - Use the Connection driver API.
|
|
ssize_t | pn_transport_output (pn_transport_t *transport, char *bytes, size_t size) |
| Deprecated - Use the Connection driver API.
|
|
ssize_t | pn_transport_capacity (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
char * | pn_transport_tail (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
ssize_t | pn_transport_push (pn_transport_t *transport, const char *src, size_t size) |
| Deprecated - Use the Connection driver API.
|
|
int | pn_transport_process (pn_transport_t *transport, size_t size) |
| Deprecated - Use the Connection driver API.
|
|
int | pn_transport_close_tail (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
ssize_t | pn_transport_pending (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
const char * | pn_transport_head (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
ssize_t | pn_transport_peek (pn_transport_t *transport, char *dst, size_t size) |
| Deprecated - Use the Connection driver API.
|
|
void | pn_transport_pop (pn_transport_t *transport, size_t size) |
| Deprecated - Use the Connection driver API.
|
|
int | pn_transport_close_head (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
bool | pn_transport_quiesced (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
bool | pn_transport_head_closed (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
bool | pn_transport_tail_closed (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
bool | pn_transport_closed (pn_transport_t *transport) |
| Deprecated - Use the Connection driver API.
|
|
int64_t | pn_transport_tick (pn_transport_t *transport, int64_t now) |
| Process any pending transport timer events.
|
|
uint64_t | pn_transport_get_frames_output (const pn_transport_t *transport) |
| Deprecated - No replacement.
|
|
uint64_t | pn_transport_get_frames_input (const pn_transport_t *transport) |
| Deprecated - No replacement.
|
|
pn_connection_t * | pn_transport_connection (pn_transport_t *transport) |
| Access the AMQP Connection associated with the transport.
|
|