Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/netPublic
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also orlearn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also.Learn more about diff comparisons here.
base repository:golang/net
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:v0.20.0
Choose a base ref
Loading
...
head repository:golang/net
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:v0.21.0
Choose a head ref
Loading
  • 7commits
  • 11files changed
  • 7contributors

Commits on Jan 8, 2024

  1. quic: avoid deadlock in Endpoint.Close

    Don't hold Endpoint.connsMu while calling Conn methods that canindirectly depend on acquiring it.Also change test cleanup to not wait for connections to drainwhen closing a test Endpoint, removing an unnecessary 0.1s delayin test runtime.Fixesgolang/go#64982.Change-Id: If336e63b0a7f5b8d2ef63986d36f9ee38a92c477Reviewed-on:https://go-review.googlesource.com/c/net/+/554695Reviewed-by: Jonathan Amsterdam <jba@google.com>LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    @neild
    neild committedJan 8, 2024
    1Configuration menu
    Copy the full SHA
    26b646eView commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. http2: remove suspicious uint32->v conversion in frame code

    Function maxHeaderStringLen(...) uses uint32(int(v)) == v check to validateif length will fit in the int type.This check is a no-op on any architecture because int type always has atleast 32 bits, so we can potentially encounter negative return values frommaxHeaderStringLen(...) function. This can be bad as this outcome clearlybreaks code intention and maybe some further code invariants.This patch replaces uint32(int(v)) == v check with more robust and simplerint(v) > 0 validation which is correct for our case when we operating withuint32Fixesgolang/go#64961Change-Id: I31f95709df9d25593ade3200696ac5cef9f88652Reviewed-on:https://go-review.googlesource.com/c/net/+/554235Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>Reviewed-by: Damien Neil <dneil@google.com>LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    @sivukhin@gopherbot
    sivukhin authored andgopherbot committedJan 10, 2024
    1Configuration menu
    Copy the full SHA
    07e05fdView commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. http2: avoid goroutine starvation in TestServer_Push_RejectAfterGoAway

    CL 557037 added a runtime.Gosched to prevent goroutine starvationin the wasm fake-net stack. Unfortunately, that Gosched causes thescheduler to enter a very similar starvation loop in this test.Add another runtime.Gosched to break this new loop.Forgolang/go#65178.Change-Id: I24b3f50dd728800462f71f27290b0d8f99d5ae5bCq-Include-Trybots: luci.golang.try:x_net-gotip-wasip1-wasm_wasmtime,x_net-gotip-wasip1-wasm_wazero,x_net-gotip-js-wasmReviewed-on:https://go-review.googlesource.com/c/net/+/557615Auto-Submit: Bryan Mills <bcmills@google.com>LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>Reviewed-by: Michael Pratt <mpratt@google.com>
    @gopherbot
    Bryan C. Mills authored andgopherbot committedJan 22, 2024
    Configuration menu
    Copy the full SHA
    0d0b98cView commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. internal/quic/qlog: fix typo

    VantageClient -> VantageServerChange-Id: Ie9738cffb06f03f961815853247e6f9cbe7fe466GitHub-Last-Rev:5d440adGitHub-Pull-Request:#202Reviewed-on:https://go-review.googlesource.com/c/net/+/555795LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>Reviewed-by: Michael Knyszek <mknyszek@google.com>Reviewed-by: Damien Neil <dneil@google.com>Auto-Submit: Damien Neil <dneil@google.com>
    @btwiuse@gopherbot
    btwiuse authored andgopherbot committedJan 31, 2024
    Configuration menu
    Copy the full SHA
    b2208d0View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2024

  1. dns/dnsmessage: allow name compression for SRV resource parsing

    As per RFC 3597:Receiving servers MUST decompress domain names in RRs of well-known   type, and SHOULD also decompress RRs of type RP, AFSDB, RT, SIG, PX,   NXT, NAPTR, and SRV (although the current specification of the SRV RR   in RFC2782 prohibits compression, RFC2052 mandated it, and some   servers following that earlier specification are still in use).This change allows SRV resource decompression.Updatesgolang/go#36718Updatesgolang/go#37362Change-Id: I473c0d3803758e5b12886f378d2ed54bd5392144GitHub-Last-Rev:88d2e06GitHub-Pull-Request:#199Reviewed-on:https://go-review.googlesource.com/c/net/+/540375LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>Reviewed-by: Carlos Amedee <carlos@golang.org>Auto-Submit: Damien Neil <dneil@google.com>Reviewed-by: Damien Neil <dneil@google.com>
    @mateusz834@gopherbot
    mateusz834 authored andgopherbot committedFeb 3, 2024
    Configuration menu
    Copy the full SHA
    73e4b50View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. html: fix SOLIDUS '/' handling in attribute parsing

    Calling the Tokenizer with HTML elements containing SOLIDUS (/) characterin the attribute name results in incorrect tokenization.This is due to violation of the following rule transitions in the WHATWG spec:-https://html.spec.whatwg.org/multipage/parsing.html#attribute-name-state,  where we are not reconsuming the character if '/' is encountered-https://html.spec.whatwg.org/multipage/parsing.html#after-attribute-name-state,  where we are not switching to self closing stateFixesgolang/go#63402Change-Id: I90d998dd8decde877bd63aa664f3657aa6161024GitHub-Last-Rev:3546db8GitHub-Pull-Request:#195Reviewed-on:https://go-review.googlesource.com/c/net/+/533518LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>Auto-Submit: Michael Pratt <mpratt@google.com>Reviewed-by: Roland Shoemaker <roland@golang.org>Reviewed-by: David Chase <drchase@google.com>
    @maciekmm@gopherbot
    maciekmm authored andgopherbot committedFeb 7, 2024
    Configuration menu
    Copy the full SHA
    643fd16View commit details
    Browse the repository at this point in the history
  2. go.mod: update golang.org/x dependencies

    Update golang.org/x dependencies to their latest tagged versions.Change-Id: I314af161ceac84fec04c729a71860ad35335513bReviewed-on:https://go-review.googlesource.com/c/net/+/562495Auto-Submit: Gopher Robot <gobot@golang.org>Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>Reviewed-by: Than McIntosh <thanm@google.com>
    @gopherbot
    gopherbot committedFeb 7, 2024
    Configuration menu
    Copy the full SHA
    73d21fdView commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp