Windows Socket network programming (1) -- TCP/IP architecture, features and Related Terms

Source: Internet
Author: User
Tags file transfer protocol

Link: http://www.vckbase.com/document/viewdoc? Id = 472

 

 

Windows Socket network programming (1)--TCP/IP architecture, characteristics, and Related Terms
Author:Freezing Point Studio Xiaoying

I. Architecture and features of TCP/IP

1. TCP/IP architecture

TCP/IP is actually a complete set of network protocols on the physical network. TCP provides the transport layer service, while IP provides the network layer service. TCP/IP includes the following protocols: (Structure: 1.1)

(Fig. 1.1)

IP: The internetprotocol is used to route data between hosts and store data on the network. The Group Sending service is also provided for ICMP, TCP, and UDP. User processes generally do not need to be involved in this layer.
ARP: Address Resolution Protocol)
This Protocol maps network addresses to hardware addresses.
RARP: Reverse Address Resolution Protocol)
This Protocol maps hardware addresses to network addresses
ICMP: inter-network message Control Protocol (Internet Control Message Protocol)
This protocol handles communication and host errors and transfer control.
TCP: Transmission Control Protocol)
This is a reliable full-duplex byte stream connection-oriented protocol for user processes. It provides virtual circuit services for user processes and establishes a check for reliable data transmission. (Note: Most network user programs use TCP)
UDP)
This is a connection-free protocol provided to the user process for data transmission without performing the correctness check.
FTP: File Transfer Protocol)
Allows users to communicate with another host through file operations (such as file addition, deletion, modification, query, and transfer.
SMTP: Simple Mail Transfer Protocol)
The SMTP protocol is used to send emails between systems.
TELNET: terminal protocol (Telnet terminal procotol)
Allow users to access remote hosts through virtual terminals
HTTP: Hypertext Transfer Protocol (Hypertext Transfer procotol)
TFTP: simple File Transfer Protocol (Trivial File Transfer Protocol)

2. TCP/IP features
The core part of TCP/IP is the transport layer protocol (TCP, UDP), network layer protocol (IP), and physical interface layer, which are usually implemented in the operating system kernel. Therefore, users generally do not. During programming, the programming interface has two forms: one is the system call directly provided by the Internal core; the other is the function provided by the library function. The former is nuclear implementation, and the latter is non-nuclear implementation. User services can only be implemented through applications outside the core, so it must be implemented through sockets.
Figure 1.2 shows the relationship between TCP/IP protocol core and applications.

(Fig. 1.2)

Ii. Special terms
1. Socket
It is the basic component of the network. It is a communication endpoint that can be named and addressable. Each socket in use has its type and a process connected to it. The socket exists in the communication area (also known as address cluster. The socket only exchanges data with the socket in the same region (a specific and conversion process must be executed across regions ). In Windows, sockets only support one domain-Internet domain. The socket has a type.
Windows Socket 1.1 supports two types of sockets: stream socket (sock_stream) and datagram socket (sock_dgram)

2. Windows Sockets implementation
A Windows Sockets implementation is a set of software that implements all the functions described in the Windows Sockets specification. Generally, it is implemented through DLL files.

3. Blocking processing routine
Blocking hook is a mechanism provided by Windows Sockets to support blocking socket function calls.

4. Multi-address broadcast (Multicast)
It is a one-to-multiple transmission mode. The transmission initiator transfers the information to a group of recipients after one transmission, and
(Unicast) corresponds to broadcast (broadcast.

Related Article

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.