Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
gost
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
gost
Commits
d695429e
Commit
d695429e
authored
Dec 06, 2018
by
ginuerzh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix data race in kcp
parent
dc4c78ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
kcp.go
kcp.go
+5
-3
No files found.
kcp.go
View file @
d695429e
...
@@ -66,7 +66,7 @@ func (c *KCPConfig) Init() {
...
@@ -66,7 +66,7 @@ func (c *KCPConfig) Init() {
var
(
var
(
// DefaultKCPConfig is the default KCP config.
// DefaultKCPConfig is the default KCP config.
DefaultKCPConfig
=
&
KCPConfig
{
DefaultKCPConfig
=
KCPConfig
{
Key
:
"it's a secrect"
,
Key
:
"it's a secrect"
,
Crypt
:
"aes"
,
Crypt
:
"aes"
,
Mode
:
"fast"
,
Mode
:
"fast"
,
...
@@ -99,7 +99,8 @@ type kcpTransporter struct {
...
@@ -99,7 +99,8 @@ type kcpTransporter struct {
// KCPTransporter creates a Transporter that is used by KCP proxy client.
// KCPTransporter creates a Transporter that is used by KCP proxy client.
func
KCPTransporter
(
config
*
KCPConfig
)
Transporter
{
func
KCPTransporter
(
config
*
KCPConfig
)
Transporter
{
if
config
==
nil
{
if
config
==
nil
{
config
=
DefaultKCPConfig
config
=
&
KCPConfig
{}
*
config
=
DefaultKCPConfig
}
}
config
.
Init
()
config
.
Init
()
...
@@ -227,7 +228,8 @@ type kcpListener struct {
...
@@ -227,7 +228,8 @@ type kcpListener struct {
// KCPListener creates a Listener for KCP proxy server.
// KCPListener creates a Listener for KCP proxy server.
func
KCPListener
(
addr
string
,
config
*
KCPConfig
)
(
Listener
,
error
)
{
func
KCPListener
(
addr
string
,
config
*
KCPConfig
)
(
Listener
,
error
)
{
if
config
==
nil
{
if
config
==
nil
{
config
=
DefaultKCPConfig
config
=
&
KCPConfig
{}
*
config
=
DefaultKCPConfig
}
}
config
.
Init
()
config
.
Init
()
...
...
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