Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
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
张蕾
Geth-Modification
Commits
b6fde73e
Commit
b6fde73e
authored
Mar 29, 2015
by
Taylor Gerring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add settable domain to CORS handler #331
parent
04a7c4ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
http.go
rpc/http.go
+17
-3
No files found.
rpc/http.go
View file @
b6fde73e
...
...
@@ -10,6 +10,7 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/xeth"
"github.com/rs/cors"
)
var
rpclogger
=
logger
.
NewLogger
(
"RPC"
)
...
...
@@ -25,7 +26,21 @@ func Start(pipe *xeth.XEth, config RpcConfig) error {
rpclogger
.
Errorf
(
"Can't listen on %s:%d: %v"
,
config
.
ListenAddress
,
config
.
ListenPort
,
err
)
return
err
}
go
http
.
Serve
(
l
,
JSONRPC
(
pipe
))
var
handler
http
.
Handler
if
len
(
config
.
CorsDomain
)
>
0
{
var
opts
cors
.
Options
opts
.
AllowedMethods
=
[]
string
{
"POST"
}
opts
.
AllowedOrigins
=
[]
string
{
config
.
CorsDomain
}
c
:=
cors
.
New
(
opts
)
handler
=
c
.
Handler
(
JSONRPC
(
pipe
))
}
else
{
handler
=
JSONRPC
(
pipe
)
}
go
http
.
Serve
(
l
,
handler
)
return
nil
}
...
...
@@ -34,8 +49,7 @@ func JSONRPC(pipe *xeth.XEth) http.Handler {
api
:=
NewEthereumApi
(
pipe
)
return
http
.
HandlerFunc
(
func
(
w
http
.
ResponseWriter
,
req
*
http
.
Request
)
{
// TODO this needs to be configurable
w
.
Header
()
.
Set
(
"Access-Control-Allow-Origin"
,
"*"
)
w
.
Header
()
.
Set
(
"Content-Type"
,
"application/json"
)
// Limit request size to resist DoS
if
req
.
ContentLength
>
maxSizeReqLength
{
...
...
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