commsfwtools/commstools/utracedecoder/data/ipmessages.definition.txt
changeset 0 dfb7c4ff071f
child 29 9644881fedd0
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 
       
     2 INCLUDE "esockmessages.definition.txt"
       
     3 
       
     4 CONST KIPProtoRealmId = 0x10281DED
       
     5 CONST KIPTranportRealmId = 0x102822DA
       
     6 
       
     7 ENUM IPProto_MessageId : UINT16
       
     8 	EIpProtoCprOpenCloseRoute = 1
       
     9 	EConfigureNetwork         = 2
       
    10 	ENetworkConfigured        = 3
       
    11 
       
    12 END ENUM
       
    13 
       
    14 ENUM IPTranport_Signatures : UINT32
       
    15 	ESigPolicyParams	= 3
       
    16 END ENUM
       
    17 
       
    18 ENUM IPTranport_MessageId : UINT16
       
    19 	ECFConnPolicyRequest	= 1
       
    20 	ECFPolicyRequest	= 2
       
    21 	ECFPolicyParams		= 3
       
    22 END ENUM
       
    23 
       
    24 // IPProto
       
    25 
       
    26 MESSAGE OpenCloseRoute
       
    27     SIGNATURE = TSigNumber
       
    28     MESSAGEID = KIPProtoRealmId:EIpProtoCprOpenCloseRoute
       
    29 END MESSAGE
       
    30 
       
    31 MESSAGE ConfigureNetwork
       
    32     SIGNATURE = TSigVoid
       
    33     MESSAGEID = KIPProtoRealmId:EConfigureNetwork
       
    34 END MESSAGE
       
    35 
       
    36 MESSAGE NetworkConfigured
       
    37     SIGNATURE = TSigNumber
       
    38     MESSAGEID = KIPProtoRealmId:ENetworkConfigured
       
    39 END MESSAGE
       
    40 
       
    41 // IP
       
    42 
       
    43 SIGNATURE TSigPolicyParams : TSignatureBase
       
    44 	TYPEID = KIPTranportRealmId:ESigPolicyParams
       
    45 	TAddrUpdate iAddrUpdate
       
    46 	Context_NodeId iSrcNodeId
       
    47 	Context_NodeId iFlowId
       
    48 	UINT32 iAppSid
       
    49 END SIGNATURE
       
    50 
       
    51 MESSAGE IPPolicyParams
       
    52     SIGNATURE = TSigPolicyParams
       
    53     MESSAGEID = KIPTranportRealmId:ECFPolicyParams
       
    54 END MESSAGE
       
    55 
       
    56 // Cpr Link
       
    57 
       
    58 CONST KESockCprLinkExtMessages = 0x10281DFE
       
    59 
       
    60 ENUM CprLink_Signatures : UINT32
       
    61 //	ECprRetrieveProgress			= 1
       
    62 //	ECprRetrieveLastProgressError		= 2
       
    63     ECprRequestServiceNotification		= 3
       
    64     ECprCancelServiceNotification		= 4
       
    65     ECprEnumerateSubConnections			= 5
       
    66     ECprSendIoctl				= 6
       
    67     ECprCancelIoctl				= 7
       
    68     ECprAllSubConnectionNotificationEnable	= 8
       
    69 
       
    70     ECprEnumerateConnections			= 9
       
    71 
       
    72     ECprGetConnectionSetting			= 10
       
    73 
       
    74     ELegacyDataMonitoringTransferredRequest	= 11
       
    75 //  ELegacyDataMonitoringNotificationRequest	= 12
       
    76     ELegacyDataMonitoringNotificationCancel	= 13
       
    77 
       
    78 //  ELegacySubConnectionActiveRequest		= 14
       
    79     ELegacyCancelSubConnectionActive		= 15
       
    80 //	ELegacyEnumerateSubConnections		= 16
       
    81 END ENUM
       
    82 
       
    83 
       
    84 SIGNATURE TCprRequestServiceNotification : TSignalBase
       
    85 	TYPEID = KESockCprLinkExtMessages:ECprRequestServiceNotification
       
    86 	Context_NodeId iSender
       
    87 END SIGNATURE
       
    88 
       
    89 MESSAGE CprRequestServiceNotification
       
    90     SIGNATURE = TCprRequestServiceNotification
       
    91     MESSAGEID = KESockCprLinkExtMessages:ECprRequestServiceNotification
       
    92 END MESSAGE
       
    93 
       
    94 SIGNATURE TCprCancelServiceNotification : TSignalBase
       
    95 	TYPEID = KESockCprLinkExtMessages:ECprCancelServiceNotification
       
    96 	Context_NodeId iSender
       
    97 END SIGNATURE
       
    98 
       
    99 MESSAGE CprCancelServiceNotification
       
   100     SIGNATURE = TCprCancelServiceNotification
       
   101     MESSAGEID = KESockCprLinkExtMessages:ECprCancelServiceNotification
       
   102 END MESSAGE
       
   103 
       
   104 SIGNATURE TCprEnumerateSubConnections : TCFSigRMessage2Ext
       
   105 	TYPEID = KESockCprLinkExtMessages:ECprEnumerateSubConnections
       
   106 END SIGNATURE
       
   107 
       
   108 MESSAGE CprEnumerateSubConnections
       
   109     SIGNATURE = TCprEnumerateSubConnections
       
   110     MESSAGEID = KESockCprLinkExtMessages:ECprEnumerateSubConnections
       
   111 END MESSAGE
       
   112 
       
   113 SIGNATURE TCprSendIoctl : TCFSigRMessage2Ext
       
   114 	TYPEID = KESockCprLinkExtMessages:ECprSendIoctl
       
   115 END SIGNATURE
       
   116 
       
   117 MESSAGE CprSendIoctl
       
   118     SIGNATURE = TCprSendIoctl
       
   119     MESSAGEID = KESockCprLinkExtMessages:ECprSendIoctl
       
   120 END MESSAGE
       
   121 
       
   122 SIGNATURE TCprCancelIoctl : TCFSigRMessage2Ext
       
   123 	TYPEID = KESockCprLinkExtMessages:ECprCancelIoctl
       
   124 END SIGNATURE
       
   125 
       
   126 MESSAGE CprCancelIoctl
       
   127     SIGNATURE = TCprCancelIoctl
       
   128     MESSAGEID = KESockCprLinkExtMessages:ECprCancelIoctl
       
   129 END MESSAGE
       
   130 
       
   131 SIGNATURE TCprAllSubConnectionNotificationEnable : TSignalBase
       
   132 	TYPEID = KESockCprLinkExtMessages:ECprAllSubConnectionNotificationEnable
       
   133 END SIGNATURE
       
   134 
       
   135 MESSAGE CprAllSubConnectionNotificationEnable
       
   136     SIGNATURE = TCprAllSubConnectionNotificationEnable
       
   137     MESSAGEID = KESockCprLinkExtMessages:ECprAllSubConnectionNotificationEnable
       
   138 END MESSAGE
       
   139 
       
   140 SIGNATURE TCprEnumerateConnections : TSignalBase
       
   141 	TYPEID = KESockCprLinkExtMessages:ECprEnumerateConnections
       
   142 END SIGNATURE
       
   143 
       
   144 MESSAGE CprEnumerateConnections
       
   145     SIGNATURE = TCprEnumerateConnections
       
   146     MESSAGEID = KESockCprLinkExtMessages:ECprEnumerateConnections
       
   147 END MESSAGE
       
   148 
       
   149 SIGNATURE TLegacyDataMonitoringTransferredRequest : TCFSigRMessage2Ext
       
   150     TYPEID = KESockCprLinkExtMessages:ELegacyDataMonitoringTransferredRequest
       
   151 	UINT32 iClientId
       
   152 END SIGNATURE
       
   153 
       
   154 MESSAGE LegacyDataMonitoringTransferredRequest
       
   155     SIGNATURE = TLegacyDataMonitoringTransferredRequest
       
   156     MESSAGEID = KESockCprLinkExtMessages:ELegacyDataMonitoringTransferredRequest
       
   157 END MESSAGE
       
   158 
       
   159 MESSAGE LegacyDataMonitoringNotificationRequest
       
   160     SIGNATURE = TLegacyDataMonitoringNotificationRequest
       
   161     MESSAGEID = KESockCprLinkExtMessages:ELegacyDataMonitoringNotificationRequest
       
   162 END MESSAGE
       
   163 
       
   164 SIGNATURE TLegacyDataMonitoringNotificationCancel : TCFSigRMessage2Ext
       
   165     TYPEID = KESockCprLinkExtMessages:ELegacyDataMonitoringNotificationCancel
       
   166 	TDataMonitoringDirection iDirection
       
   167 	UINT32 iClientId
       
   168 END SIGNATURE
       
   169 
       
   170 MESSAGE LegacyDataMonitoringNotificationCancel
       
   171     SIGNATURE = TLegacyDataMonitoringNotificationCancel
       
   172     MESSAGEID = KESockCprLinkExtMessages:ELegacyDataMonitoringNotificationCancel
       
   173 END MESSAGE
       
   174 
       
   175 MESSAGE LegacySubConnectionActiveRequest
       
   176     SIGNATURE = TLegacySubConnectionActiveRequest
       
   177     MESSAGEID = KESockCprLinkExtMessages:ELegacySubConnectionActiveRequest
       
   178 END MESSAGE
       
   179 
       
   180 SIGNATURE TLegacyCancelSubConnectionActive : TCFSigRMessage2Ext
       
   181     TYPEID = KESockCprLinkExtMessages:ELegacyCancelSubConnectionActive
       
   182 END SIGNATURE
       
   183 
       
   184 MESSAGE LegacyCancelSubConnectionActive
       
   185     SIGNATURE = TLegacyCancelSubConnectionActive
       
   186     MESSAGEID = KESockCprLinkExtMessages:ELegacyCancelSubConnectionActive
       
   187 END MESSAGE
       
   188 
       
   189 //
       
   190 
       
   191 CONST KExtItfMsgImplementationUid = 0x102822F7
       
   192 
       
   193 ENUM EExtItfMessageId : UINT32
       
   194 	ECancelAndCloseAllClientExtItf = 3
       
   195 END ENUM
       
   196 
       
   197 SIGNATURE TCancelAndCloseAllClientExtItf : TSignalBase
       
   198 	TYPEID = KExtItfMsgImplementationUid:ECancelAndCloseAllClientExtItf
       
   199 	UINT32 iClientId
       
   200 END SIGNATURE
       
   201 
       
   202 CONST KQoSIpSCprMessagesRealmId = 0x10204307
       
   203 
       
   204 ENUM EQoSIpSCprMessagesId : UINT32
       
   205 	EOpenInternalSocket = 1
       
   206 	EInternalSocketOpened = 2
       
   207 END ENUM
       
   208 
       
   209 MESSAGE TOpenInternalSocket
       
   210     SIGNATURE = TSigVoid
       
   211     MESSAGEID = KQoSIpSCprMessagesRealmId:EOpenInternalSocket
       
   212 END MESSAGE
       
   213 
       
   214 MESSAGE TInternalSocketOpened
       
   215     SIGNATURE = TSigVoid
       
   216     MESSAGEID = KQoSIpSCprMessagesRealmId:EInternalSocketOpened
       
   217 END MESSAGE