Qpid Proton C 0.40.0
 
Loading...
Searching...
No Matches
API data types

Additional data types used in the API. More...

Classes

struct  pn_bytes_t
 A const byte buffer. More...
 
struct  pn_rwbytes_t
 A non-const byte buffer. More...
 

Macros

#define PN_MILLIS_MAX
 The maximum value for pn_millis_t.
 

Typedefs

typedef uint32_t pn_sequence_t
 A sequence number.
 
typedef uint32_t pn_frame_count_t
 A count or limit of AMQP transfer frames.
 
typedef uint32_t pn_millis_t
 A span of time in milliseconds.
 
typedef uint32_t pn_seconds_t
 A span of time in seconds.
 

Functions

pn_bytes_t pn_bytes (size_t size, const char *start)
 Create a pn_bytes_t.
 
pn_rwbytes_t pn_rwbytes (size_t size, char *start)
 Create a pn_rwbytes_t.
 

Detailed Description

Additional data types used in the API.


Class Documentation

◆ pn_bytes_t

struct pn_bytes_t

A const byte buffer.

Class Members
size_t size
const char * start

◆ pn_rwbytes_t

struct pn_rwbytes_t

A non-const byte buffer.

Examples
broker.c, direct.c, receive.c, and send.c.
Class Members
size_t size
char * start