msgid ""
msgstr ""
"Project-Id-Version: English (cnp3-ebook)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-04-19 04:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: English <https://weblate.info.ucl.ac.be/projects/cnp3-ebook/"
"exercisessockets/en/>\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.14.3\n"

#: ../../exercises/sockets.rst:4
#, read-only
msgid "Using sockets for inter-process communication"
msgstr "Using sockets for inter-process communication"

#: ../../exercises/sockets.rst:7
#, read-only
msgid ""
"Popular operating systems allow isolating different programs by executing "
"them in separate `processes`. A :term:`socket` is a tool provided by the "
"operating system that enables two separated processes to communicate with "
"each other. A socket takes the form of a file descriptor and can be seen as "
"a communication pipe through which the communicating processes can exchange "
"arbitrary information. In order to receive a message, a process must be "
"attached to a specific :term:`address` that the peer can use to reach it."
msgstr ""
"Popular operating systems allow isolating different programs by executing "
"them in separate `processes`. A :term:`socket` is a tool provided by the "
"operating system that enables two separated processes to communicate with "
"each other. A socket takes the form of a file descriptor and can be seen as "
"a communication pipe through which the communicating processes can exchange "
"arbitrary information. In order to receive a message, a process must be "
"attached to a specific :term:`address` that the peer can use to reach it."

#: ../../exercises/sockets.rst:52
#, read-only
msgid ""
"The socket is a powerful abstraction as it allows processes to communicate "
"even if they are located on different computers. In this specific cases, the "
"inter-processes communication will go through a network."
msgstr ""
"The socket is a powerful abstraction as it allows processes to communicate "
"even if they are located on different computers. In this specific cases, the "
"inter-processes communication will go through a network."

#: ../../exercises/sockets.rst:96
#, read-only
msgid ""
"Networked applications were usually implemented by using the :term:`socket` "
":term:`API`. This API was designed when TCP/IP was first implemented in the `"
"Unix BSD`_ operating system [Sechrest]_ [LFJLMT]_, and has served as the "
"model for many APIs between applications and the networking stack in an "
"operating system. Although the socket API is very popular, other APIs have "
"also been developed. For example, the STREAMS API has been added to several "
"Unix System V variants [Rago1993]_. The socket API is supported by most "
"programming languages and several textbooks have been devoted to it. Users "
"of the C language can consult [DC2009]_, [Stevens1998]_, [SFR2004]_ or "
"[Kerrisk2010]_. The Java implementation of the socket API is described in "
"[CD2008]_ and in the `Java tutorial <http://java.sun.com/docs/books/tutorial/"
"networking/sockets/index.html>`_. In this section, we will use the C socket "
"API to illustrate the key concepts."
msgstr ""
"Networked applications were usually implemented by using the :term:`socket` "
":term:`API`. This API was designed when TCP/IP was first implemented in the `"
"Unix BSD`_ operating system [Sechrest]_ [LFJLMT]_, and has served as the "
"model for many APIs between applications and the networking stack in an "
"operating system. Although the socket API is very popular, other APIs have "
"also been developed. For example, the STREAMS API has been added to several "
"Unix System V variants [Rago1993]_. The socket API is supported by most "
"programming languages and several textbooks have been devoted to it. Users "
"of the C language can consult [DC2009]_, [Stevens1998]_, [SFR2004]_ or "
"[Kerrisk2010]_. The Java implementation of the socket API is described in "
"[CD2008]_ and in the `Java tutorial <http://java.sun.com/docs/books/tutorial/"
"networking/sockets/index.html>`_. In this section, we will use the C socket "
"API to illustrate the key concepts."

#: ../../exercises/sockets.rst:98
#, read-only
msgid ""
"The socket API is quite low-level and should be used only when you need a "
"complete control of the network access. If your application simply needs, "
"for instance, to retrieve data from a web server, there are much simpler and "
"higher-level APIs."
msgstr ""
"The socket API is quite low-level and should be used only when you need a "
"complete control of the network access. If your application simply needs, "
"for instance, to retrieve data from a web server, there are much simpler and "
"higher-level APIs."

