Module operation

Source
Expand description

Types and interfaces associated with the supported OBEX operations.

Structs§

Packet
An OBEX Packet that can be encoded/decoded to/from a raw byte buffer. This is sent over the L2CAP or RFCOMM transport.
SetPathFlags
The flags used in a SetPath operation. Defined in OBEX 1.5 Section 3.4.6.1.

Enums§

OpCode
ResponseCode
Response codes that an OBEX server may send to the Client after receiving a request. The most significant bit of the response code is the Final Bit. This is always set in OBEX response codes - see OBEX 1.5 Section 3.2. Defined in OBEX 1.5 Section 3.2.1.

Constants§

MAX_PACKET_SIZE
The maximum length of an OBEX packet is bounded by the 2-byte field describing the packet length (u16::MAX). Defined in OBEX 1.5 Section 3.4.1.3.
MIN_MAX_PACKET_SIZE
The minimum size of the OBEX maximum packet length is 255 bytes. Defined in OBEX 1.5. Section 3.4.1.4.

Type Aliases§

RequestPacket
An OBEX request packet. Defined in OBEX 1.5 Section 3.1.
ResponsePacket
An OBEX response packet. Defined in OBEX 1.5 Section 3.2.