@@ -1012,7 +1012,7 @@ The :mod:`socket` module also offers various network-related services:
1012
1012
Convert an IPv4 address from dotted-quad string format (for example,
1013
1013
'123.45.67.89') to 32-bit packed binary format, as a bytes object four characters in
1014
1014
length. This is useful when conversing with a program that uses the standard C
1015
- library and needs objects of type :c:type: ` struct in_addr `, which is the C type
1015
+ library and needs objects of type :c:struct: ` in_addr `, which is the C type
1016
1016
for the 32-bit packed binary this function returns.
1017
1017
1018
1018
:func: `inet_aton ` also accepts strings with less than three dots; see the
@@ -1031,7 +1031,7 @@ The :mod:`socket` module also offers various network-related services:
1031
1031
Convert a 32-bit packed IPv4 address (a :term: `bytes-like object ` four
1032
1032
bytes in length) to its standard dotted-quad string representation (for example,
1033
1033
'123.45.67.89'). This is useful when conversing with a program that uses the
1034
- standard C library and needs objects of type :c:type: ` struct in_addr `, which
1034
+ standard C library and needs objects of type :c:struct: ` in_addr `, which
1035
1035
is the C type for the 32-bit packed binary data this function takes as an
1036
1036
argument.
1037
1037
@@ -1048,8 +1048,8 @@ The :mod:`socket` module also offers various network-related services:
1048
1048
1049
1049
Convert an IP address from its family-specific string format to a packed,
1050
1050
binary format. :func: `inet_pton ` is useful when a library or network protocol
1051
- calls for an object of type :c:type: ` struct in_addr ` (similar to
1052
- :func: `inet_aton `) or :c:type: ` struct in6_addr `.
1051
+ calls for an object of type :c:struct: ` in_addr ` (similar to
1052
+ :func: `inet_aton `) or :c:struct: ` in6_addr `.
1053
1053
1054
1054
Supported values for *address_family * are currently :const: `AF_INET ` and
1055
1055
:const: `AF_INET6 `. If the IP address string *ip_string * is invalid,
@@ -1069,8 +1069,8 @@ The :mod:`socket` module also offers various network-related services:
1069
1069
bytes) to its standard, family-specific string representation (for
1070
1070
example, ``'7.10.0.5' `` or ``'5aef:2b::8' ``).
1071
1071
:func: `inet_ntop ` is useful when a library or network protocol returns an
1072
- object of type :c:type: ` struct in_addr ` (similar to :func: `inet_ntoa `) or
1073
- :c:type: ` struct in6_addr `.
1072
+ object of type :c:struct: ` in_addr ` (similar to :func: `inet_ntoa `) or
1073
+ :c:struct: ` in6_addr `.
1074
1074
1075
1075
Supported values for *address_family * are currently :const: `AF_INET ` and
1076
1076
:const: `AF_INET6 `. If the bytes object *packed_ip * is not the correct
0 commit comments