#: ../../exercises/sockets.rst:100
#, read-only
msgid ""
"A detailed discussion of the socket API is outside the scope of this section "
"and the references cited above provide a detailed discussion of all the  "
"details of the socket API. As a starting point, it is interesting to compare "
"the socket API with the service primitives that we have discussed in the "
"previous chapter. Let us first consider the connectionless service that "
"consists of the following two primitives :"
msgstr ""
"A detailed discussion of the socket API is outside the scope of this section "
"and the references cited above provide a detailed discussion of all the  "
"details of the socket API. As a starting point, it is interesting to compare "
"the socket API with the service primitives that we have discussed in the "
"previous chapter. Let us first consider the connectionless service that "
"consists of the following two primitives :"

#: ../../exercises/sockets.rst:102
#, read-only
msgid ""
"`DATA.request(destination,message)` is used to send a message to a specified "
"destination. In this socket API, this corresponds to the ``send`` method."
msgstr ""
"`DATA.request(destination,message)` is used to send a message to a specified "
"destination. In this socket API, this corresponds to the ``send`` method."

#: ../../exercises/sockets.rst:103
#, read-only
msgid ""
"`DATA.indication(message)` is issued by the transport service to deliver a "
"message to the application. In the socket API, this corresponds to the "
"return of the ``recv`` method that is called by the application."
msgstr ""
"`DATA.indication(message)` is issued by the transport service to deliver a "
"message to the application. In the socket API, this corresponds to the "
"return of the ``recv`` method that is called by the application."

#: ../../exercises/sockets.rst:105
#, read-only
msgid ""
"The `DATA` primitives are exchanged through a service access point. In the "
"socket API, the equivalent to the service access point is the `socket`. A "
"`socket` is a data structure which is maintained by the networking stack and "
"is used by the application every time it needs to send or receive data "
"through the networking stack."
msgstr ""
"The `DATA` primitives are exchanged through a service access point. In the "
"socket API, the equivalent to the service access point is the `socket`. A "
"`socket` is a data structure which is maintained by the networking stack and "
"is used by the application every time it needs to send or receive data "
"through the networking stack."

#: ../../exercises/sockets.rst:108
#, read-only
msgid "Sending data to a peer using a socket"
msgstr "Sending data to a peer using a socket"

#: ../../exercises/sockets.rst:110
#, read-only
msgid ""
"In order to reach a peer, a process must know its :term:`address`. An "
"address is a value that identifies a peer in a given network. There exists "
"many different kinds of address families. For example, some of them allow "
"reaching a peer using the file system on the computer. Some others enable "
"communicating with a remote peer through a network. The socket API provides "
"generic functions: the peer address is taken as a ``struct sockaddr *``, "
"which can point to any family of address. This is partly why sockets are a "
"powerful abstraction."
msgstr ""
"In order to reach a peer, a process must know its :term:`address`. An "
"address is a value that identifies a peer in a given network. There exists "
"many different kinds of address families. For example, some of them allow "
"reaching a peer using the file system on the computer. Some others enable "
"communicating with a remote peer through a network. The socket API provides "
"generic functions: the peer address is taken as a ``struct sockaddr *``, "
"which can point to any family of address. This is partly why sockets are a "
"powerful abstraction."

#: ../../exercises/sockets.rst:112
#, read-only
msgid ""
"The ``sendto`` system call allows to send data to a peer identified by its "
"socket address through a given socket."
msgstr ""
"The ``sendto`` system call allows to send data to a peer identified by its "
"socket address through a given socket."

#: ../../exercises/sockets.rst:118
#, read-only
msgid ""
"The first argument is the file descriptor of the socket that we use to "
"perform the communication. ``buf`` is a buffer of length ``len`` containing "
"the bytes to send to the peer. The usage of ``flags`` argument is out of the "
"scope of this section and can be set to 0. ``dest_addr`` is the socket "
"address of the destination to which we want to send the bytes, its length is "
"passed using the ``addrlen`` argument."
msgstr ""
"The first argument is the file descriptor of the socket that we use to "
"perform the communication. ``buf`` is a buffer of length ``len`` containing "
"the bytes to send to the peer. The usage of ``flags`` argument is out of the "
"scope of this section and can be set to 0. ``dest_addr`` is the socket "
"address of the destination to which we want to send the bytes, its length is "
"passed using the ``addrlen`` argument."

#: ../../exercises/sockets.rst:120
#, read-only
msgid ""
"In the following example, a C program is sending the bytes ``'h'``, ``'e'``, "
"``'l'``, ``'l'`` and ``'o'`` to a remote process located at address "
"``peer_addr``, using the already created socket ``sock``."
msgstr ""
"In the following example, a C program is sending the bytes ``'h'``, ``'e'``, "
"``'l'``, ``'l'`` and ``'o'`` to a remote process located at address "
"``peer_addr``, using the already created socket ``sock``."

