map of Snodes: DaeID => Snodes
| 74 | NodeMap map[string]*Snode // map of Snodes: DaeID => Snodes |
| 75 | |
| 76 | Smap struct { |
| 77 | Tmap NodeMap `json:"tmap"` // targetID -> targetInfo |
| 78 | Pmap NodeMap `json:"pmap"` // proxyID -> proxyInfo |
| 79 | Primary *Snode `json:"proxy_si"` // (json tag preserved for back. compat.) |
| 80 | Version int64 `json:"version,string"` // version |
| 81 | UUID string `json:"uuid"` // UUID (assigned once at creation time) |
| 82 | CreationTime string `json:"creation_time"` // creation time |
| 83 | Ext interface{} `json:"ext,omitempty"` // within meta-version extensions |
| 84 | } |
| 85 | |
| 86 | // Smap on-change listeners |
| 87 | Slistener interface { |
nothing calls this directly
no outgoing calls
no test coverage detected