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
6e730915
Commit
6e730915
authored
Oct 02, 2019
by
Felix Lange
Committed by
Péter Szilágyi
Oct 02, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
les: add empty "les" ENR entry for servers (#20145)
parent
c713ea7c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
1 deletion
+39
-1
enr_entry.go
les/enr_entry.go
+32
-0
server.go
les/server.go
+7
-1
No files found.
les/enr_entry.go
0 → 100644
View file @
6e730915
// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package
les
import
(
"github.com/ethereum/go-ethereum/rlp"
)
// lesEntry is the "les" ENR entry. This is set for LES servers only.
type
lesEntry
struct
{
// Ignore additional fields (for forward compatibility).
Rest
[]
rlp
.
RawValue
`rlp:"tail"`
}
// ENRKey implements enr.Entry.
func
(
e
lesEntry
)
ENRKey
()
string
{
return
"les"
}
les/server.go
View file @
6e730915
...
...
@@ -30,6 +30,7 @@ import (
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/discv5"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/enr"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rpc"
)
...
...
@@ -136,12 +137,17 @@ func (s *LesServer) APIs() []rpc.API {
}
func
(
s
*
LesServer
)
Protocols
()
[]
p2p
.
Protocol
{
return
s
.
makeProtocols
(
ServerProtocolVersions
,
s
.
handler
.
runPeer
,
func
(
id
enode
.
ID
)
interface
{}
{
ps
:=
s
.
makeProtocols
(
ServerProtocolVersions
,
s
.
handler
.
runPeer
,
func
(
id
enode
.
ID
)
interface
{}
{
if
p
:=
s
.
peers
.
Peer
(
peerIdToString
(
id
));
p
!=
nil
{
return
p
.
Info
()
}
return
nil
})
// Add "les" ENR entries.
for
i
:=
range
ps
{
ps
[
i
]
.
Attributes
=
[]
enr
.
Entry
{
&
lesEntry
{}}
}
return
ps
}
// Start starts the LES server
...
...
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