Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f3b968b

Browse files
authoredMay 31, 2024··
mi
1 parent 9d256b1 commit f3b968b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎labs/networking.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ socket 相关操作包括:
6767
这些调用的参数如下:
6868

6969
* ``net``(如果存在)用作对所使用的网络命名空间的引用;通常我们会使用 ``init_net`` 进行初始化;
70-
* ``family`` 表示在信息传输中使用的协议族;它们通常以 ``PF_``协议族字符串开头;表示所使用的协议族的常量可以在 :file:`linux/socket.h` 中找到,其中最常用的是 ``PF_INET``,用于 TCP/IP 协议;
71-
* ``type`` 是 socket 的类型;用于此参数的常量可以在 :file:`linux/net.h` 中找到,其中最常用的是 ``SOCK_STREAM`` (用于基于连接的源到目的地通信)以及 ``SOCK_DGRAM`` (用于无连接通信);
72-
* ``protocol`` 表示使用的协议,与 ``type`` 参数密切相关;用于此参数的常量可以在 :file:`linux/in.h` 中找到,其中最常用的是 ``IPPROTO_TCP`` (用于 TCP), ``IPPROTO_UDP`` (用于 UDP)。
70+
* ``family`` 表示在信息传输中使用的协议族;它们通常以 ``PF_`` (协议族) 字符串开头;表示所使用的协议族的常量可以在 :file:`linux/socket.h` 中找到,其中最常用的是 ``PF_INET``,用于 TCP/IP 协议;
71+
* ``type`` 是 socket 的类型;用于此参数的常量可以在 :file:`linux/net.h` 中找到,其中最常用的是 ``SOCK_STREAM`` (用于基于连接的源到目的地通信) 以及 ``SOCK_DGRAM`` (用于无连接通信);
72+
* ``protocol`` 表示使用的协议,与 ``type`` 参数密切相关;用于此参数的常量可以在 :file:`linux/in.h` 中找到,其中最常用的是 ``IPPROTO_TCP`` (用于 TCP),``IPPROTO_UDP`` (用于 UDP)。
7373

7474
要在内核空间中创建 TCP socket,你需要调用:
7575

0 commit comments

Comments
 (0)
Please sign in to comment.