CN110166479B - Method for improving UDP (user Datagram protocol) sending efficiency of transmission system - Google Patents

Method for improving UDP (user Datagram protocol) sending efficiency of transmission system Download PDF

Info

Publication number
CN110166479B
CN110166479B CN201910472403.9A CN201910472403A CN110166479B CN 110166479 B CN110166479 B CN 110166479B CN 201910472403 A CN201910472403 A CN 201910472403A CN 110166479 B CN110166479 B CN 110166479B
Authority
CN
China
Prior art keywords
transmission
interface
udp
client
calls
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.)
Active
Application number
CN201910472403.9A
Other languages
Chinese (zh)
Other versions
CN110166479A (en
Inventor
周双全
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Shenzhen Ruiyun Technology Co ltd
Shenzhen Yunyu Technology Co ltd
Original Assignee
Shenzhen Yunyu Technology Co ltd
Shenzhen Rayvision Technology Co ltd
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by Shenzhen Yunyu Technology Co ltd, Shenzhen Rayvision Technology Co ltd filed Critical Shenzhen Yunyu Technology Co ltd
Priority to CN201910472403.9A priority Critical patent/CN110166479B/en
Publication of CN110166479A publication Critical patent/CN110166479A/en
Application granted granted Critical
Publication of CN110166479B publication Critical patent/CN110166479B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/16Implementation or adaptation of Internet protocol [IP], of transmission control protocol [TCP] or of user datagram protocol [UDP]
    • H04L69/161Implementation details of TCP/IP or UDP/IP stack architecture; Specification of modified or new header fields
    • H04L69/162Implementation details of TCP/IP or UDP/IP stack architecture; Specification of modified or new header fields involving adaptations of sockets based mechanisms
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/16Implementation or adaptation of Internet protocol [IP], of transmission control protocol [TCP] or of user datagram protocol [UDP]
    • H04L69/164Adaptation or special uses of UDP protocol

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Computer And Data Communications (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)

Abstract

The invention discloses a method for improving UDP sending efficiency of a transmission system, which comprises the following steps: the transmission client calls a first socket () interface to establish a first socket, the transmission client calls a connect () interface and sets a destination address, connection of UDP sockets is established, the transmission server calls a second socket () interface to establish a second socket, the transmission server calls a bind () interface, the transmission client calls a send () interface to send a first UDP message, the transmission server calls a recifrom () interface to receive the first UDP message, the transmission server judges whether the transmission client is in accordance with an expected transmission client of the transmission server, if the transmission client is in accordance with the expected transmission client of the transmission server, the connect () interface is called to obtain the address of the transmission client as an opposite terminal address, the UDP socket enters a connected connection state, and the transmission client calls the send UDP message or calls the recv interface to receive the UDP () message. The invention only needs to select the destination address for the first 1-2 UDP messages, and the subsequent UDP messages can be directly sent, so that the sending efficiency is improved by 10-20%.

Description

Method for improving UDP (user Datagram protocol) sending efficiency of transmission system
Technical Field
The invention relates to the field of file transmission, in particular to a method for improving UDP sending efficiency of a transmission system.
Background
In a general operating system, such as Windows, Linux, MacOS, Android, and other systems, the process of sending a TCP message is as follows: the method comprises the steps that a socket () - > connect () interface of a client side establishes connection, then a recv () interface and a send () interface are called to receive and send, a socket () - > bind () - > accept () interface of a server establishes connection, and then the recv () interface and the send () interface are called to receive and send; the process of sending the UDP message is as follows: the Socket () interface of the transmission client establishes Socket, then calls a recvfrom () interface and a sendto () interface to receive and send, the Socket () - > bind () interface of the transmission server establishes connection, and then calls the recvfrom () interface and the sendto () interface to receive and send. From the sending process of the TCP message and the UDP message, the difference between the general UDP socket call and the TCP socket call can be found, because the UDP is a connectionless system, the process of establishing connection is eliminated, and therefore, the recv () interface and the send () interface can not be used for receiving and sending the message; the UDP packet can be sent only by carrying a destination address parameter on the sendto () interface to specify the destination of the transmission. Since the destination addresses of the sendto () interfaces are different each time, when UDP messages are sent, each message needs to be selected for the destination address, which causes additional performance loss, especially when communication is between two points, such as between a computer a and a computer B, such loss causes the UDP message sending efficiency to be low.
Accordingly, the prior art is deficient and needs improvement.
Disclosure of Invention
The invention aims to overcome the defects of the prior art, provides a method for improving UDP sending efficiency of a transmission system, and solves the problem of low sending efficiency caused by the fact that each message needs to be subjected to destination address selection when UDP messages are sent between two points in the prior art.
The technical scheme of the invention is as follows: a method for improving UDP transmission efficiency of a transmission system comprises the following steps:
step 100: and the transmission client calls a first socket () interface to establish a first socket.
Step 200: and the transmission client calls the connect () interface, sets a destination address and establishes the connection of the UDP socket.
Step 300: and the transmission server calls a second socket () interface to establish a second socket.
Step 400: the transmission server side calls a bind () interface to bind a local address and a port of the transmission server side; the destination address and the local address are the same address.
Step 500: the transmission client calls the send () interface to send the first UDP message, and the transmission server calls the recvdrom () interface to receive the first UDP message.
Step 600: and the transmission server judges whether the transmission server accords with the expected transmission client of the transmission server according to the transmission client transmission information acquired by the recvfrom () interface.
Step 700: if the transmission client-side is in line with the expected transmission client-side of the transmission server-side, the transmission server-side calls the connect () interface to obtain the address of the transmission client-side as the address of the opposite terminal, and the UDP socket enters the connected state.
Step 800: and the transmission client calls a send () interface to send the UDP message or calls a recv () interface to receive the UDP message. The transmission client calls a first socket () interface to establish a first socket, after calling a connect () interface, the transmission client sets a destination address of a UDP message for the first UDP message, the destination address is a local address of the transmission server, the transmission server calls a second socket () interface to establish a second socket, a bind () interface is called, the local address and the port of the transmission server are bound, the transmission client calls a send () interface to send the first UDP message to the transmission server, the transmission server calls a reveom () interface to receive the first UDP message, then transmission information of the transmission client is obtained, whether the transmission client is in accordance with an expected transmission client is judged according to the transmission information, if the transmission client is in accordance with the expected transmission client, the connection () interface is called by the transmission server as an opposite end address when the transmission server sends the UDP message to the transmission client, the UDP socket enters a connected connection state, and the transmission server and the transmission client enter the connected connection state, after connection, the transmission server side and the transmission client side can receive and send UDP messages, in the transmission process, only the sending destination address of the first UDP message needs to be selected, the UDP messages can be directly sent after the transmission client side and the transmission server side enter a connection state, the selection of the sending destination address is not needed when each UDP message is sent, and the sending efficiency of the UDP messages is effectively improved; the transmission client only needs to select the destination address for sending the first 1-2 UDP messages, and the subsequent UDP messages can be directly sent through the destination address connected with the UDP socket, so that the sending efficiency can be improved by 10-20%.
Further, the transmission information of the transmission client is address information of the transmission client and the content of the first UDP packet.
Further, the step 600 further comprises the steps of:
step 601: and the transmission server acquires the address information of the transmission client and the content of the first UDP message according to the recvdrom () interface.
Step 602: and judging whether the transmission client side accords with an expected transmission client side of the transmission server.
Step 603: if not, discarding the first UDP message, and the transmission client and the transmission server do not establish connection.
Step 604: if so, go to step 700. The recvfrom () interface receives the first UDP packet sent by the transmission client, acquires the address information of the transmission client and the content of the first UDP packet, determines whether the transmission client conforms to the expected transmission client of the transmission server according to the address information of the transmission client and the content of the first UDP packet, discards the first UDP packet if the transmission client does not conform to the expected transmission client of the transmission server, and stops the connection between the transmission client and the transmission server, if the transmission client conforms to the expected transmission client of the transmission server, the process may directly proceed to step 700.
Further, the step 800 further comprises the steps of:
step 801: and the transmission client calls the send () interface to send the UDP message to the transmission server.
Step 802: and the transmission service terminal calls a recvdrom () interface to receive the UDP message.
Step 803: and the transmission server side calls a sendto () interface to send the UDP message to the transmission client side.
Step 804: and the transmission client calls a recv () interface to receive the UDP message. After the transmission client side is connected with the transmission server side, when the transmission client side sends a UDP message to the transmission server side, the transmission client side calls a send () interface to send the UDP message to the transmission server side, and the transmission server side calls a recvdrom () interface to receive the UDP message; when the transmission server sends the UDP message to the transmission client, the transmission server calls the sendto () interface to send the UDP message to the transmission client, and the transmission client calls the recv () interface to receive the UDP message, so that the transmission client and the transmission server send and receive the UDP message.
Further, the communication mode between the transmission client and the transmission server is point-to-point communication.
Further, in step 603, the transmission client does not establish a connection with the transmission server, the connection process is ended, the transmission client uses the next UDP packet of the first UDP packet as the new first UDP packet, and the steps 100 to 800 are repeated. When the transmission client does not accord with the expected transmission client of the transmission server, the transmission client does not establish connection with the transmission server, the connection process is finished, at the moment, the transmission client uses the next UDP message as a new first UDP message, the step 100-step 800 is repeated, namely, a new destination address needs to be input, the first UDP message is sent with the new transmission server until the transmission client accords with the expected transmission client of the corresponding transmission server, generally, the destination address is selected for the first 1-2 UDP messages, namely, the operation of the step 100-step 800 needs to be repeated for 1-2 times, and the connection can be established between the transmission client and the transmission server.
By adopting the scheme, the invention provides a method for improving UDP sending efficiency of a transmission system, a first socket () interface is called by a transmission client to establish a first socket, after a connect () interface is called, a UDP message sending destination address is set for the first UDP message, the destination address is a local address of a transmission server, the transmission server calls a second socket () interface to establish a second socket, a bind () interface is called, the local address and the port of the transmission server are bound, the transmission client calls a send () interface to send the first UDP message to the transmission server, the transmission server calls a recfrom () interface to receive the first UDP message to obtain transmission information of the transmission client, and judges whether the transmission server accords with an expected transmission client according to the transmission information, if so, the connect () interface is called by the transmission server to serve as an opposite end address when the transmission server and the transmission client send the UDP message, the UDP socket enters a connected connection state, the transmission server and the transmission client enter the connected connection state, and after connection, the transmission server and the transmission client can receive and send UDP messages; the transmission client only needs to select the destination address for sending the first 1-2 UDP messages, and the subsequent UDP messages can be directly sent through the destination address connected with the UDP socket, so that the sending efficiency can be improved by 10-20%.
Drawings
FIG. 1 is a block flow diagram of the present invention;
FIG. 2 is a flowchart illustrating a method for determining whether a transmitting client is compliant with an expected transmitting client of a transmitting server;
fig. 3 is a flowchart of UDP packet transmission between the transmission client and the transmission server.
Detailed Description
The invention is described in detail below with reference to the figures and the specific embodiments.
Referring to fig. 1, the present invention provides a method for improving UDP sending efficiency in a transmission system, including the following steps:
step 100: and the transmission client calls a first socket () interface to establish a first socket.
Step 200: and the transmission client calls the connect () interface, sets a destination address and establishes the connection of the UDP socket.
Step 300: and the transmission server calls a second socket () interface to establish a second socket.
Step 400: the transmission server side calls a bind () interface to bind a local address and a port of the transmission server side; the destination address and the local address are the same address.
Step 500: the transmission client calls the send () interface to send the first UDP message, and the transmission server calls the recvdrom () interface to receive the first UDP message.
Step 600: and the transmission server judges whether the transmission server accords with the expected transmission client of the transmission server according to the transmission client transmission information acquired by the recvfrom () interface.
Step 700: if the transmission client-side is in line with the expected transmission client-side of the transmission server-side, the transmission server-side calls the connect () interface to obtain the address of the transmission client-side as the address of the opposite terminal, and the UDP socket enters the connected state.
Step 800: and the transmission client calls a send () interface to send the UDP message or calls a recv () interface to receive the UDP message. The transmission client calls a first socket () interface to establish a first socket, after calling a connect () interface, the transmission client sets a destination address of a UDP message for the first UDP message, the destination address is a local address of the transmission server, the transmission server calls a second socket () interface to establish a second socket, a bind () interface is called, the local address and the port of the transmission server are bound, the transmission client calls a send () interface to send the first UDP message to the transmission server, the transmission server calls a reveom () interface to receive the first UDP message, then transmission information of the transmission client is obtained, whether the transmission client is in accordance with an expected transmission client is judged according to the transmission information, if the transmission client is in accordance with the expected transmission client, the connection () interface is called by the transmission server as an opposite end address when the transmission server sends the UDP message to the transmission client, the UDP socket enters a connected connection state, and the transmission server and the transmission client enter the connected connection state, after connection, the transmission server side and the transmission client side can receive and send UDP messages, in the transmission process, only the sending destination address of the first UDP message needs to be selected, the UDP messages can be directly sent after the transmission client side and the transmission server side enter a connection state, the selection of the sending destination address is not needed when each UDP message is sent, and the sending efficiency of the UDP messages is effectively improved; the transmission client only needs to select the destination address for sending the first 1-2 UDP messages, and the subsequent UDP messages can be directly sent through the destination address connected with the UDP socket, so that the sending efficiency can be improved by 10-20%.
The transmission client side transmission information is address information of the transmission client side and first UDP message content.
Referring to fig. 2, the step 600 further includes the following steps:
step 601: and the transmission server acquires the address information of the transmission client and the content of the first UDP message according to the recvdrom () interface.
Step 602: and judging whether the transmission client side accords with an expected transmission client side of the transmission server.
Step 603: if not, discarding the first UDP message, and the transmission client and the transmission server do not establish connection.
Step 604: if so, go to step 700. The recvfrom () interface receives the first UDP packet sent by the transmission client, acquires the address information of the transmission client and the content of the first UDP packet, determines whether the transmission client conforms to the expected transmission client of the transmission server according to the address information of the transmission client and the content of the first UDP packet, discards the first UDP packet if the transmission client does not conform to the expected transmission client of the transmission server, and stops the connection between the transmission client and the transmission server, if the transmission client conforms to the expected transmission client of the transmission server, the process may directly proceed to step 700.
Referring to fig. 3, the step 800 further includes the following steps:
step 801: and the transmission client calls the send () interface to send the UDP message to the transmission server.
Step 802: and the transmission service terminal calls a recvdrom () interface to receive the UDP message.
Step 803: and the transmission server side calls a sendto () interface to send the UDP message to the transmission client side.
Step 804: and the transmission client calls a recv () interface to receive the UDP message. After the transmission client side is connected with the transmission server side, when the transmission client side sends a UDP message to the transmission server side, the transmission client side calls a send () interface to send the UDP message to the transmission server side, and the transmission server side calls a recvdrom () interface to receive the UDP message; when the transmission server sends the UDP message to the transmission client, the transmission server calls the sendto () interface to send the UDP message to the transmission client, and the transmission client calls the recv () interface to receive the UDP message, so that the transmission client and the transmission server send and receive the UDP message.
And the communication mode between the transmission client and the transmission server is point-to-point communication.
In step 603, the transmission client does not establish a connection with the transmission server, the connection process is ended, the transmission client uses the next UDP packet of the first UDP packet as a new first UDP packet, and the steps 100 to 800 are repeated. When the transmission client does not accord with the expected transmission client of the transmission server, the transmission client does not establish connection with the transmission server, the connection process is finished, at the moment, the transmission client uses the next UDP message as a new first UDP message, the step 100-step 800 is repeated, namely, a new destination address needs to be input, the first UDP message is sent with the new transmission server until the transmission client accords with the expected transmission client of the corresponding transmission server, generally, the destination address is selected for the first 1-2 UDP messages, namely, the operation of the step 100-step 800 needs to be repeated for 1-2 times, and the connection can be established between the transmission client and the transmission server.
In summary, the present invention provides a method for improving UDP sending efficiency of a transmission system, which includes establishing a first socket by a transmission client calling a first socket () interface, setting a UDP packet sending destination address for the first UDP packet after calling a connect () interface, the destination address being a local address of a transmission server, the transmission server calling a second socket () interface to establish a second socket, calling a bind () interface, binding the local address and a port of the transmission server, the transmission client calling a send () interface to send the first UDP packet to the transmission server, the transmission server calling a revfrom () interface to receive the first UDP packet, obtaining transmission information of the transmission client, and determining whether the transmission client is in line with an expected transmission client according to the transmission information, if so, calling the connect () interface as an opposite end address when the transmission server and the transmission client send the UDP packet, the UDP socket enters a connected connection state, the transmission server and the transmission client enter the connected connection state, and after connection, the transmission server and the transmission client can receive and send UDP messages; the transmission client only needs to select the destination address for sending the first 1-2 UDP messages, and the subsequent UDP messages can be directly sent through the destination address connected with the UDP socket, so that the sending efficiency can be improved by 10-20%.
The present invention is not limited to the above preferred embodiments, and any modifications, equivalent substitutions and improvements made within the spirit and principle of the present invention should be included in the protection scope of the present invention.

Claims (4)

1. A method for improving UDP transmission efficiency of a transmission system is characterized by comprising the following steps:
step 100: the transmission client calls a first socket () interface to establish a first socket;
step 200: the transmission client calls a connect () interface, sets a destination address and establishes connection of the UDPsocket;
step 300: the transmission server calls a second socket () interface to establish a second socket;
step 400: the transmission server side calls a bind () interface to bind a local address and a port of the transmission server side; the destination address and the local address are the same address;
step 500: the transmission client calls a send () interface to send a first UDP message, and the transmission server calls a recvdrom () interface to receive the first UDP message;
step 600: the transmission server side judges whether the transmission server side accords with the expected transmission client side of the transmission server side according to the transmission client side transmission information acquired by the recvfrom () interface; the transmission client side transmission information comprises address information of the transmission client side and first UDP message content;
step 700: if the transmission client-side is in line with the expected transmission client-side of the transmission server-side, the transmission server-side calls a connect () interface to obtain the address of the transmission client-side as the address of the opposite terminal, and the UDP socket enters a connected state;
step 800: the transmission client calls a send () interface to send a UDP message or calls a recv () interface to receive the UDP message;
and the communication mode between the transmission client and the transmission server is point-to-point communication.
2. The method according to claim 1, wherein the step 600 further comprises the steps of:
step 601: the transmission server side acquires the address information of the transmission client side and the first UDP message content according to the recvdrom () interface;
step 602: judging whether the transmission client side accords with an expected transmission client side of a transmission server;
step 603: if not, discarding the first UDP message, not establishing connection between the transmission client and the transmission server, and ending the connection process;
step 604: if so, go to step 700.
3. The method according to claim 1, wherein the step 800 further comprises the steps of:
step 801: the transmission client calls a send () interface to send a UDP message to the transmission server;
step 802: the transmission server side calls a recvdrom () interface to receive the UDP message;
step 803: the transmission server side calls a sendto () interface to send a UDP message to the transmission client side;
step 804: and the transmission client calls a recv () interface to receive the UDP message.
4. The method according to claim 2, wherein in step 603, the transmission client does not establish a connection with the transmission server, and ends the connection process, and the transmission client uses the next UDP packet of the first UDP packet as the new first UDP packet, and then loops through steps 100 to 800.
CN201910472403.9A 2019-05-31 2019-05-31 Method for improving UDP (user Datagram protocol) sending efficiency of transmission system Active CN110166479B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910472403.9A CN110166479B (en) 2019-05-31 2019-05-31 Method for improving UDP (user Datagram protocol) sending efficiency of transmission system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910472403.9A CN110166479B (en) 2019-05-31 2019-05-31 Method for improving UDP (user Datagram protocol) sending efficiency of transmission system

Publications (2)

Publication Number Publication Date
CN110166479A CN110166479A (en) 2019-08-23
CN110166479B true CN110166479B (en) 2022-02-01

Family

ID=67630596

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910472403.9A Active CN110166479B (en) 2019-05-31 2019-05-31 Method for improving UDP (user Datagram protocol) sending efficiency of transmission system

Country Status (1)

Country Link
CN (1) CN110166479B (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110912942B (en) * 2019-12-30 2021-09-21 深圳市瑞云科技有限公司 Method for reducing UDP message sending time delay
CN113765919B (en) * 2021-09-07 2023-11-03 深圳市瑞云科技有限公司 Method for improving UDP message sending efficiency of Linux system
CN115065672A (en) * 2022-04-29 2022-09-16 武汉斗鱼鱼乐网络科技有限公司 SFU system data transmission method and related equipment

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101217464A (en) * 2007-12-28 2008-07-09 北京大学 UDP data package transmission method
CN103166824A (en) * 2011-12-13 2013-06-19 华为技术有限公司 Interconnection method, device and system
CN105553977A (en) * 2015-12-15 2016-05-04 网易(杭州)网络有限公司 Request message processing and transmitting method and device
CN108650301A (en) * 2018-04-17 2018-10-12 厦门睿洽科技有限公司 The method based on android system for keeping UDP long connections
CN109298943A (en) * 2018-10-11 2019-02-01 四川长虹电器股份有限公司 Concurrent processing method for UDP server
CN109474670A (en) * 2018-10-22 2019-03-15 中国人民解放军战略支援部队航天工程大学 A kind of information interacting method and system

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7769869B2 (en) * 2006-08-21 2010-08-03 Citrix Systems, Inc. Systems and methods of providing server initiated connections on a virtual private network

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101217464A (en) * 2007-12-28 2008-07-09 北京大学 UDP data package transmission method
CN103166824A (en) * 2011-12-13 2013-06-19 华为技术有限公司 Interconnection method, device and system
CN105553977A (en) * 2015-12-15 2016-05-04 网易(杭州)网络有限公司 Request message processing and transmitting method and device
CN108650301A (en) * 2018-04-17 2018-10-12 厦门睿洽科技有限公司 The method based on android system for keeping UDP long connections
CN109298943A (en) * 2018-10-11 2019-02-01 四川长虹电器股份有限公司 Concurrent processing method for UDP server
CN109474670A (en) * 2018-10-22 2019-03-15 中国人民解放军战略支援部队航天工程大学 A kind of information interacting method and system

Also Published As

Publication number Publication date
CN110166479A (en) 2019-08-23

Similar Documents

Publication Publication Date Title
CN110166479B (en) Method for improving UDP (user Datagram protocol) sending efficiency of transmission system
JP3981596B2 (en) Method and apparatus for transmitting data in a communication system
US5627829A (en) Method for reducing unnecessary traffic over a computer network
CN110809905B (en) Method and system for using remote subscriber identity module at device
CN108234087B (en) Data transmission method and sending end
CN108702798B (en) Data transmission method and device
JP5447522B2 (en) Communication between client and server in mobile radio communication device
EP3525421B1 (en) Data transmission method and apparatus
JP4750356B2 (en) Improved interaction method between user application and server
CN107682262B (en) Communication path processing method and device
CN106027599B (en) Data transmission channel establishing method, system and server
US20060056379A1 (en) System and method for network-assisted connection in a wireless environment
CN114815782A (en) Remote diagnosis method, apparatus, device and medium
CN110912942B (en) Method for reducing UDP message sending time delay
CN107454659A (en) A kind of terminal identification method, system, terminal device and base station
US8811358B2 (en) Network-initiated method and system for establishing data communication using IP with a wireless terminal
CN107431965B (en) Method and device for realizing Transmission Control Protocol (TCP) transmission
CN103281369A (en) Message processing method and WOC (WAN (wide area network) optimization controller)
CN112202780B (en) Data transmission method, device, equipment and medium based on double sockets
US20140177575A1 (en) Method for establishing an application session, device and corresponding notification
CN104219178A (en) Openflow-based control message processing method, Openflow-based control message transmitting device, Openflow-based control message receiving device and Openflow-based control message processing system
EP2938031A1 (en) Service offload method and device for accessing internet
US7243159B1 (en) On demand capability exchange
CN110620778B (en) Method for simultaneously supporting synchronous and asynchronous communication modes of socket
CN118175149A (en) Data transmission method and device, storage medium and electronic equipment

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
CP01 Change in the name or title of a patent holder
CP01 Change in the name or title of a patent holder

Address after: 518000 17th floor, block B, Sunshine Technology Innovation Center, No.2 Shanghua Road, Nanshan street, Nanshan District, Shenzhen City, Guangdong Province

Patentee after: Shenzhen Ruiyun Technology Co.,Ltd.

Patentee after: SHENZHEN YUNYU TECHNOLOGY Co.,Ltd.

Address before: 518000 17th floor, block B, Sunshine Technology Innovation Center, No.2 Shanghua Road, Nanshan street, Nanshan District, Shenzhen City, Guangdong Province

Patentee before: SHENZHEN RAYVISION TECHNOLOGY CO.,LTD.

Patentee before: SHENZHEN YUNYU TECHNOLOGY Co.,Ltd.