Skip to content

Commit

Permalink
mi
Browse files Browse the repository at this point in the history
  • Loading branch information
hanyujie2002 authored May 31, 2024
1 parent 9d256b1 commit f3b968b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions labs/networking.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ socket 相关操作包括:
这些调用的参数如下:

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

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

Expand Down

0 comments on commit f3b968b

Please sign in to comment.