Additional checks and debug output

This commit is contained in:
obscuren
2014-12-08 14:25:52 +01:00
parent e3a8412df3
commit 76842b0df8
3 changed files with 14 additions and 2 deletions

View File

@ -2,6 +2,7 @@ package whisper
import (
"bytes"
"fmt"
"sync"
"time"
@ -34,6 +35,8 @@ const (
envelopesMsg = 0x01
)
const defaultTtl = 50 * time.Second
type Whisper struct {
pub, sec []byte
protocol p2p.Protocol
@ -55,6 +58,8 @@ func New(pub, sec []byte) *Whisper {
}
go whisper.update()
whisper.Send(defaultTtl, nil, NewMessage([]byte("Hello world. This is whisper-go")))
// p2p whisper sub protocol handler
whisper.protocol = p2p.Protocol{
Name: "shh",
@ -102,6 +107,7 @@ func (self *Whisper) msgHandler(peer *p2p.Peer, ws p2p.MsgReadWriter) error {
}
self.add(envelope)
wpeer.addKnown(envelope)
}
}
@ -110,6 +116,7 @@ func (self *Whisper) add(envelope *Envelope) {
self.mmu.Lock()
defer self.mmu.Unlock()
fmt.Println("add", envelope)
self.messages[envelope.Hash()] = envelope
if self.expiry[envelope.Expiry] == nil {
self.expiry[envelope.Expiry] = set.NewNonTS()