WGH

Results 29 issues of WGH

This happens when you use custom dialer that returns custom `net.Conn` that returns a non-`*net.TCPAddr` `net.Addr` for `LocalAddr()` calls. For example, if you dial through an SSH connection, it might...

Fixes compilation failures in distributions that have 'python' refer to Python 3. See issue #92.

This makes the code a bit better, as it makes these odd indirections (pointer to interface) unnecessary, and fixes one logger call that happens inside New() before caller has any...

I have a webserver bound to `[::1]:8080`. When I use the following plan: ```yaml --- base: 'http://localhost:8080' iterations: 1000 concurrency: 10 plan: - name: aaa request: url: /aaa.txt ``` All...

libtorrent version (or branch): version: 1.2.6.0 ac4dd411c platform/architecture: Linux/amd64 compiler and compiler version: gcc 9.3.0 I'm not sure whether this is qBittorrent's or libtorrent's problem, but the error message asks...

As specified in the manual (see RM0008, "23.4.4 Isochronous transfers"), isochronous endpoints on usbfs_v1 hardware are always implicitly in double-buffered mode. Current libopencm3 code doesn't support this, so isochronous endpoints...

As of now, Colly parses URLs with Go stdlib's `net/url` parser. This parser is somewhat simple, and doesn't do some quirks that browsers do. Since Colly is a web crawling...

bug
enhancement

This program ```c++ #include #include #include #include #include int main(void) { auto modsec = std::make_unique(); auto rules = std::make_unique(); int res = rules->load(R"EOM( SecRule ARGS \ "@rx bash" \ "id:1,\...

3.x

Simple input `String r` crashes the parser with infinite recursion. ```go func TestInfiniteRecursion(t *testing.T) { body := `String r` source := source.NewSource(&source.Source{ Body: []byte(body), }) _, err := Parse( ParseParams{...

Although the type annotations for `buffer()` and `_bufread()` say `bytes`, it will actually return `str` if underlying `Network.getResponseBody` returns non-base64 encoded string (which happens fairly often).