Skip to content

Commit

Permalink
命令行模式同步
Browse files Browse the repository at this point in the history
  • Loading branch information
刘河 committed Jan 31, 2019
1 parent 4e6754d commit c336bf9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
9 changes: 4 additions & 5 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ func (s *TRPClient) processor(c *utils.Conn) {
if link, err := c.GetLinkInfo(); err != nil {
break
} else {
log.Println(link)
s.Lock()
s.linkMap[link.Id] = link
s.Unlock()
Expand Down Expand Up @@ -118,10 +117,10 @@ func (s *TRPClient) linkProcess(link *utils.Link, c *utils.Conn) {
break
}
utils.PutBufPoolCopy(buf)
if link.ConnType == utils.CONN_UDP {
c.Close()
break
}
//if link.ConnType == utils.CONN_UDP {
// c.Close()
// break
//}
}
}

Expand Down
1 change: 0 additions & 1 deletion cmd/proxy_client/proxy_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ var (
)

func main() {
log.SetFlags(log.Lshortfile)
flag.Parse()
stop := make(chan int)
for _, v := range strings.Split(*verifyKey, ",") {
Expand Down
6 changes: 5 additions & 1 deletion cmd/proxy_server/proxy_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ var (
)

func main() {
log.SetFlags(log.Lshortfile)
flag.Parse()
task := &utils.Tunnel{
TcpPort: *httpPort,
Expand All @@ -45,6 +44,8 @@ func main() {
Remark: "",
Status: true,
IsConnect: false,
Cnf: &utils.Config{},
Flow: &utils.Flow{},
}
c.Cnf.CompressDecode, c.Cnf.CompressEncode = utils.GetCompressType(c.Cnf.Compress)
server.CsvDb.Clients[0] = c
Expand All @@ -60,5 +61,8 @@ func main() {
}
log.Println("服务端启动,监听tcp服务端端口:", *TcpPort)
task.Config.CompressDecode, task.Config.CompressEncode = utils.GetCompressType(task.Config.Compress)
if *rpMode!="webServer" {
server.CsvDb.Tasks[0] = task
}
server.StartNewServer(*TcpPort, task)
}
1 change: 0 additions & 1 deletion server/socks5.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ func (s *Sock5ModeServer) doConnect(c net.Conn, command uint8) {
link := utils.NewLink(s.task.Client.GetId(), ltype, addr, s.config.CompressEncode, s.config.CompressDecode, s.config.Crypt, utils.NewConn(c), s.task.Flow, nil, s.task.Client.Rate, nil)

if tunnel, err := s.bridge.SendLinkInfo(s.task.Client.Id, link); err != nil {
log.Println("error", err, link)
c.Close()
return
} else {
Expand Down
1 change: 0 additions & 1 deletion server/tcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ func ProcessHttp(c *utils.Conn, s *TunnelModeServer) error {
}
method, addr, rb, err, r := c.GetHost()
if err != nil {
log.Println(err)
c.Close()
return err
}
Expand Down

0 comments on commit c336bf9

Please sign in to comment.