mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
Change internal package import to github/fatedier
This commit is contained in:
parent
0b719326bc
commit
79195d7177
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"frp/pkg/models"
|
"github.com/fatedier/frp/pkg/models"
|
||||||
|
|
||||||
ini "github.com/vaughan0/go-ini"
|
ini "github.com/vaughan0/go-ini"
|
||||||
)
|
)
|
||||||
|
@ -5,9 +5,9 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"frp/pkg/models"
|
"github.com/fatedier/frp/pkg/models"
|
||||||
"frp/pkg/utils/conn"
|
"github.com/fatedier/frp/pkg/utils/conn"
|
||||||
"frp/pkg/utils/log"
|
"github.com/fatedier/frp/pkg/utils/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ControlProcess(cli *models.ProxyClient, wait *sync.WaitGroup) {
|
func ControlProcess(cli *models.ProxyClient, wait *sync.WaitGroup) {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"frp/pkg/utils/log"
|
"github.com/fatedier/frp/pkg/utils/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"frp/pkg/models"
|
"github.com/fatedier/frp/pkg/models"
|
||||||
|
|
||||||
ini "github.com/vaughan0/go-ini"
|
ini "github.com/vaughan0/go-ini"
|
||||||
)
|
)
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"frp/pkg/utils/log"
|
"github.com/fatedier/frp/pkg/utils/log"
|
||||||
"frp/pkg/utils/conn"
|
"github.com/fatedier/frp/pkg/utils/conn"
|
||||||
"frp/pkg/models"
|
"github.com/fatedier/frp/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ProcessControlConn(l *conn.Listener) {
|
func ProcessControlConn(l *conn.Listener) {
|
||||||
|
@ -3,8 +3,8 @@ package main
|
|||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"frp/pkg/utils/log"
|
"github.com/fatedier/frp/pkg/utils/log"
|
||||||
"frp/pkg/utils/conn"
|
"github.com/fatedier/frp/pkg/utils/conn"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -3,8 +3,8 @@ package models
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"frp/pkg/utils/conn"
|
"github.com/fatedier/frp/pkg/utils/conn"
|
||||||
"frp/pkg/utils/log"
|
"github.com/fatedier/frp/pkg/utils/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ProxyClient struct {
|
type ProxyClient struct {
|
||||||
|
@ -4,8 +4,8 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"container/list"
|
"container/list"
|
||||||
|
|
||||||
"frp/pkg/utils/conn"
|
"github.com/fatedier/frp/pkg/utils/conn"
|
||||||
"frp/pkg/utils/log"
|
"github.com/fatedier/frp/pkg/utils/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
"frp/pkg/utils/log"
|
"github.com/fatedier/frp/pkg/utils/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Listener struct {
|
type Listener struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user