mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
21 lines
300 B
Go
21 lines
300 B
Go
package features
|
|
|
|
import (
|
|
"github.com/fatedier/frp/test/e2e/framework"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
)
|
|
|
|
var _ = Describe("[Feature: Real IP]", func() {
|
|
f := framework.NewDefaultFramework()
|
|
|
|
It("HTTP X-Forwarded-For", func() {
|
|
// TODO
|
|
_ = f
|
|
})
|
|
|
|
It("Proxy Protocol", func() {
|
|
// TODO
|
|
})
|
|
})
|