Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
af8cfdaf
Commit
af8cfdaf
authored
Jul 18, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 去掉一些日志
parent
7d115107
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
clients.go
pkg/httpd/clients.go
+1
-5
websshws.go
pkg/httpd/websshws.go
+2
-2
switch.go
pkg/proxy/switch.go
+1
-0
No files found.
pkg/httpd/clients.go
View file @
af8cfdaf
package
httpd
package
httpd
import
(
import
(
"fmt"
"sync"
"sync"
"github.com/jumpserver/koko/pkg/logger"
"github.com/jumpserver/koko/pkg/logger"
...
@@ -37,14 +36,12 @@ func (c *Clients) DeleteClient(cID string) {
...
@@ -37,14 +36,12 @@ func (c *Clients) DeleteClient(cID string) {
}
}
func
(
c
*
Clients
)
AddClient
(
cID
string
,
conn
*
Client
)
{
func
(
c
*
Clients
)
AddClient
(
cID
string
,
conn
*
Client
)
{
fmt
.
Println
(
"Add Client id: "
,
cID
)
c
.
mu
.
Lock
()
c
.
mu
.
Lock
()
defer
c
.
mu
.
Unlock
()
defer
c
.
mu
.
Unlock
()
c
.
container
[
cID
]
=
conn
c
.
container
[
cID
]
=
conn
logger
.
Debug
(
"Now clients count: "
,
len
(
c
.
container
))
logger
.
Debug
(
"Now clients count: "
,
len
(
c
.
container
))
}
}
type
Connections
struct
{
type
Connections
struct
{
container
map
[
string
][]
string
container
map
[
string
][]
string
mu
*
sync
.
RWMutex
mu
*
sync
.
RWMutex
...
@@ -69,7 +66,7 @@ func (c *Connections) GetClients(cID string) (clients []string) {
...
@@ -69,7 +66,7 @@ func (c *Connections) GetClients(cID string) (clients []string) {
}
}
func
(
c
*
Connections
)
DeleteClients
(
cID
string
)
{
func
(
c
*
Connections
)
DeleteClients
(
cID
string
)
{
if
clientIDs
:=
c
.
GetClients
(
cID
);
clientIDs
!=
nil
{
if
clientIDs
:=
c
.
GetClients
(
cID
);
clientIDs
!=
nil
{
for
_
,
clientID
:=
range
clientIDs
{
for
_
,
clientID
:=
range
clientIDs
{
clients
.
DeleteClient
(
clientID
)
clients
.
DeleteClient
(
clientID
)
}
}
...
@@ -78,4 +75,3 @@ func (c *Connections) DeleteClients(cID string) {
...
@@ -78,4 +75,3 @@ func (c *Connections) DeleteClients(cID string) {
defer
c
.
mu
.
Unlock
()
defer
c
.
mu
.
Unlock
()
delete
(
c
.
container
,
cID
)
delete
(
c
.
container
,
cID
)
}
}
pkg/httpd/websshws.go
View file @
af8cfdaf
...
@@ -25,7 +25,7 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error {
...
@@ -25,7 +25,7 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error {
// 首次连接 1.获取当前用户的信息
// 首次连接 1.获取当前用户的信息
cc
:=
c
.
Conn
cc
:=
c
.
Conn
if
cc
.
WasReconnected
()
{
if
cc
.
WasReconnected
()
{
logger
.
Debugf
(
"Web terminal re
dir
ected, with tries: %d"
,
cc
.
ID
(),
cc
.
ReconnectTries
)
logger
.
Debugf
(
"Web terminal re
conn
ected, with tries: %d"
,
cc
.
ID
(),
cc
.
ReconnectTries
)
}
else
{
}
else
{
logger
.
Debug
(
"Web terminal on connect event trigger"
)
logger
.
Debug
(
"Web terminal on connect event trigger"
)
}
}
...
@@ -130,7 +130,7 @@ func OnHostHandler(c *neffos.NSConn, msg neffos.Message) (err error) {
...
@@ -130,7 +130,7 @@ func OnHostHandler(c *neffos.NSConn, msg neffos.Message) (err error) {
}
}
go
func
()
{
go
func
()
{
defer
logger
.
Debug
(
"Web proxy process end"
)
defer
logger
.
Debug
(
"Web proxy process end"
)
logger
.
Debug
(
"
S
tart proxy to host"
)
logger
.
Debug
(
"
Web ssh s
tart proxy to host"
)
proxySrv
.
Proxy
()
proxySrv
.
Proxy
()
logoutMsg
,
_
:=
json
.
Marshal
(
RoomMsg
{
Room
:
roomID
})
logoutMsg
,
_
:=
json
.
Marshal
(
RoomMsg
{
Room
:
roomID
})
// 服务器主动退出
// 服务器主动退出
...
...
pkg/proxy/switch.go
View file @
af8cfdaf
...
@@ -141,6 +141,7 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo
...
@@ -141,6 +141,7 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo
// 检测是否超过最大空闲时间
// 检测是否超过最大空闲时间
case
<-
time
.
After
(
s
.
MaxIdleTime
*
time
.
Minute
)
:
case
<-
time
.
After
(
s
.
MaxIdleTime
*
time
.
Minute
)
:
msg
:=
fmt
.
Sprintf
(
i18n
.
T
(
"Connect idle more than %d minutes, disconnect"
),
s
.
MaxIdleTime
)
msg
:=
fmt
.
Sprintf
(
i18n
.
T
(
"Connect idle more than %d minutes, disconnect"
),
s
.
MaxIdleTime
)
logger
.
Debugf
(
"Session idle more than %d minutes, disconnect: %s"
,
s
.
MaxIdleTime
,
s
.
ID
)
msg
=
utils
.
WrapperWarn
(
msg
)
msg
=
utils
.
WrapperWarn
(
msg
)
utils
.
IgnoreErrWriteString
(
userConn
,
"
\n\r
"
+
msg
)
utils
.
IgnoreErrWriteString
(
userConn
,
"
\n\r
"
+
msg
)
return
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment