frp/client/service.go

48 lines
1.2 KiB
Go
Raw Normal View History

2017-03-09 02:03:47 +08:00
// Copyright 2017 fatedier, fatedier@gmail.com
2016-12-19 01:22:21 +08:00
//
// 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.
2017-03-09 02:03:47 +08:00
package client
2016-12-19 01:22:21 +08:00
2017-03-09 02:03:47 +08:00
import "github.com/fatedier/frp/models/config"
2016-12-19 01:22:21 +08:00
2017-03-09 02:03:47 +08:00
type Service struct {
// manager control connection with server
ctl *Control
closedCh chan int
}
2017-06-26 03:02:33 +08:00
func NewService(pxyCfgs map[string]config.ProxyConf, vistorCfgs map[string]config.ProxyConf) (svr *Service) {
2017-03-09 02:03:47 +08:00
svr = &Service{
closedCh: make(chan int),
2016-12-19 01:22:21 +08:00
}
2017-06-26 03:02:33 +08:00
ctl := NewControl(svr, pxyCfgs, vistorCfgs)
2017-03-09 02:03:47 +08:00
svr.ctl = ctl
2016-12-19 01:22:21 +08:00
return
}
2017-03-09 02:03:47 +08:00
func (svr *Service) Run() error {
err := svr.ctl.Run()
if err != nil {
return err
}
<-svr.closedCh
return nil
}
2017-06-27 01:59:30 +08:00
func (svr *Service) Close() error {
return svr.ctl.Close()
}