Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SetRoundTripper not effective #325

Open
darren opened this issue Nov 9, 2021 · 0 comments
Open

SetRoundTripper not effective #325

darren opened this issue Nov 9, 2021 · 0 comments

Comments

@darren
Copy link

darren commented Nov 9, 2021

package main

import (
	"log"
	"net"
	"net/http"
	"net/url"

	"github.com/google/martian/v3"
)

func main() {
	p := martian.NewProxy()
	p.SetRoundTripper(
		&http.Transport{
			Proxy: func(r *http.Request) (*url.URL, error) {
				log.Printf("%v", r.URL)
				return nil, nil
			},
		},
	)
	lis, _ := net.Listen("tcp", ":8080")
	p.Serve(lis)
}
curl -x 127.0.0.1:8080 http://www.google.com/

should print http://www.google.com/, but none is print. is this working as expected?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant