Add protocol extension for multi-client-compatible ping support

This commit is contained in:
Cameron Gutman
2023-02-12 01:23:25 -06:00
parent 5e14dbc15e
commit dc186082a7
6 changed files with 54 additions and 19 deletions

View File

@@ -36,4 +36,9 @@ typedef struct _RTP_PACKET {
uint32_t ssrc;
} RTP_PACKET, *PRTP_PACKET;
typedef struct _SS_PING {
char payload[16];
uint32_t sequenceNumber;
} SS_PING, *PSS_PING;
#pragma pack(pop)