pynetdicom.pdu.A_ABORT_RQ¶
- class pynetdicom.pdu.A_ABORT_RQ[source][source]¶
An A-ABORT-RQ PDU.
An A-ABORT-RQ PDU is used to abort the association.
- pdu_length¶
The number of bytes from the first byte following the PDU Length field to the last byte of the PDU.
- Type
Notes
An A-ABORT-RQ PDU requires the following parameters:
PDU type (1, fixed value, 0x06)
PDU length (1, fixed value, 4)
Source (1)
Reason/Diagnostic (1)
Encoding
When encoded, an A-ABORT-RQ PDU has the following structure, taken from Table 9-26 1 (offsets shown with Python indexing). PDUs are always encoded using Big Endian 2.
Offset
Length
Description
0
1
PDU type
1
1
Reserved
2
4
PDU length
6
1
Reserved
7
1
Reserved
8
1
Source
9
1
Reason/Diagnostic
References
Methods
__init__()Initialise a new A-ABORT-RQ PDU.
decode(bytestream)Decode bytestream and use the result to set the field values of the PDU.
encode()Return the encoded PDU as bytes.
from_primitive(primitive)Setup the current PDU using an A-ABORT or A-P-ABORT primitive.
to_primitive()Return an A-ABORT or A-P-ABORT primitive from the current PDU.
Attributes
Return the PDU Length field value as an int.
Return the PDU Type field value an int.
reason_strReturn a str description of the Reason/Diagnostic field value.
source_strReturn a str description of the Source field value.