When the endpoint type is MSP_ENDPOINT_RTPFDX, MSP_ENDPOINT_RTPIN, or MSP_ENDPOINT_RTPOUT, the application provides the following endpoint address information:
typedef struct tag_RTPRTCP_ENDPOINT_ADDR
{
char DestIpAddress[20];
WORD nDestPort;
char SrcIpAddress[20];
WORD nSrcPort;
} RTPRTCP_ENDPOINT_ADDR;
|
Field |
Type |
Default |
Units |
Description |
|
pDestIpAddress[20] |
char |
N/A |
N/A |
Destination IPv4 address in dot notation.
Note: NULL for RTP simplex receive (MSP_ENDPOINT_RTPIN ) endpoints.
|
|
nDestPort |
WORD |
N/A |
N/A |
Destination port number.
Note: NULL for RTP simplex receive (MSP_ENDPOINT_RTPIN) endpoints.
|
|
pSrcIpAddress[20] |
char |
N/A |
N/A |
Source IPv4 address in dot notation.
Note: NULL for RTP simplex send (MSP_ENDPOINT_RTPOUT) endpoints.
|
|
nSrcPort |
WORD |
N/A |
N/A |
Source port number.
Note: NULL for RTP simplex SEND (MSP_ENDPOINT_RTPOUT) endpoints.
|