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
2908acf3
Commit
2908acf3
authored
Nov 12, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] change time.After to ticker
parent
e758f922
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
12 deletions
+21
-12
websshws.go
pkg/httpd/websshws.go
+3
-1
recorder.go
pkg/proxy/recorder.go
+3
-1
switch.go
pkg/proxy/switch.go
+11
-1
sftpconn.go
pkg/srvconn/sftpconn.go
+4
-9
No files found.
pkg/httpd/websshws.go
View file @
2908acf3
...
...
@@ -56,8 +56,10 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error {
remoteIP
=
strings
.
Split
(
remoteAddr
,
","
)[
0
]
logger
.
Infof
(
"Accepted %s connect websocket from %s"
,
user
.
Username
,
remoteIP
)
go
func
()
{
tick
:=
time
.
NewTicker
(
30
*
time
.
Second
)
defer
tick
.
Stop
()
for
{
<-
ti
me
.
After
(
30
*
time
.
Second
)
<-
ti
ck
.
C
if
c
.
Conn
.
IsClosed
()
{
logger
.
Infof
(
"User %s from %s websocket connect closed"
,
user
.
Username
,
remoteIP
)
return
...
...
pkg/proxy/recorder.go
View file @
2908acf3
...
...
@@ -60,6 +60,8 @@ func (c *CommandRecorder) record() {
maxRetry
:=
0
logger
.
Infof
(
"Session %s: Command recorder start"
,
c
.
sessionID
)
defer
logger
.
Infof
(
"Session %s: Command recorder close"
,
c
.
sessionID
)
tick
:=
time
.
NewTicker
(
time
.
Second
*
10
)
defer
tick
.
Stop
()
for
{
select
{
case
<-
c
.
closed
:
...
...
@@ -74,7 +76,7 @@ func (c *CommandRecorder) record() {
if
len
(
cmdList
)
<
5
{
continue
}
case
<-
ti
me
.
After
(
time
.
Second
*
5
)
:
case
<-
ti
ck
.
C
:
if
len
(
cmdList
)
==
0
{
continue
}
...
...
pkg/proxy/switch.go
View file @
2908acf3
...
...
@@ -152,10 +152,19 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo
go
LoopRead
(
srvConn
,
srvInChan
)
winCh
:=
userConn
.
WinCh
()
maxIdleTime
:=
s
.
MaxIdleTime
*
time
.
Minute
lastActiveTime
:=
time
.
Now
()
tick
:=
time
.
NewTicker
(
30
*
time
.
Second
)
defer
tick
.
Stop
()
for
{
select
{
// 检测是否超过最大空闲时间
case
<-
time
.
After
(
s
.
MaxIdleTime
*
time
.
Minute
)
:
case
<-
tick
.
C
:
now
:=
time
.
Now
()
outTime
:=
lastActiveTime
.
Add
(
maxIdleTime
)
if
!
now
.
After
(
outTime
)
{
continue
}
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
)
...
...
@@ -190,6 +199,7 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo
}
_
,
err
=
srvConn
.
Write
(
p
)
}
lastActiveTime
=
time
.
Now
()
}
}
...
...
pkg/srvconn/sftpconn.go
View file @
2908acf3
...
...
@@ -548,17 +548,12 @@ func (u *UserSftp) LoopPushFTPLog() {
dataChan
:=
make
(
chan
*
model
.
FTPLog
)
go
u
.
SendFTPLog
(
dataChan
)
defer
close
(
dataChan
)
var
timeoutSecond
time
.
Duration
for
{
switch
len
(
ftpLogList
)
{
case
0
:
timeoutSecond
=
time
.
Second
*
60
default
:
timeoutSecond
=
time
.
Second
*
10
}
tick
:=
time
.
NewTicker
(
time
.
Second
*
10
)
defer
tick
.
Stop
()
for
{
select
{
case
<-
ti
me
.
After
(
timeoutSecond
)
:
case
<-
ti
ck
.
C
:
case
logData
,
ok
:=
<-
u
.
LogChan
:
if
!
ok
{
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