CN1302649C - Method for realizing message transmission and transaction reliability processing of media gateway control protocol - Google Patents
Method for realizing message transmission and transaction reliability processing of media gateway control protocol Download PDFInfo
- Publication number
- CN1302649C CN1302649C CNB031032796A CN03103279A CN1302649C CN 1302649 C CN1302649 C CN 1302649C CN B031032796 A CNB031032796 A CN B031032796A CN 03103279 A CN03103279 A CN 03103279A CN 1302649 C CN1302649 C CN 1302649C
- Authority
- CN
- China
- Prior art keywords
- media gateway
- association
- message
- connection
- processing
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Fee Related
Links
Images
Landscapes
- Data Exchanges In Wide-Area Networks (AREA)
- Computer And Data Communications (AREA)
Abstract
Description
技术领域technical field
本发明涉及通信技术领域,尤其涉及一种实现媒体网关控制协议(H.248)消息传输和事务可靠性处理的方法。The invention relates to the technical field of communication, in particular to a method for realizing media gateway control protocol (H.248) message transmission and transaction reliability processing.
背景技术Background technique
媒体网关控制协议(H.248)是一种应用于媒体网关控制器和媒体网关之间的协议,媒体网关控制器负责对和媒体网关相关的呼叫状态进行控制,媒体网关在媒体网关控制器的控制下完成不同网络之间媒体格式的转换。如图1所示为H.248协议在TCP/IP协议分层模型中的位置示意图,H.248协议的消息主要在IP上进行传输,在IP上传输时,其传输层可以为传输控制协议(TCP,Transmission Control Protocol)或用户报文协议(UDP,User Datagram Protocol)等,UDP提供的是无连接的报文式服务,而TCP提供一种面向连接的流式服务,所谓面向连接是指保证数据传输的正确、顺序不变、不丢失,所谓流式服务是指用户的数据发送和接收都是字符流,而不是将用户每次请求发送的数据块整个封装在一个报文中发送。从一定意义上讲,H.248协议又分为H.248协议层和H.248协议用户应用层。The Media Gateway Control Protocol (H.248) is a protocol applied between the Media Gateway Controller and the Media Gateway. The Media Gateway Controller is responsible for controlling the call status related to the Media Gateway. Complete the conversion of media formats between different networks under control. As shown in Figure 1, it is a schematic diagram of the position of the H.248 protocol in the TCP/IP protocol layered model. The messages of the H.248 protocol are mainly transmitted on the IP. (TCP, Transmission Control Protocol) or User Datagram Protocol (UDP, User Datagram Protocol), etc. UDP provides a connectionless message service, while TCP provides a connection-oriented streaming service. The so-called connection-oriented refers to Guarantee the correctness of data transmission, the same order, and no loss. The so-called streaming service means that the user's data transmission and reception are all character streams, instead of encapsulating the entire data block sent by the user each time in a message. In a certain sense, the H.248 protocol is further divided into the H.248 protocol layer and the H.248 protocol user application layer.
套接字(Socket)是传输层为应用层提供的编程接口,向应用程序提供client-server(客户-服务器)形式的面向连接的或无连接的通信服务,从应用程序看来socket的主要成分是一个五元组(协议,本地地址,本地端口号,对端地址,对端端口号),对基于面向连接的TCP而言:Socket (Socket) is a programming interface provided by the transport layer for the application layer, and provides connection-oriented or connectionless communication services in the form of client-server (client-server) to the application program. From the perspective of the application program, the main component of the socket It is a five-tuple (protocol, local address, local port number, peer address, peer port number), for connection-oriented TCP:
在媒体网关控制器侧,应用服务器端(server)的流程如下:On the media gateway controller side, the process of the application server (server) is as follows:
1、调用socket()函数创立主server;1. Call the socket() function to create the main server;
2、调用bind()函数指定本地地址及端口号;2. Call the bind() function to specify the local address and port number;
3、调用listen()函数准备接收连接请求;3. Call the listen() function to prepare to receive the connection request;
4、调用accept()函数监听连接请求,收到连接请求后accept会返回一个新socket号及客户(client)的地址及端口号,以后应用程序就使用新socket与client通信;4. Call the accept() function to monitor the connection request. After receiving the connection request, accept will return a new socket number, the address and port number of the client (client), and the application will use the new socket to communicate with the client in the future;
5、……(其它流程如关闭流程等在此不再描述)。5. ... (Other processes such as closing process etc. will not be described here).
在媒体网关侧,应用客户端(client)的流程如下:On the media gateway side, the process of applying the client (client) is as follows:
1、调用socket()函数创建Socket;1. Call the socket() function to create a Socket;
2、调用bind()函数指定本地地址和端口号;2. Call the bind() function to specify the local address and port number;
3、调用connect()函数与指定对端相连,至此,一个通信连接建立起来,可以发送和接收H.248消息;3. Call the connect() function to connect to the specified peer. At this point, a communication connection is established, and H.248 messages can be sent and received;
4、……(其它流程如关闭流程等在此不再描述)。4. ... (Other processes, such as the closing process, etc. will not be described here).
H.248协议消息在TCP上进行传输时,尽管TCP提供了可靠的传输机制,但由于TCP是一种基于流的协议,对于面向事务的H.248协议,消息中的事务仍有可能发生丢失,若媒体网关控制器发送的事务发生丢失导致不能获得及时响应,可能导致重复发送,将导致对媒体网关执行命令后的状态无法预知,所以H.248协议规定了保护事务可靠传输的一些要求,H.248协议层或H.248协议用户应用层应根据协议要求实现并保证事务的可靠传输。When the H.248 protocol message is transmitted on TCP, although TCP provides a reliable transmission mechanism, because TCP is a stream-based protocol, for the transaction-oriented H.248 protocol, the transaction in the message may still be lost , if the transaction sent by the media gateway controller is lost and cannot get a timely response, it may lead to repeated sending, which will lead to unpredictable status of the media gateway after executing the command. Therefore, the H.248 protocol stipulates some requirements for protecting the reliable transmission of transactions. The H.248 protocol layer or the H.248 protocol user application layer shall realize and guarantee the reliable transmission of transactions according to the protocol requirements.
一个H.248消息由多个事务组成,消息中所包含的事务各自独立,每个消息都有一个消息头,消息头中包含标识消息发送者的标识符,称为MID(Message Identifier),H.248协议规定一个逻辑的媒体网关控制器或媒体网关应该具有唯一的MID,H.248协议中对事务可靠性传输的要求都是基于同一MID的。An H.248 message is composed of multiple transactions. The transactions contained in the message are independent. Each message has a message header, which contains an identifier identifying the sender of the message, called MID (Message Identifier), H The .248 protocol stipulates that a logical media gateway controller or media gateway should have a unique MID, and the requirements for transaction reliability transmission in the H.248 protocol are all based on the same MID.
由于H.248协议消息在TCP的连接上进行传输,而对传输消息进行的事务可靠处理需要是基于同一MID的,因此,当MID和连接能够一一对应时,H.248协议层或H.248协议用户应用层直接对完成发送和接收的连接进行事务可靠性处理即可,但连接和MID并不是固定的一一对应关系,还有可能是多对一或一对多等复杂的情况,因而,现有技术在这些情况下无法实现H.248消息的传输和事务可靠性处理。Since the H.248 protocol message is transmitted on the TCP connection, the reliable transaction processing of the transmitted message needs to be based on the same MID. Therefore, when the MID and the connection can correspond one-to-one, the H.248 protocol layer or the H. 248 protocol, the user application layer can directly process the transaction reliability of the connection that has completed sending and receiving, but the connection and MID are not fixed one-to-one correspondence, and there may be complex situations such as many-to-one or one-to-many. Therefore, the prior art cannot implement H.248 message transmission and transaction reliability processing under these circumstances.
发明内容Contents of the invention
本发明所要解决的技术问题是:克服现有技术在连接和消息发送接收两端标识符组不是一一对应关系时,无法直接使用连接进行事务可靠性处理的不足,提供一种在连接和消息发送接收两端标识符组为不同对应关系时,均可以方便可靠地实现H.248消息传输和事务可靠性处理的方法。The technical problem to be solved by the present invention is to overcome the disadvantages of the existing technology that when the identifier groups at the two ends of the connection and message sending and receiving are not in one-to-one correspondence, the connection cannot be directly used for transaction reliability processing, and to provide a connection and message When the identifier groups at the sending and receiving ends have different corresponding relationships, the method for H.248 message transmission and transaction reliability processing can be realized conveniently and reliably.
本发明为解决上述技术问题所采用的技术方案为:The technical scheme that the present invention adopts for solving the problems of the technologies described above is:
这种实现媒体网关控制协议消息传输和事务可靠性处理的方法,包括以下步骤:The method for realizing media gateway control protocol message transmission and transaction reliability processing includes the following steps:
A、在媒体网关控制协议(H.248)协议层引入关联(association),一个本端消息发送者标识符(MID)与一个对端消息发送者标识符(MID)对应一个关联;A. Introduce association (association) at media gateway control protocol (H.248) protocol layer, a local message sender identifier (MID) corresponds to an association with a peer message sender identifier (MID);
B、由H.248协议用户应用层根据实际情况建立起关联和连接(Connection)的对应关系;B, the H.248 protocol user application layer establishes the corresponding relationship of association and connection (Connection) according to the actual situation;
C、在关联上进行事务可靠性处理,并根据关联与连接的对应关系进行消息的接收或发送处理。C. Perform transaction reliability processing on the association, and perform message receiving or sending processing according to the correspondence between the association and the connection.
所述的步骤B中,当一个媒体网关划分为多个虚拟网关或多个媒体网关只有一个网络接口且仅建立一条连接时,媒体网关控制器的MID分别与不同媒体网关的MID间对应多个不同的关联,而不同的关联对应同一条连接。In the step B, when a media gateway is divided into multiple virtual gateways or multiple media gateways have only one network interface and only one connection is established, the MIDs of the media gateway controllers correspond to multiple MIDs of different media gateways. Different associations, and different associations correspond to the same connection.
媒体网关控制器进行发送处理时,根据消息准备发送给的对端媒体网关MID确定发送消息的关联,完成该关联上的事务可靠性处理后准备发送时,通过关联找到对应的连接,完成在连接上的发送;When the media gateway controller performs sending processing, it determines the association of the message to be sent according to the peer media gateway MID to which the message is to be sent. send on
媒体网关控制器进行接收处理时,从连接上接收到H.248消息,根据消息头中的对端媒体网关MID,确定接收消息的关联,完成该关联上的事务可靠性处理。When the media gateway controller performs receiving processing, it receives an H.248 message from the connection, determines the association of the received message according to the peer media gateway MID in the message header, and completes the transaction reliability processing on the association.
媒体网关在进行发送处理时,根据消息准备发送给的对端媒体网关控制器MID确定发送消息的关联,完成该关联上的事务可靠性处理后准备发送时,通过关联找到对应的连接,完成在连接上的发送;When the media gateway is sending the message, it determines the association of the message to be sent according to the peer media gateway controller MID to which the message is to be sent, and when it is ready to send after completing the transaction reliability processing on the association, it finds the corresponding connection through the association, and completes the send on connection;
媒体网关在进行接收处理时,从连接上接收到H.248消息,根据媒体网关的实现策略将消息分发给相关的关联,完成事务的可靠性处理。When the media gateway receives the H.248 message from the connection, it distributes the message to the relevant associations according to the implementation strategy of the media gateway to complete the reliability processing of the transaction.
如果媒体网关为多个根据物理终端划分出的虚拟网关,则所述的实现策略可以为由媒体网关负责分发的功能模块先解出消息中所含命令对应的物理终端,根据该物理终端确定属于哪个虚拟网关,从而将接收到的消息分发到该虚拟网关对应的关联上。If the media gateway is a plurality of virtual gateways divided according to physical terminals, then the implementation strategy can be that the functional module responsible for distribution by the media gateway first solves the physical terminal corresponding to the command contained in the message, and determines the corresponding physical terminal according to the physical terminal. Which virtual gateway to distribute the received message to the association corresponding to the virtual gateway.
所述的步骤B中,当一个媒体网关控制器和一个媒体网关之间建立了多个连接时,媒体网关控制器的MID与媒体网关的MID间对应一个关联,而该关联分别与多个不同的连接相对应。In the step B, when a plurality of connections are established between a media gateway controller and a media gateway, there is an association between the MID of the media gateway controller and the MID of the media gateway, and the association is different from multiple corresponding to the connection.
媒体网关控制器进行发送处理时,根据消息准备发送给的对端媒体网关MID确定发送消息的关联,完成该关联上的事务可靠性处理后准备发送时,根据媒体网关控制器的发送策略确定在哪个连接上进行发送;When the media gateway controller performs sending processing, it determines the association of the message to be sent according to the peer media gateway MID to which the message is to be sent. which connection to send on;
在进行接收处理时,无论从哪个连接上接收到的H.248消息,都对应同一个关联,完成该关联上的事务可靠性处理。During receiving processing, no matter from which connection the H.248 message is received, it corresponds to the same association, and the transaction reliability processing on the association is completed.
所述的媒体网关控制器的发送策略可以为根据流量控制决定在哪个连接上进行发送。The sending strategy of the media gateway controller may be to decide on which connection to send according to flow control.
媒体网关在进行发送处理时,根据消息准备发送给的对端媒体网关控制器MID确定发送消息的关联,完成该关联上的事务可靠性处理后准备发送时,根据媒体网关的发送策略确定在哪个连接上进行发送;When the media gateway is sending the message, it determines the association of the message to be sent according to the MID of the peer media gateway controller to which the message is to be sent. When it is ready to send the message after completing the transaction reliability processing on the association, it determines which send on the connection;
在进行接收处理时,无论从哪个连接上接收到的H.248消息,都对应同一个关联,完成该关联上的事务可靠性处理。During receiving processing, no matter from which connection the H.248 message is received, it corresponds to the same association, and the transaction reliability processing on the association is completed.
当媒体网关发送的消息为对媒体网关控制器发来的请求消息的响应时,所述媒体网关的发送策略为在接收的连接上发送响应消息。When the message sent by the media gateway is a response to the request message sent by the media gateway controller, the sending policy of the media gateway is to send a response message on the received connection.
本发明的有益效果为:本发明通过引入关联(association),并使MID和连接分别与association建立对应关系,一个本端MID和一个对端MID唯一对应一个association,这样,可以将association看成是一个逻辑上的连接,对H.248协议层来说,不必关心实际的物理连接,仅需要根据association完成事务可靠性处理,由H.248协议用户应用层根据实际情况建立起association和连接的对应关系即可。The beneficial effects of the present invention are: the present invention introduces association (association), and makes MID and connection respectively establish corresponding relationship with association, a local MID and a opposite end MID uniquely correspond to an association, like this, association can be regarded as For a logical connection, the H.248 protocol layer does not need to care about the actual physical connection, it only needs to complete the transaction reliability processing according to the association, and the H.248 protocol user application layer establishes the correspondence between the association and the connection according to the actual situation relationship.
本发明提供了一种在连接和MID为各种不同对应关系时,方便、可靠地完成H.248消息传输和事务可靠性处理的方法。The invention provides a method for conveniently and reliably completing H.248 message transmission and transaction reliability processing when connections and MIDs are in various correspondences.
附图说明Description of drawings
图1为H.248协议在TCP/IP协议分层模型图中的位置示意图;Fig. 1 is a schematic diagram of the position of the H.248 protocol in the TCP/IP protocol layered model diagram;
图2为本发明一个媒体网关控制器和多个媒体网关间只有一个连接时关联与连接的对应关系示意图;FIG. 2 is a schematic diagram of the corresponding relationship between association and connection when there is only one connection between a media gateway controller and multiple media gateways in the present invention;
图3为本发明一个媒体网关控制器和一个媒体网关间建立多个连接时关联与连接的对应关系示意图。FIG. 3 is a schematic diagram of the corresponding relationship between association and connection when multiple connections are established between a media gateway controller and a media gateway according to the present invention.
具体实施方式Detailed ways
下面根据附图和实施例对本发明作进一步详细说明:Below according to accompanying drawing and embodiment the present invention will be described in further detail:
H.248协议消息在TCP的连接上进行传输,为了保证H.248消息中的事务的可靠传输,需要实现事务可靠性处理,如事务可靠性处理直接对连接来实现,则实际情况中部分情形难以对应。H.248 protocol messages are transmitted on TCP connections. In order to ensure the reliable transmission of transactions in H.248 messages, transaction reliability processing needs to be implemented. If transaction reliability processing is directly implemented for connections, in some cases in actual situations Difficult to deal with.
本发明在H.248协议层引入关联(association),并使MID不直接和连接(connection)对应,而是使MID和连接分别与association建立对应关系,这样,通过association使MID和连接间接建立对应关系,一个本端MID以及一个对端MID唯一对应一个association,这样事务可靠性可以在一个association上实现。可以将association看成是一个逻辑上的连接,对H.248协议层来说,不必关心实际的物理连接,仅需要根据association完成事务可靠性处理,由H.248协议用户应用层根据实际情况建立起association和连接的对应关系即可。The present invention introduces association (association) at the H.248 protocol layer, and makes MID not directly correspond to connection (connection), but makes MID and connection respectively establish correspondence with association, like this, makes MID and connection indirectly establish correspondence through association Relationship, a local MID and a peer MID uniquely correspond to an association, so transaction reliability can be realized on an association. The association can be regarded as a logical connection. For the H.248 protocol layer, it does not need to care about the actual physical connection. It only needs to complete the transaction reliability processing according to the association, which is established by the H.248 protocol user application layer according to the actual situation. Just start the corresponding relationship between association and connection.
当连接和MID不是一对应的关系时,可能会出现连接和MID一对多或多对一的情况,具体描述如下:When the relationship between connection and MID is not one-to-one, there may be one-to-many or many-to-one situations between connection and MID. The specific description is as follows:
一、如图2所示,当一个媒体网关划分为多个虚拟网关或多个媒体网关只有一个网络接口且仅建立一条连接时,由于每个逻辑网关都有一个MID,所以连接和MID的对应关系是一对多的情况。1. As shown in Figure 2, when a media gateway is divided into multiple virtual gateways or multiple media gateways have only one network interface and only one connection is established, since each logical gateway has a MID, the correspondence between the connection and the MID A relationship is a one-to-many situation.
下面分别从媒体网关控制器侧和媒体网关侧详细介绍:The following is a detailed introduction from the side of the media gateway controller and the side of the media gateway:
1、媒体网关控制器侧:1. Media gateway controller side:
(1)对应关系的建立:(1) Establishment of corresponding relationship:
本端MID(媒体网关控制器的MID)和对端MID1(媒体网关1的MID)对应association1,本端MID(媒体网关控制器的MID)和对端MID2(媒体网关2的MID)对应association2,association1对应的连接为connection;association2对应的连接也为connection。The local MID (the MID of the media gateway controller) and the peer MID1 (the MID of the media gateway 1) correspond to association1, and the local MID (the MID of the media gateway controller) and the peer MID2 (the MID of the media gateway 2) correspond to association2. The connection corresponding to association1 is connection; the connection corresponding to association2 is also connection.
(2)发送处理:(2) Send processing:
对于媒体网关控制器,准备将H.248消息发送至哪个MID标识的媒体网关是确定的,所以也就确定了发送消息的association,不同association上的H.248消息分别进行事务可靠性处理,也就是针对MID进行了事务可靠性处理,当准备发送时,通过association找到对应的连接,完成在连接上的发送。For the media gateway controller, the media gateway identified by the MID to which the H.248 message is to be sent is determined, so the association for sending the message is determined, and the H.248 messages on different associations are processed separately for transaction reliability. That is, the transaction reliability processing is carried out for the MID. When it is ready to send, the corresponding connection is found through the association, and the sending on the connection is completed.
(3)接收处理:(3) Receiving and processing:
从连接上接收到的H.248消息,根据消息头中的对端媒体网关MID标识,可以确定接收消息的association,完成该association上的事务可靠性处理。The H.248 message received from the connection can determine the association receiving the message according to the peer media gateway MID identifier in the message header, and complete the transaction reliability processing on the association.
2、媒体网关侧:2. Media gateway side:
(1)对应关系的建立:(1) Establishment of corresponding relationship:
例如对媒体网关1,本端MID1(媒体网关1的MID)和对端MID(媒体网关控制器的MID)对应association1,association1对应的连接为connection。For example, for the media gateway 1, the local MID1 (the MID of the media gateway 1) and the peer MID (the MID of the media gateway controller) correspond to association1, and the connection corresponding to the association1 is connection.
(2)发送处理:(2) Send processing:
对于媒体网关,准备将H.248消息发送至哪个MID标识的媒体网关控制器是唯一的,所以也就确定了发送消息的association,完成该association上的事务可靠性处理后准备发送时,通过association找到对应的连接,完成在连接上的发送。For the media gateway, the MID-identified media gateway controller to which the H.248 message is to be sent is unique, so the association for sending the message is determined. Find the corresponding connection and complete the sending on the connection.
(3)接收处理:(3) Receiving and processing:
从连接上接收到的H.248消息,如何分发给相关的association完成事务可靠性处理是媒体网关的具体实现策略,如果媒体网关1和媒体网关2分别为两个虚拟网关,且这两个虚拟网关是根据物理终端进行划分的,则媒体网关负责分发的功能模块可先解出消息中所含命令对应的物理终端,该物理终端属哪个虚拟网关是可以知道的,这样就可以将接收到的消息分发到该虚拟网关对应的association上。How to distribute the H.248 messages received from the connection to the relevant associations to complete transaction reliability processing is the specific implementation strategy of the media gateway. If media gateway 1 and media gateway 2 are two virtual gateways respectively, and the two virtual gateways The gateway is divided according to the physical terminal, and the function module responsible for the distribution of the media gateway can first solve the physical terminal corresponding to the command contained in the message. It can be known which virtual gateway the physical terminal belongs to, so that the received The message is distributed to the association corresponding to the virtual gateway.
二、如图3所示,当一个媒体网关控制器和一个媒体网关之间建立了多个连接的情形时,连接和MID的对应关系是多对一的情况。2. As shown in FIG. 3 , when multiple connections are established between one media gateway controller and one media gateway, the corresponding relationship between connections and MIDs is many-to-one.
下面分别从媒体网关控制器和媒体网关侧详细介绍:The following describes in detail from the media gateway controller and the media gateway side respectively:
1、媒体网关控制器侧:1. Media gateway controller side:
(1)对应关系建立:(1) Correspondence establishment:
本端MID(媒体网关控制器MID)和对端MID(媒体网关MID)对应association,connection1对应association,connection2也对应association。The local MID (media gateway controller MID) and the peer MID (media gateway MID) correspond to the association, connection1 corresponds to the association, and connection2 also corresponds to the association.
(2)发送处理:(2) Send processing:
对于媒体网关控制器,准备将H.248消息发送至哪个MID标识的媒体网关是确定的,所以也就确定了发送消息的association,完成该association上的事务可靠性处理后准备发送时,由于对应多个连接,具体在哪个连接上进行发送属于媒体网关控制器的发送策略,如根据流量控制决定在哪个连接上进行发送。For the media gateway controller, the media gateway identified by the MID to which the H.248 message is to be sent is determined, so the association for sending the message is also determined. For multiple connections, which connection to send on specifically belongs to the sending strategy of the media gateway controller, such as determining which connection to send on according to flow control.
(3)接收处理:(3) Receiving and processing:
无论从哪个连接上接收到H.248消息,都对应同一个association,完成该association上的事务可靠性处理。No matter from which connection the H.248 message is received, it corresponds to the same association, and the transaction reliability processing on the association is completed.
2、媒体网关侧:2. Media gateway side:
(1)对应关系建立:(1) Correspondence establishment:
本端MID(媒体网关MID)和对端MID(媒体网关控制器MID)对应association,connection1对应association,connection2也对应association。The local MID (media gateway MID) and the peer MID (media gateway controller MID) correspond to the association, connection1 corresponds to the association, and connection2 also corresponds to the association.
(2)发送处理:(2) Send processing:
对于媒体网关,准备将H.248消息发送至哪个MID标识的媒体网关控制器是唯一的,所以也就确定了发送消息的association,完成该association上的事务可靠性处理后准备发送时,由于对应多个连接,具体在哪个连接上进行发送属于媒体网关的发送策略,通常对于媒体网关,发送的消息多为对媒体网关控制器发来的请求消息的响应,则应该在接收的连接上发送响应消息。For the media gateway, the MID-identified media gateway controller to which the H.248 message is to be sent is unique, so the association for sending the message is determined. Multiple connections, which connection to send on belongs to the sending strategy of the media gateway. Usually, for the media gateway, the sent message is mostly a response to the request message sent by the media gateway controller, so the response should be sent on the received connection information.
(3)接收处理:(3) Receiving and processing:
无论从哪个连接上接收到的H.248消息,都对应同一个association,完成该association上的事务可靠性处理。No matter from which connection the H.248 message is received, it corresponds to the same association, and the transaction reliability processing on the association is completed.
本发明提供了一种在连接和MID为各种不同对应关系时,方便、可靠地完成H.248消息传输和事务可靠性处理的方法。The invention provides a method for conveniently and reliably completing H.248 message transmission and transaction reliability processing when connections and MIDs are in various correspondences.
Claims (9)
Priority Applications (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CNB031032796A CN1302649C (en) | 2003-01-28 | 2003-01-28 | Method for realizing message transmission and transaction reliability processing of media gateway control protocol |
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CNB031032796A CN1302649C (en) | 2003-01-28 | 2003-01-28 | Method for realizing message transmission and transaction reliability processing of media gateway control protocol |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| CN1522015A CN1522015A (en) | 2004-08-18 |
| CN1302649C true CN1302649C (en) | 2007-02-28 |
Family
ID=34281998
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| CNB031032796A Expired - Fee Related CN1302649C (en) | 2003-01-28 | 2003-01-28 | Method for realizing message transmission and transaction reliability processing of media gateway control protocol |
Country Status (1)
| Country | Link |
|---|---|
| CN (1) | CN1302649C (en) |
Families Citing this family (6)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN100461749C (en) * | 2005-08-19 | 2009-02-11 | 华为技术有限公司 | Method for centralized distributing H.248 message |
| WO2007059650A1 (en) * | 2005-11-25 | 2007-05-31 | Zte Corporation | A media gateway system and a method for achieving the internal calling of the media gateway |
| CN100450223C (en) * | 2005-12-07 | 2009-01-07 | 华为技术有限公司 | A Method for Realizing Trunking Service under Mobile Softswitch Architecture |
| CN101471965B (en) * | 2007-12-28 | 2012-01-04 | 华为技术有限公司 | Method for distributing local transmission address, medium gateway and medium gateway controller |
| CN101483728B (en) * | 2008-12-31 | 2013-10-30 | 深圳市同洲电子股份有限公司 | Digital television receiving terminal, connecting apparatus, system and method |
| CN103595823B (en) * | 2012-08-17 | 2018-05-11 | 华为技术有限公司 | Method, terminal and the system of data transfer |
Citations (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN1361996A (en) * | 1999-07-19 | 2002-07-31 | 艾利森电话股份有限公司 | Implementation of call setup procedures with separation of call control and bearer control |
| JP2002271399A (en) * | 2001-03-09 | 2002-09-20 | Nec Corp | Telephone system and method for monitoring telephone connection |
-
2003
- 2003-01-28 CN CNB031032796A patent/CN1302649C/en not_active Expired - Fee Related
Patent Citations (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN1361996A (en) * | 1999-07-19 | 2002-07-31 | 艾利森电话股份有限公司 | Implementation of call setup procedures with separation of call control and bearer control |
| JP2002271399A (en) * | 2001-03-09 | 2002-09-20 | Nec Corp | Telephone system and method for monitoring telephone connection |
Also Published As
| Publication number | Publication date |
|---|---|
| CN1522015A (en) | 2004-08-18 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| CN1174584C (en) | Method for realizing multiple point communication by using serial bus | |
| CN1302649C (en) | Method for realizing message transmission and transaction reliability processing of media gateway control protocol | |
| CN101056273A (en) | Session-based network speed limit method and device | |
| CN101039203A (en) | Access equipment, conference access method and conference service system | |
| CN1798049A (en) | Mobile online game system and method | |
| CN1622553A (en) | Internet standard file transmission protocol based file breakpoint upload method | |
| CN1863121A (en) | Two layer tunnel protocol network server and method for establishing tunnel thereof | |
| CN1561045A (en) | A method for implementing transparent bridging of wireless local area network bridges | |
| CN101035367A (en) | Method for the mobile communication back transfer interface to realize information source integrated access interaction | |
| CN1713586A (en) | Realization of virtual group redundancy | |
| CN1592301A (en) | Communication method of realizing multi-IP addresses | |
| CN1286309C (en) | A method and system for H.248 message processing in distributed processing gateway | |
| CN1270534C (en) | Device and method for implementing simulation of multiplex terminal calls in video conference system | |
| CN1863202A (en) | Method for improving load balance apparatus and servicer processing performance | |
| CN1229995C (en) | Method for transfering meeting control news between cascade multiple ponit control units | |
| CN101060525A (en) | A SCTP linking method | |
| CN1595917A (en) | System and method for communication between media gateway controller and media gateway | |
| CN1567841A (en) | An equipment and method for implementing information forwarding | |
| CN1194516C (en) | Realization method of distributed IP processing module | |
| CN1248476C (en) | Development service access equipment and processing method thereof | |
| CN1671137A (en) | HTTP based network slave equipment management method and system | |
| CN1813460A (en) | Processing communication terminal addresses, by integration and/or extraction of communication interface characteristics in the address | |
| CN1612564A (en) | Media gateway control protocol compatible method | |
| CN1414739A (en) | Ethernet communication device and method between data processing single board | |
| CN1859641A (en) | PoC service processing method |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| C06 | Publication | ||
| PB01 | Publication | ||
| C10 | Entry into substantive examination | ||
| SE01 | Entry into force of request for substantive examination | ||
| C14 | Grant of patent or utility model | ||
| GR01 | Patent grant | ||
| CF01 | Termination of patent right due to non-payment of annual fee | ||
| CF01 | Termination of patent right due to non-payment of annual fee |
Granted publication date: 20070228 Termination date: 20130128 |