general_tcp.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Copyright 2023 The frp Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package proxy
  15. import (
  16. "reflect"
  17. v1 "github.com/fatedier/frp/pkg/config/v1"
  18. )
  19. func init() {
  20. pxyConfs := []v1.ProxyConfigurer{
  21. &v1.TCPProxyConfig{},
  22. &v1.HTTPProxyConfig{},
  23. &v1.HTTPSProxyConfig{},
  24. &v1.STCPProxyConfig{},
  25. &v1.TCPMuxProxyConfig{},
  26. }
  27. for _, cfg := range pxyConfs {
  28. RegisterProxyFactory(reflect.TypeOf(cfg), NewGeneralTCPProxy)
  29. }
  30. }
  31. // GeneralTCPProxy is a general implementation of Proxy interface for TCP protocol.
  32. // If the default GeneralTCPProxy cannot meet the requirements, you can customize
  33. // the implementation of the Proxy interface.
  34. type GeneralTCPProxy struct {
  35. *BaseProxy
  36. }
  37. func NewGeneralTCPProxy(baseProxy *BaseProxy, _ v1.ProxyConfigurer) Proxy {
  38. return &GeneralTCPProxy{
  39. BaseProxy: baseProxy,
  40. }
  41. }