#: ../../exercises/sockets.rst:133
#, read-only
msgid ""
"As the ``sendto`` function is generic, this function will work correctly "
"independently from the fact that the peer's address is defined as a path on "
"the computer filesystem or a network address."
msgstr ""
"As the ``sendto`` function is generic, this function will work correctly "
"independently from the fact that the peer's address is defined as a path on "
"the computer filesystem or a network address."

#: ../../exercises/sockets.rst:137
#, read-only
msgid "Receiving data from a peer using a socket"
msgstr "Receiving data from a peer using a socket"

#: ../../exercises/sockets.rst:139
#, read-only
msgid ""
"Operating systems allow assigning an address to a socket using the ``bind`` "
"system call. This is useful when you want to receive messages from another "
"program to which you announced your socket address. Once the address is "
"assigned to the socket, the program can receive data from others using "
"system calls such as ``recv`` and ``read``. Note that we can use the ``read``"
" system call as the operating system provides a socket as a file descriptor."
msgstr ""
"Operating systems allow assigning an address to a socket using the ``bind`` "
"system call. This is useful when you want to receive messages from another "
"program to which you announced your socket address. Once the address is "
"assigned to the socket, the program can receive data from others using "
"system calls such as ``recv`` and ``read``. Note that we can use the ``read``"
" system call as the operating system provides a socket as a file descriptor."

#: ../../exercises/sockets.rst:142
#, read-only
msgid ""
"The following program binds its socket to a given socket address and then "
"waits for receiving new bytes, using the already created socket ``sock``."
msgstr ""
"The following program binds its socket to a given socket address and then "
"waits for receiving new bytes, using the already created socket ``sock``."

#: ../../exercises/sockets.rst:171
#, read-only
msgid ""
"Depending on the socket address family, the operating system might "
"implicitly assign an address to an unbound socket upon a call to ``write``, "
"``send`` or ``sendto``. While this is a useful behavior, describing it "
"precisely is out of the scope of this section."
msgstr ""
"Depending on the socket address family, the operating system might "
"implicitly assign an address to an unbound socket upon a call to ``write``, "
"``send`` or ``sendto``. While this is a useful behavior, describing it "
"precisely is out of the scope of this section."

#: ../../exercises/sockets.rst:175
#, read-only
msgid ""
"While the provided examples show the usage of a `char` array as the data "
"buffer, implementers should **never** assume that it contains a string. C "
"programs rely on the `char` type to refer to a 8-bit long value, and "
"arbitrary binary values can be exchanged over the network "
"(i.e., the ``\\0`` value does not delimit the end of the data)."
msgstr ""
"While the provided examples show the usage of a `char` array as the data "
"buffer, implementers should **never** assume that it contains a string. C "
"programs rely on the `char` type to refer to a 8-bit long value, and "
"arbitrary binary values can be exchanged over the network "
"(i.e., the ``\\0`` value does not delimit the end of the data)."

#: ../../exercises/sockets.rst:177
#, read-only
msgid ""
"Using this code, the program will read and print an arbitrary message "
"received from an arbitrary peer who knows the program's socket address. If "
"we want to know the address of the peer that sent us the message, we can use "
"the ``recvfrom`` system call. This is what a modified version of "
"``bind_and_receive_from_peer`` is doing below."
msgstr ""
"Using this code, the program will read and print an arbitrary message "
"received from an arbitrary peer who knows the program's socket address. If "
"we want to know the address of the peer that sent us the message, we can use "
"the ``recvfrom`` system call. This is what a modified version of "
"``bind_and_receive_from_peer`` is doing below."

#: ../../exercises/sockets.rst:215
#, read-only
msgid ""
"This function is now using the ``recvfrom`` system call that will also "
"provide the address of the peer who sent the message. As addresses are "
"generic and can have different sizes, ``recvfrom`` also tells us the size of "
"the address that it has written."
msgstr ""
"This function is now using the ``recvfrom`` system call that will also "
"provide the address of the peer who sent the message. As addresses are "
"generic and can have different sizes, ``recvfrom`` also tells us the size of "
"the address that it has written."

#: ../../exercises/sockets.rst:218
#, read-only
msgid "``connect``: connecting a socket to a remote address"
msgstr "``connect``: connecting a socket to a remote address"

