-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-37345: Add formal UDPLITE support #14258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
4dae4b3
8b7ec58
3e6763d
5c218dc
260489b
8f14db6
7c799b5
edef62e
16fe13b
9c4b602
5bfb271
fe02208
8c5ebba
828c486
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -200,6 +200,16 @@ created. Socket addresses are represented as follows: | |
|
||
.. versionadded:: 3.8 | ||
|
||
- :const:`IPPROTO_UDPLITE` is a variant on UDP which allows you to specify | ||
what portion of a packet to cover with the checksum. It adds the methods | ||
LivInTheLookingGlass marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please rephrase. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does the new version make this better in your eyes? |
||
:meth:`socket.set_send_checksum_coverage` to change what portion of | ||
outgoing packets are covered and :meth:`socket.set_recv_checksum_coverage` | ||
to filter out packets which cover too little of their data. | ||
|
||
..availability:: Linux >= 2.6.20 | ||
LivInTheLookingGlass marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.. versionadded:: 3.8 | ||
|
||
If you use a hostname in the *host* portion of IPv4/v6 socket address, the | ||
program may show a nondeterministic behavior, as Python uses the first address | ||
returned from the DNS resolution. The socket address will be resolved | ||
|
Uh oh!
There was an error while loading. Please reload this page.