Home | History | Annotate | Download | only in http

Lines Matching full:baseconfig

2083 	if hs := opts.baseConfig(); hs != nil {
3064 BaseConfig: hs,
3073 // BaseConfig optionally sets the base configuration
3075 BaseConfig *Server
3078 // requests. If nil, BaseConfig.Handler is used. If BaseConfig
3079 // or BaseConfig.Handler is nil, http.DefaultServeMux is used.
3083 func (o *http2ServeConnOpts) baseConfig() *Server {
3084 if o != nil && o.BaseConfig != nil {
3085 return o.BaseConfig
3095 if o.BaseConfig != nil && o.BaseConfig.Handler != nil {
3096 return o.BaseConfig.Handler
3122 hs: opts.baseConfig(),