#: ../../exercises/sockets.rst:220
#, read-only
msgid ""
"Operating systems enable linking a socket to a remote address so that every "
"information sent through the socket will only be sent to this remote "
"address, and the socket will only receive messages sent by this remote "
"address. This can be done using the ``connect`` system call shown below."
msgstr ""
"Operating systems enable linking a socket to a remote address so that every "
"information sent through the socket will only be sent to this remote "
"address, and the socket will only receive messages sent by this remote "
"address. This can be done using the ``connect`` system call shown below."

#: ../../exercises/sockets.rst:226
#, read-only
msgid ""
"This system call will assign the socket ``sockfd`` to the ``addr`` remote "
"socket address. The process can then use the ``send`` and ``write`` system "
"calls that do not to specify the destination socket address. Furthermore, "
"the calls to ``recv`` and ``read`` will only deliver messages sent by this "
"remote address. This is useful when we only care about the other peer "
"messages."
msgstr ""
"This system call will assign the socket ``sockfd`` to the ``addr`` remote "
"socket address. The process can then use the ``send`` and ``write`` system "
"calls that do not to specify the destination socket address. Furthermore, "
"the calls to ``recv`` and ``read`` will only deliver messages sent by this "
"remote address. This is useful when we only care about the other peer "
"messages."

#: ../../exercises/sockets.rst:229
#, read-only
msgid ""
"The following program connects a socket to a remote address, sends a message "
"and waits for a reply."
msgstr ""
"The following program connects a socket to a remote address, sends a message "
"and waits for a reply."

#: ../../exercises/sockets.rst:261
#, read-only
msgid "Creating a new socket to communicate through a network"
msgstr "Creating a new socket to communicate through a network"

#: ../../exercises/sockets.rst:263
#, read-only
msgid ""
"Until now, we learned how to use sockets that were already created. When "
"writing a whole program, you will have to create you own sockets and choose "
"the concrete technology that it will use to communicate with others. In this "
"section, we will create new sockets and allow a program to communicate with "
"processes located on another computer using a network. The most recent "
"standardized technology used to communicate through a network is the "
":term:`IPv6` network protocol. In the IPv6 protocol, hosts are identified "
"using *IPv6 addresses*. Modern operating systems allow IPv6 network "
"communications between programs to be done using the socket API, just as we "
"did in the previous sections."
msgstr ""
"Until now, we learned how to use sockets that were already created. When "
"writing a whole program, you will have to create you own sockets and choose "
"the concrete technology that it will use to communicate with others. In this "
"section, we will create new sockets and allow a program to communicate with "
"processes located on another computer using a network. The most recent "
"standardized technology used to communicate through a network is the "
":term:`IPv6` network protocol. In the IPv6 protocol, hosts are identified "
"using *IPv6 addresses*. Modern operating systems allow IPv6 network "
"communications between programs to be done using the socket API, just as we "
"did in the previous sections."

#: ../../exercises/sockets.rst:266
#, read-only
msgid "A program can use the ``socket`` system call to create a new socket."
msgstr "A program can use the ``socket`` system call to create a new socket."

#: ../../exercises/sockets.rst:272
#, read-only
msgid ""
"The ``domain`` parameter specifies the address family that we will use to "
"concretely perform the communication. For an IPv6 socket, the ``domain`` "
"parameter will be set to the value ``AF_INET6``, telling the operating "
"system that we plan to communicate using IPv6 addresses. The ``type`` "
"parameter specifies the communication guarantees that we need. For now, we "
"will use the type ``SOCK_DGRAM`` which allows us to send *unreliable "
"messages*. This means that each data that we send at each call of ``sendto`` "
"will either be completely received or not received at all. The last "
"parameter will be set to ``0``. The following line creates a socket, telling "
"the operating system that we want to communicate using IPv6 addresses and "
"that we want to send unreliable messages."
msgstr ""
"The ``domain`` parameter specifies the address family that we will use to "
"concretely perform the communication. For an IPv6 socket, the ``domain`` "
"parameter will be set to the value ``AF_INET6``, telling the operating "
"system that we plan to communicate using IPv6 addresses. The ``type`` "
"parameter specifies the communication guarantees that we need. For now, we "
"will use the type ``SOCK_DGRAM`` which allows us to send *unreliable "
"messages*. This means that each data that we send at each call of ``sendto`` "
"will either be completely received or not received at all. The last "
"parameter will be set to ``0``. The following line creates a socket, telling "
"the operating system that we want to communicate using IPv6 addresses and "
"that we want to send unreliable messages."

