Procházet zdrojové kódy

p2p: decrease maximum message size for devp2p to 1kB

The previous limit was 10MB which is unacceptable for all kinds
of reasons, the most important one being that we don't want to
allow the remote side to make us allocate 10MB at handshake time.
Felix Lange před 10 roky
rodič
revize
64564da20b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      p2p/peer.go

+ 1 - 1
p2p/peer.go

@@ -18,7 +18,7 @@ import (
 const (
 	baseProtocolVersion    = 4
 	baseProtocolLength     = uint64(16)
-	baseProtocolMaxMsgSize = 10 * 1024 * 1024
+	baseProtocolMaxMsgSize = 2 * 1024
 
 	pingInterval = 15 * time.Second
 )