T38UDP endpoint address structure

When the endpoint type is MSP_ENDPOINT_T38FDX, the application provides the following endpoint address information:

typedef struct tag_T38UDP_ENDPOINT_ADDR
{
    // UDP parameters  
    char   DestIpAddress[20];   
    WORD   nDestPort;           
    char   SourceIpAddress[20];
    WORD   nSourcePort;         
    
} T38UDP_ENDPOINT_ADDR;

T38UDP_ENDPOINT_ADDR

Dependent function: mspCreateEndpoint

Field

Type

Default

Units

Description

pDestIpAddress[20]

char

N/A

N/A

Destination IPv4 address in dot notation.

nDestPort

WORD

N/A

N/A

Destination UDP port number.

pSourceIpAddress[20]

char

N/A

N/A

Source IPv4 address in dot notation.

nSourcePort

WORD

N/A

N/A

Source UDP port number.