GsmRoutePrint

From IRON Test Suite
Jump to navigation Jump to search

DESCRIPTION

This command writes to the standard output the list of all active SIP to Gsm port routes.

COMMAND

Command Input arguments Returns
GsmRoutePrint None List of active Sip to GSM port routes

OUTPUT

List all active SIP to GSM port routes.

EXAMPLE

~# GsmRoutePrint
192.168.196.166 ANY
192.168.196.166 2

API

MessageCode: GRA_GSM_ROUTE_PRINT_REQUEST

MESSAGE BODY
Field Name Length Description
Unused 4 Dummy unused parameter

The format of Message Body can be coded as the following C-language structure:

typedef struct
{
   ULONG    Unused;
} GRAM_GSM_ROUTE_PRINT_REQUEST;

MessageCode: GRA_GSM_ROUTE_PRINT_CONFIRM

MESSAGE BODY
Field Name Length Description
Status 4 Command status (0 if successful, otherwise see list of Error Codes Values)
GsmRouteList 2048 List of all active SIP to GSM port routes

The format of Message Body can be coded as the following C-language structure:

typedef struct 
{
   ULONG    Status;
   UCHAR    GsmRouteList[2048];
} GRAM_GSM_ROUTE_PRINT_CONFIRM;