Skip to content

Instantly share code, notes, and snippets.

View DigDeeply's full-sized avatar
🎯
Focusing

fukun DigDeeply

🎯
Focusing
View GitHub Profile
@DigDeeply
DigDeeply / grafefulHttp.go
Created January 16, 2019 06:41
a graceful http demo.
package main
import (
"context"
"fmt"
"io"
"log"
"net"
"net/http"
"os"
@DigDeeply
DigDeeply / HttpProxy.go
Created February 19, 2019 09:50
A proxy server support Http And Https
package main
import (
"fmt"
"io"
"log"
"net"
"net/url"
"strings"
)