1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // Copyright 2023 The frp Authors
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package virtual
- import (
- "context"
- "net"
- "github.com/fatedier/frp/client"
- v1 "github.com/fatedier/frp/pkg/config/v1"
- "github.com/fatedier/frp/pkg/msg"
- utilnet "github.com/fatedier/frp/pkg/util/net"
- )
- type Client struct {
- l *utilnet.InternalListener
- svr *client.Service
- }
- func NewClient(cfg *v1.ClientCommonConfig) *Client {
- cfg.Complete()
- ln := utilnet.NewInternalListener()
- svr := client.NewService(cfg, nil, nil, "")
- svr.SetConnectorCreator(func(context.Context, *v1.ClientCommonConfig) client.Connector {
- return &pipeConnector{
- peerListener: ln,
- }
- })
- return &Client{
- l: ln,
- svr: svr,
- }
- }
- func (c *Client) PeerListener() net.Listener {
- return c.l
- }
- func (c *Client) SetInWorkConnCallback(cb func(*v1.ProxyBaseConfig, net.Conn, *msg.StartWorkConn) bool) {
- c.svr.SetInWorkConnCallback(cb)
- }
- func (c *Client) UpdateProxyConfigurer(proxyCfgs []v1.ProxyConfigurer) {
- _ = c.svr.ReloadConf(proxyCfgs, nil)
- }
- func (c *Client) Run(ctx context.Context) error {
- return c.svr.Run(ctx)
- }
- func (c *Client) Close() {
- c.l.Close()
- c.svr.Close()
- }
- type pipeConnector struct {
- peerListener *utilnet.InternalListener
- }
- func (pc *pipeConnector) Open() error {
- return nil
- }
- func (pc *pipeConnector) Connect() (net.Conn, error) {
- c1, c2 := net.Pipe()
- if err := pc.peerListener.PutConn(c1); err != nil {
- c1.Close()
- c2.Close()
- return nil, err
- }
- return c2, nil
- }
- func (pc *pipeConnector) Close() error {
- pc.peerListener.Close()
- return nil
- }
|