http

package
v0.49.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 22, 2022 License: Apache-2.0 Imports: 12 Imported by: 100

Documentation

Overview

Package http implements crazy ideas for http optimizations that should be mostly std compatible.

Index

Constants

This section is empty.

Variables

View Source
var ErrNotImplemented = errors.New("not implemented")

ErrNotImplemented reports that handler is not implemented.

Functions

func CreateMultipartBody added in v0.35.0

func CreateMultipartBody(cb func(mw *multipart.Writer) error) (body io.ReadCloser, boundary string)

CreateMultipartBody is helper for streaming multipart/form-data.

func MatchContentType added in v0.40.0

func MatchContentType(pattern, value string) bool

MatchContentType returns true if value matches path pattern.

func NewRequest

func NewRequest(ctx context.Context, method string, u *url.URL, body io.Reader) (*http.Request, error)

NewRequest creates a new http.Request.

func SetBody added in v0.42.0

func SetBody(req *http.Request, body io.Reader, contentType string)

SetBody sets request body.

Types

type Client

type Client interface {
	Do(r *http.Request) (*http.Response, error)
}

Client represents http client.

type MultipartFile added in v0.35.0

type MultipartFile struct {
	Name   string
	File   io.Reader
	Header textproto.MIMEHeader
}

MultipartFile is multipart form file.

func (MultipartFile) WriteMultipart added in v0.35.0

func (m MultipartFile) WriteMultipart(fieldName string, w *multipart.Writer) error

WriteMultipart writes data from reader to given multipart.Writer as a form file.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL