Dev Docs: Describe Almost All Remaining P2P Network Messages

* Describes all remaining messages except filterload. Specificially, the
  following messages are described: Addr, Alert, FilterAdd, FilterClear,
  GetAddr, Ping, Pong, Reject, VerAck, and Version

* New makefile test: report broken markdown tables

* Put relevant protocol version changes at the top of all message
  subsections.
This commit is contained in:
David A. Harding 2014-10-28 14:28:14 -04:00
parent e29104fb82
commit a149ae1f37
No known key found for this signature in database
GPG key ID: 4B29C30FF29EC4B7
8 changed files with 650 additions and 19 deletions

View file

@ -0,0 +1,26 @@
digraph {
size="6.25";
rankdir=TB
nodesep=0.2;
ranksep=0.3;
splines="false"
edge [ penwidth = 1.75, fontname="Sans", dir="none" ]
node [ penwidth = 1.75, shape = "box", fontname="Sans", ]
graph [ penwidth = 1.75, fontname="Sans" ]
version -> verack;
ping -> pong;
getaddr -> addr;
filterload -> filteradd;
filterload -> filterclear;
alert;
ERROR [ style = "invis" ];
ERROR -> reject [ style = "invis" ];
label = " \nOverview Of P2P Protocol Control And Advisory Messages"
}