<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dexon/p2p/discv5, branch s-truffle</title>
<subtitle>DEXON full node (https://github.com/dexon-foundation/dexon)
</subtitle>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/'/>
<entry>
<title>Change import go github.com/dexon-foundation/dexon</title>
<updated>2019-04-09T13:32:49+00:00</updated>
<author>
<name>Wei-Ning Huang</name>
<email>w@cobinhood.com</email>
</author>
<published>2018-09-26T02:48:31+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=d056357e4999c6c70c8b8e85a9e4f533895ed6c2'/>
<id>d056357e4999c6c70c8b8e85a9e4f533895ed6c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>vendor, crypto, swarm: switch over to upstream sha3 package</title>
<updated>2019-01-04T07:26:07+00:00</updated>
<author>
<name>Dave McGregor</name>
<email>dave.s.mcgregor@gmail.com</email>
</author>
<published>2019-01-03T22:15:26+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=33d233d3e18359123993d3f54987441290faf212'/>
<id>33d233d3e18359123993d3f54987441290faf212</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>p2p/discv5: don't hash findnode target in lookup against table (#18309)</title>
<updated>2018-12-14T13:55:51+00:00</updated>
<author>
<name>yahtoo</name>
<email>yahtoo.ma@gmail.com</email>
</author>
<published>2018-12-14T13:55:51+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=aad3c67a92cd4f3cc3a885fdc514ba2a7fb3e0a3'/>
<id>aad3c67a92cd4f3cc3a885fdc514ba2a7fb3e0a3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>p2p/discv5: gofmt</title>
<updated>2018-11-27T12:50:47+00:00</updated>
<author>
<name>Péter Szilágyi</name>
<email>peterke@gmail.com</email>
</author>
<published>2018-11-27T12:50:47+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=edc39aaedf526bfb7757a445c1f9dd42f45dc8d4'/>
<id>edc39aaedf526bfb7757a445c1f9dd42f45dc8d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>p2p/discv5: minor code simplification (#18188)</title>
<updated>2018-11-27T12:00:57+00:00</updated>
<author>
<name>ANOTHEL</name>
<email>anothel1@naver.com</email>
</author>
<published>2018-11-27T12:00:57+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=89fe24bbcc2395b9fbd449f5aeb9da8df073991d'/>
<id>89fe24bbcc2395b9fbd449f5aeb9da8df073991d</id>
<content type='text'>
* Update net.go

more simple

* Update net.go
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update net.go

more simple

* Update net.go
</pre>
</div>
</content>
</entry>
<entry>
<title>p2p, p2p/discover: add signed ENR generation (#17753)</title>
<updated>2018-10-12T09:47:24+00:00</updated>
<author>
<name>Felix Lange</name>
<email>fjl@users.noreply.github.com</email>
</author>
<published>2018-10-12T09:47:24+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=6f607de5d590ff2fbe8798b04e5924be3b7ca0b4'/>
<id>6f607de5d590ff2fbe8798b04e5924be3b7ca0b4</id>
<content type='text'>
This PR adds enode.LocalNode and integrates it into the p2p
subsystem. This new object is the keeper of the local node
record. For now, a new version of the record is produced every
time the client restarts. We'll make it smarter to avoid that in
the future.

There are a couple of other changes in this commit: discovery now
waits for all of its goroutines at shutdown and the p2p server
now closes the node database after discovery has shut down. This
fixes a leveldb crash in tests. p2p server startup is faster
because it doesn't need to wait for the external IP query
anymore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This PR adds enode.LocalNode and integrates it into the p2p
subsystem. This new object is the keeper of the local node
record. For now, a new version of the record is produced every
time the client restarts. We'll make it smarter to avoid that in
the future.

There are a couple of other changes in this commit: discovery now
waits for all of its goroutines at shutdown and the p2p server
now closes the node database after discovery has shut down. This
fixes a leveldb crash in tests. p2p server startup is faster
because it doesn't need to wait for the external IP query
anymore.
</pre>
</div>
</content>
</entry>
<entry>
<title>all: fix various comment typos (#17748)</title>
<updated>2018-09-25T10:26:35+00:00</updated>
<author>
<name>Liang ZOU</name>
<email>liang.d.zou@gmail.com</email>
</author>
<published>2018-09-25T10:26:35+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=6663e5da10e7198f7ff5e883fd857240e59d476c'/>
<id>6663e5da10e7198f7ff5e883fd857240e59d476c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>all: simplify s[:] to s where s is a slice (#17673)</title>
<updated>2018-09-14T20:07:13+00:00</updated>
<author>
<name>Emil</name>
<email>mursalimovemeel@gmail.com</email>
</author>
<published>2018-09-14T20:07:13+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32'/>
<id>86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>p2p/discv5: make idx bounds checking more sound (#17571)</title>
<updated>2018-09-03T14:47:20+00:00</updated>
<author>
<name>HAOYUatHZ</name>
<email>37070449+HAOYUatHZ@users.noreply.github.com</email>
</author>
<published>2018-09-03T14:47:20+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=5c0954afffe223ea61ea42dbc74ec7dbdc3663a1'/>
<id>5c0954afffe223ea61ea42dbc74ec7dbdc3663a1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>p2p/discv5: add delay to refresh cycle when no seed nodes are found (#16994)</title>
<updated>2018-08-14T20:59:18+00:00</updated>
<author>
<name>Felföldi Zsolt</name>
<email>zsfelfoldi@gmail.com</email>
</author>
<published>2018-08-14T20:59:18+00:00</published>
<link rel='alternate' type='text/html' href='https://lant.com.tw/~lantw44/cgit/cgit.cgi/dexon/commit/?id=b52bb31b767a3e31266e6138e24f7226ebbd8882'/>
<id>b52bb31b767a3e31266e6138e24f7226ebbd8882</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
