github.com/goplus/igop@v0.17.0/pkg/net/http/httputil/go120_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //go:build go1.20 4 // +build go1.20 5 6 package httputil 7 8 import ( 9 q "net/http/httputil" 10 11 "reflect" 12 13 "github.com/goplus/igop" 14 ) 15 16 func init() { 17 igop.RegisterPackage(&igop.Package{ 18 Name: "httputil", 19 Path: "net/http/httputil", 20 Deps: map[string]string{ 21 "bufio": "bufio", 22 "bytes": "bytes", 23 "context": "context", 24 "errors": "errors", 25 "fmt": "fmt", 26 "io": "io", 27 "log": "log", 28 "mime": "mime", 29 "net": "net", 30 "net/http": "http", 31 "net/http/httptrace": "httptrace", 32 "net/http/internal": "internal", 33 "net/http/internal/ascii": "ascii", 34 "net/textproto": "textproto", 35 "net/url": "url", 36 "strings": "strings", 37 "sync": "sync", 38 "time": "time", 39 "vendor/golang.org/x/net/http/httpguts": "httpguts", 40 }, 41 Interfaces: map[string]reflect.Type{ 42 "BufferPool": reflect.TypeOf((*q.BufferPool)(nil)).Elem(), 43 }, 44 NamedTypes: map[string]reflect.Type{ 45 "ClientConn": reflect.TypeOf((*q.ClientConn)(nil)).Elem(), 46 "ProxyRequest": reflect.TypeOf((*q.ProxyRequest)(nil)).Elem(), 47 "ReverseProxy": reflect.TypeOf((*q.ReverseProxy)(nil)).Elem(), 48 "ServerConn": reflect.TypeOf((*q.ServerConn)(nil)).Elem(), 49 }, 50 AliasTypes: map[string]reflect.Type{}, 51 Vars: map[string]reflect.Value{ 52 "ErrClosed": reflect.ValueOf(&q.ErrClosed), 53 "ErrLineTooLong": reflect.ValueOf(&q.ErrLineTooLong), 54 "ErrPersistEOF": reflect.ValueOf(&q.ErrPersistEOF), 55 "ErrPipeline": reflect.ValueOf(&q.ErrPipeline), 56 }, 57 Funcs: map[string]reflect.Value{ 58 "DumpRequest": reflect.ValueOf(q.DumpRequest), 59 "DumpRequestOut": reflect.ValueOf(q.DumpRequestOut), 60 "DumpResponse": reflect.ValueOf(q.DumpResponse), 61 "NewChunkedReader": reflect.ValueOf(q.NewChunkedReader), 62 "NewChunkedWriter": reflect.ValueOf(q.NewChunkedWriter), 63 "NewClientConn": reflect.ValueOf(q.NewClientConn), 64 "NewProxyClientConn": reflect.ValueOf(q.NewProxyClientConn), 65 "NewServerConn": reflect.ValueOf(q.NewServerConn), 66 "NewSingleHostReverseProxy": reflect.ValueOf(q.NewSingleHostReverseProxy), 67 }, 68 TypedConsts: map[string]igop.TypedConst{}, 69 UntypedConsts: map[string]igop.UntypedConst{}, 70 }) 71 }