Socket UDP Programming Steps

Source: Internet
Author: User

The general steps of the server side of UDP programming are:
1, create a socket, with a function socket ();
3, binding IP address, port and other information to the socket, with the function bind ();
4, the loop receives sends the data, uses the function recvfrom (), sendto ();
5, close the network connection;

The general steps for UDP programming clients are:
1, create a socket, with a function socket ();
2, set the other IP address and port properties;
3, connect the server, with function connect ();
If the data is sent and received only once, this function can not be used;
If the loop sends the receive, then uses the Connect function here, because if does not have, when sendto () then after the server kill, then the client side is blocked at the Recvfrom place;
4, the loop sends receives the data, uses the function sendto (), recvfrom ();
5, close the network connection;

Socket UDP Programming Steps

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.