WeidiDeng
WeidiDeng
comment the line “add_compile_options(-std=c++11)” in CMakeLists.txt, [this commit](https://github.com/felixendres/rgbdslam_v2/pull/97) breaks rgbdslam, the process segment faults at start because pcl has to be compiled with c++11
Google docs is not working in China and it relies on third party website. I think [this](https://www.npmjs.com/package/pdf-viewer) is better.
Copying code is indeed such a chore. Alternatively, I can think of another way. h2c check condition is pretty easy to copy, but we cannot access the net.Conn after the...
Upstream pr has been [submitted](https://github.com/golang/net/pull/139), I wonder how long that will take, since [http2.Transport.DialTlsContext](https://github.com/golang/net/pull/123) is stuck there for months.
Just using wget to pull http://localhost:2019/debug/pprof/heap and http://localhost:2019/debug/pprof/profile?seconds=30 at an interval and post the resulting file here, I haven't added any debug output yet.
> Thanks for working on this! > > So, my understanding of this is, that it allows us to serve HTTP/2 even if the underlying Conn is wrapped by a...
@mholt I noticed you don't allow serve [only http2](https://github.com/caddyserver/caddy/blob/c7772588bd44ceffcc0ba4817e4d43c826675379/modules/caddyhttp/app.go#L189), if you want, I can use http2.Server.ServeConn in this case.
@mholt I looked at you code, that's because http2.Server requires tls handshake to be complete, if there is any. To be fair, http2.Server can serve h2c with prior knowledge, that's...
Hi, is there anyone working on this feature? I can provide a pr if wanted.
I read reverse_proxy code and findout if response is 101, reverse_proxy will do a hijack and take it from [there.](https://github.com/caddyserver/caddy/blob/master/modules/caddyhttp/reverseproxy/reverseproxy.go#L883). Per http.Server [documentation](https://pkg.go.dev/net/http#Server.Shutdown), reverse_proxy should register a shutdown [function](https://pkg.go.dev/net/http#Server.RegisterOnShutdown). I...