real_ip.go 300 B

1234567891011121314151617181920
  1. package features
  2. import (
  3. "github.com/fatedier/frp/test/e2e/framework"
  4. . "github.com/onsi/ginkgo"
  5. )
  6. var _ = Describe("[Feature: Real IP]", func() {
  7. f := framework.NewDefaultFramework()
  8. It("HTTP X-Forwarded-For", func() {
  9. // TODO
  10. _ = f
  11. })
  12. It("Proxy Protocol", func() {
  13. // TODO
  14. })
  15. })