#: ../../exercises/sockets.rst:282
#, read-only
msgid "Sending a message to a remote peer using its IPv6 address"
msgstr "Sending a message to a remote peer using its IPv6 address"

#: ../../exercises/sockets.rst:286
#, read-only
msgid ""
"Now that we created an IPv6 socket, we can use it to reach another program "
"if we know its IPv6 address. IPv6 addresses have a human-readable format "
"that can be represented as a string of characters. The details of IPv6 "
"addresses are out of scope of this section but here are some examples :"
msgstr ""
"Now that we created an IPv6 socket, we can use it to reach another program "
"if we know its IPv6 address. IPv6 addresses have a human-readable format "
"that can be represented as a string of characters. The details of IPv6 "
"addresses are out of scope of this section but here are some examples :"

#: ../../exercises/sockets.rst:285
#, read-only
msgid ""
"The ``::1`` IPv6 address identifies the computer on which the current "
"program is running."
msgstr ""
"The ``::1`` IPv6 address identifies the computer on which the current "
"program is running."

#: ../../exercises/sockets.rst:286
#, read-only
msgid ""
"The ``2001:6a8:308f:9:0:82ff:fe68:e520`` IPv6 address identifies the "
"computer serving the ``https://beta.computer-networking.info`` website."
msgstr ""
"The ``2001:6a8:308f:9:0:82ff:fe68:e520`` IPv6 address identifies the "
"computer serving the ``https://beta.computer-networking.info`` website."

#: ../../exercises/sockets.rst:290
#, read-only
msgid ""
"An IPv6 address often identifies a computer and not a program running on the "
"computer. In order to identify a specific program running on a specific "
"computer, we use a *port number* in addition to the IPv6 address. A program "
"using an IPv6 socket is this identified using :"
msgstr ""
"An IPv6 address often identifies a computer and not a program running on the "
"computer. In order to identify a specific program running on a specific "
"computer, we use a *port number* in addition to the IPv6 address. A program "
"using an IPv6 socket is this identified using :"

#: ../../exercises/sockets.rst:289
#, read-only
msgid "The IPv6 address of the computer"
msgstr "The IPv6 address of the computer"

#: ../../exercises/sockets.rst:290
#, read-only
msgid "The port number identifying the program running on the computer"
msgstr "The port number identifying the program running on the computer"

#: ../../exercises/sockets.rst:292
#, read-only
msgid ""
"A program can use the ``struct sockaddr_in6`` to represent IPv6 socket "
"addresses. The following program creates a ``struct sockaddr_in6`` that "
"identifies the program that reserved the port number ``55555`` on the "
"computer identified by the ``::1`` IPv6 address."
msgstr ""
"A program can use the ``struct sockaddr_in6`` to represent IPv6 socket "
"addresses. The following program creates a ``struct sockaddr_in6`` that "
"identifies the program that reserved the port number ``55555`` on the "
"computer identified by the ``::1`` IPv6 address."

#: ../../exercises/sockets.rst:303
#, read-only
msgid ""
"Now, we have built everything we need to send a message to the remote "
"program. The ``create_socket_and_send_message`` function below assembles all "
"the building blocks we created until now in order to send the message ``"
"\"hello\"`` to the program running on port ``55555`` on the computer "
"identified by the ``::1`` IPv6 address."
msgstr ""
"Now, we have built everything we need to send a message to the remote "
"program. The ``create_socket_and_send_message`` function below assembles all "
"the building blocks we created until now in order to send the message ``"
"\"hello\"`` to the program running on port ``55555`` on the computer "
"identified by the ``::1`` IPv6 address."

#: ../../exercises/sockets.rst:324
#, read-only
msgid ""
"Note that we can reuse our ``send_hello_to_peer`` function without any "
"modification as we wrote it to handle any kind of sockets, including sockets "
"using the IPv6 network protocol."
msgstr ""
"Note that we can reuse our ``send_hello_to_peer`` function without any "
"modification as we wrote it to handle any kind of sockets, including sockets "
"using the IPv6 network protocol."

#: ../../exercises/sockets.rst:328
#, read-only
msgid "Endianness: exchanging integers between different computers"
msgstr "Endianness: exchanging integers between different computers"

#: ../../exercises/sockets.rst:330
#, read-only
msgid ""
"Besides character strings, some applications also need to exchange 16 bits "
"and 32 bits fields such as integers. A naive solution would have been to "
"send the 16- or 32-bits field as it is encoded in the host's memory. "
"Unfortunately, there are different methods to store 16- or 32-bits fields in "
"memory. Some CPUs store the most significant byte of a 16-bits field in the "
"first address of the field while others store the least significant byte at "
"this location. When networked applications running on different CPUs "
"exchange 16 bits fields, there are two possibilities to transfer them over "
"the transport service :"
msgstr ""
"Besides character strings, some applications also need to exchange 16 bits "
"and 32 bits fields such as integers. A naive solution would have been to "
"send the 16- or 32-bits field as it is encoded in the host's memory. "
"Unfortunately, there are different methods to store 16- or 32-bits fields in "
"memory. Some CPUs store the most significant byte of a 16-bits field in the "
"first address of the field while others store the least significant byte at "
"this location. When networked applications running on different CPUs "
"exchange 16 bits fields, there are two possibilities to transfer them over "
"the transport service :"

#: ../../exercises/sockets.rst:332
#, read-only
msgid "send the most significant byte followed by the least significant byte"
msgstr "send the most significant byte followed by the least significant byte"

#: ../../exercises/sockets.rst:333
#, read-only
msgid "send the least significant byte followed by the most significant byte"
msgstr "send the least significant byte followed by the most significant byte"

#: ../../exercises/sockets.rst:335
#, read-only
msgid ""
"The first possibility was named  `big-endian` in a note written by Cohen "
"[Cohen1980]_ while the second was named `little-endian`. Vendors of CPUs "
"that used `big-endian` in memory insisted on using `big-endian` encoding in "
"networked applications while vendors of CPUs that used `little-endian` "
"recommended the opposite. Several studies were written on the relative "
"merits of each type of encoding, but the discussion became almost a "
"religious issue [Cohen1980]_. Eventually, the Internet chose the `big-endian`"
" encoding, i.e. multi-byte fields are always transmitted by sending the most "
"significant byte first, :rfc:`791` refers to this encoding as the :term"
":`network-byte order`. Most libraries [#fhtonl]_ used to write networked "
"applications contain functions to convert multi-byte fields from memory to "
"the network byte order and the reverse."
msgstr ""
"The first possibility was named  `big-endian` in a note written by Cohen "
"[Cohen1980]_ while the second was named `little-endian`. Vendors of CPUs "
"that used `big-endian` in memory insisted on using `big-endian` encoding in "
"networked applications while vendors of CPUs that used `little-endian` "
"recommended the opposite. Several studies were written on the relative "
"merits of each type of encoding, but the discussion became almost a "
"religious issue [Cohen1980]_. Eventually, the Internet chose the `big-endian`"
" encoding, i.e. multi-byte fields are always transmitted by sending the most "
"significant byte first, :rfc:`791` refers to this encoding as the :term"
":`network-byte order`. Most libraries [#fhtonl]_ used to write networked "
"applications contain functions to convert multi-byte fields from memory to "
"the network byte order and the reverse."

#: ../../exercises/sockets.rst:337
#, read-only
msgid ""
"Besides 16 and 32 bit words, some applications need to exchange data "
"structures containing bit fields of various lengths. For example, a message "
"may be composed of a 16 bits field followed by eight, one bit flags, a 24 "
"bits field and two 8 bits bytes. Internet protocol specifications will "
"define such a message by using a representation such as the one below. In "
"this representation, each line corresponds to 32 bits and the vertical lines "
"are used to delineate fields. The numbers above the lines indicate the bit "
"positions in the 32-bits word, with the high order bit at position `0`."
msgstr ""
"Besides 16 and 32 bit words, some applications need to exchange data "
"structures containing bit fields of various lengths. For example, a message "
"may be composed of a 16 bits field followed by eight, one bit flags, a 24 "
"bits field and two 8 bits bytes. Internet protocol specifications will "
"define such a message by using a representation such as the one below. In "
"this representation, each line corresponds to 32 bits and the vertical lines "
"are used to delineate fields. The numbers above the lines indicate the bit "
"positions in the 32-bits word, with the high order bit at position `0`."

#: ../../exercises/sockets.rst:343
#, read-only
msgid "Message format"
msgstr "Message format"

#: ../../exercises/sockets.rst:345
#, read-only
msgid ""
"The message mentioned above will be transmitted starting from the upper 32-"
"bits word in network byte order. The first field is encoded in 16 bits. It "
"is followed by eight one bit flags (`A-H`), a 24 bits field whose high order "
"byte is shown in the first line and the two low order bytes appear in the "
"second line followed by two one byte fields. This ASCII representation is "
"frequently used when defining binary protocols. We will use it for all the "
"binary protocols that are discussed in this book."
msgstr ""
"The message mentioned above will be transmitted starting from the upper 32-"
"bits word in network byte order. The first field is encoded in 16 bits. It "
"is followed by eight one bit flags (`A-H`), a 24 bits field whose high order "
"byte is shown in the first line and the two low order bytes appear in the "
"second line followed by two one byte fields. This ASCII representation is "
"frequently used when defining binary protocols. We will use it for all the "
"binary protocols that are discussed in this book."

#: ../../exercises/sockets.rst:348
#, read-only
msgid "Exercises"
msgstr "Exercises"

#: ../../exercises/sockets.rst:350
#, read-only
msgid "Here are some exercises that will help you to learn how to use sockets."
msgstr "Here are some exercises that will help you to learn how to use sockets."

#: ../../exercises/sockets.rst:367
#, read-only
msgid ""
"During this course, you will be asked to implement a transport protocol "
"running on Linux devices. To prepare yourself, try to implement the protocol "
"described in the above tasks on your Linux personal machine. If you did "
"these exercises correctly, most of your answers can be used as it "
"(do not forget to include the required header files). In addition to the "
"previously produced code, you will need"
msgstr ""
"During this course, you will be asked to implement a transport protocol "
"running on Linux devices. To prepare yourself, try to implement the protocol "
"described in the above tasks on your Linux personal machine. If you did "
"these exercises correctly, most of your answers can be used as it "
"(do not forget to include the required header files). In addition to the "
"previously produced code, you will need"

#: ../../exercises/sockets.rst:369
#, read-only
msgid ""
"to wrap the ``create_and_send_message`` in a ``client`` executable that can "
"parse user arguments (the ``getopt(3)`` function might help) and "
"appropriately call the wrapped function;"
msgstr ""
"to wrap the ``create_and_send_message`` in a ``client`` executable that can "
"parse user arguments (the ``getopt(3)`` function might help) and "
"appropriately call the wrapped function;"

#: ../../exercises/sockets.rst:370
#, read-only
msgid ""
"to wrap the ``recv_and_handle_message`` server function in a ``server`` "
"executable, similarly to what you have done with the ``client`` executable."
msgstr ""
"to wrap the ``recv_and_handle_message`` server function in a ``server`` "
"executable, similarly to what you have done with the ``client`` executable."

#: ../../exercises/sockets.rst:372
#, read-only
msgid "As an example, here is what you could have to invoke your programs."
msgstr "As an example, here is what you could have to invoke your programs."

#: ../../exercises/sockets.rst:385
#, read-only
msgid ""
"If you want to observe the packets exchanged over the network, use a packet "
"dissector such as `wireshark`_ or `tcpdump`_, listen the loopback interface "
"(``lo``) and filter UDP packets using port 10000 "
"(``udp.port==10000`` in `wireshark`_, ``udp port 10000`` with `tcpdump`_)."
msgstr ""
"If you want to observe the packets exchanged over the network, use a packet "
"dissector such as `wireshark`_ or `tcpdump`_, listen the loopback interface "
"(``lo``) and filter UDP packets using port 10000 "
"(``udp.port==10000`` in `wireshark`_, ``udp port 10000`` with `tcpdump`_)."

#: ../../exercises/sockets.rst:389
#, read-only
msgid "Footnotes"
msgstr "Footnotes"

#: ../../exercises/sockets.rst:390
#, read-only
msgid ""
"For example, the ``htonl(3)`` (resp. ``ntohl(3)``) function the standard C "
"library converts a 32-bits unsigned integer from the byte order used by the "
"CPU to the network byte order "
"(resp. from the network byte order to the CPU byte order). Similar functions "
"exist in other programming languages."
msgstr ""
"For example, the ``htonl(3)`` (resp. ``ntohl(3)``) function the standard C "
"library converts a 32-bits unsigned integer from the byte order used by the "
"CPU to the network byte order "
"(resp. from the network byte order to the CPU byte order). Similar functions "
"exist in other programming languages."
