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
d38f78cf
Commit
d38f78cf
authored
Jun 28, 2019
by
Eric
Committed by
Eric_Lee
Jun 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bugs: telnet auto connect error
parent
bd4faf1c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
parser.go
pkg/proxy/parser.go
+1
-2
telnetconn.go
pkg/srvconn/telnetconn.go
+8
-0
No files found.
pkg/proxy/parser.go
View file @
d38f78cf
...
...
@@ -83,6 +83,7 @@ func (p *Parser) ParseStream() {
defer
func
()
{
close
(
p
.
userOutputChan
)
close
(
p
.
srvOutputChan
)
close
(
p
.
cmdRecordChan
)
logger
.
Debug
(
"Parser parse stream routine done"
)
}()
for
{
...
...
@@ -140,7 +141,6 @@ func (p *Parser) parseCmdInput() {
data
:=
p
.
cmdBuf
.
Bytes
()
p
.
command
=
p
.
cmdInputParser
.
Parse
(
data
)
p
.
cmdBuf
.
Reset
()
//p.inputBuf.Reset()
}
// parseCmdOutput 解析命令输出
...
...
@@ -262,5 +262,4 @@ func (p *Parser) Close() {
}
close
(
p
.
userInputChan
)
close
(
p
.
srvInputChan
)
close
(
p
.
cmdRecordChan
)
}
pkg/srvconn/telnetconn.go
View file @
d38f78cf
...
...
@@ -12,6 +12,7 @@ import (
"github.com/jumpserver/koko/pkg/logger"
"github.com/jumpserver/koko/pkg/model"
"github.com/jumpserver/koko/pkg/service"
)
const
(
...
...
@@ -167,6 +168,13 @@ func (tc *ServerTelnetConnection) Connect(h, w int, term string) (err error) {
if
err
!=
nil
{
return
}
if
tc
.
SystemUser
.
Password
==
""
{
info
:=
service
.
GetSystemUserAssetAuthInfo
(
tc
.
SystemUser
.
ID
,
asset
.
ID
)
tc
.
SystemUser
.
Password
=
info
.
Password
tc
.
SystemUser
.
PrivateKey
=
info
.
PrivateKey
}
buf
:=
make
([]
byte
,
1024
)
tc
.
conn
=
conn
var
nr
int
...
...
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