diff --git a/README.md b/README.md index 2baae92..3cc5009 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,8 @@ Each peer will send keep-alives to each other peer in the IPSC network at an int **KNOWN IPSC PACKET TYPES:** The following sections of this document will include various packet types. This is a list of currently known types and their meanings. Note: The names are arbitrarily chosen with the intention of being descriptive, and each is defined by what they've been "observed" to do in the wild. - CALL_CTL_1 = 0x61 | + CALL_CONFIRMATION = 0x05 Confirmation FROM the recipient of a confirmed call. + CALL_CTL_1 = 0x61 | CALL_CTL_2 = 0x62 | Call control messages, exact use unknown CALL_CTL_3 = 0x63 | XCMP_XNL = 0x70 Control protocol messages diff --git a/ipsc/ipsc_message_types.py b/ipsc/ipsc_message_types.py index a60d395..9fc7820 100644 --- a/ipsc/ipsc_message_types.py +++ b/ipsc/ipsc_message_types.py @@ -7,7 +7,7 @@ # California, 94041, USA. # Known IPSC Message Types -PVT_CALL_SETUP = b'\x05' # Something to do with private call setup +CALL_CONFIRMATION = b'\x05' # Confirmation FROM the recipient of a confirmed call. CALL_CTL_1 = b'\x61' # | CALL_CTL_2 = b'\x62' # | Exact meaning unknown CALL_CTL_3 = b'\x63' # |