- Add complete UCXL address parser with BNF grammar validation - Implement temporal navigation system with bounds checking - Create UCXI HTTP server with REST-like operations - Add comprehensive test suite with 87 passing tests - Integrate with existing BZZZ architecture (opt-in via config) - Support semantic addressing with wildcards and version control Core Features: - UCXL address format: ucxl://agent:role@project:task/temporal/path - Temporal segments: *^, ~~N, ^^N, *~, *~N with navigation logic - UCXI endpoints: GET/PUT/POST/DELETE/ANNOUNCE operations - Production-ready with error handling and graceful shutdown 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
167 lines
3.7 KiB
Go
167 lines
3.7 KiB
Go
package p2p
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Config holds configuration for a Bzzz P2P node
|
|
type Config struct {
|
|
// Network configuration
|
|
ListenAddresses []string
|
|
NetworkID string
|
|
|
|
// Discovery configuration
|
|
EnableMDNS bool
|
|
MDNSServiceTag string
|
|
|
|
// DHT configuration
|
|
EnableDHT bool
|
|
DHTBootstrapPeers []string
|
|
DHTMode string // "client", "server", "auto"
|
|
DHTProtocolPrefix string
|
|
|
|
// Connection limits
|
|
MaxConnections int
|
|
MaxPeersPerIP int
|
|
ConnectionTimeout time.Duration
|
|
|
|
// Security configuration
|
|
EnableSecurity bool
|
|
|
|
// Pubsub configuration
|
|
EnablePubsub bool
|
|
BzzzTopic string // Task coordination topic
|
|
HmmmTopic string // Meta-discussion topic
|
|
MessageValidationTime time.Duration
|
|
}
|
|
|
|
// Option is a function that modifies the node configuration
|
|
type Option func(*Config)
|
|
|
|
// DefaultConfig returns a default configuration for Bzzz nodes
|
|
func DefaultConfig() *Config {
|
|
return &Config{
|
|
// Listen on specific port 3333 for TCP
|
|
ListenAddresses: []string{
|
|
"/ip4/0.0.0.0/tcp/3333",
|
|
"/ip6/::/tcp/3333",
|
|
},
|
|
NetworkID: "bzzz-network",
|
|
|
|
// Discovery settings
|
|
EnableMDNS: true,
|
|
MDNSServiceTag: "bzzz-peer-discovery",
|
|
|
|
// DHT settings (disabled by default for local development)
|
|
EnableDHT: false,
|
|
DHTBootstrapPeers: []string{},
|
|
DHTMode: "auto",
|
|
DHTProtocolPrefix: "/bzzz",
|
|
|
|
// Connection limits for local network
|
|
MaxConnections: 50,
|
|
MaxPeersPerIP: 3,
|
|
ConnectionTimeout: 30 * time.Second,
|
|
|
|
// Security enabled by default
|
|
EnableSecurity: true,
|
|
|
|
// Pubsub for coordination and meta-discussion
|
|
EnablePubsub: true,
|
|
BzzzTopic: "bzzz/coordination/v1",
|
|
HmmmTopic: "hmmm/meta-discussion/v1",
|
|
MessageValidationTime: 10 * time.Second,
|
|
}
|
|
}
|
|
|
|
// WithListenAddresses sets the addresses to listen on
|
|
func WithListenAddresses(addrs ...string) Option {
|
|
return func(c *Config) {
|
|
c.ListenAddresses = addrs
|
|
}
|
|
}
|
|
|
|
// WithNetworkID sets the network ID
|
|
func WithNetworkID(networkID string) Option {
|
|
return func(c *Config) {
|
|
c.NetworkID = networkID
|
|
}
|
|
}
|
|
|
|
// WithMDNS enables or disables mDNS discovery
|
|
func WithMDNS(enabled bool) Option {
|
|
return func(c *Config) {
|
|
c.EnableMDNS = enabled
|
|
}
|
|
}
|
|
|
|
// WithMDNSServiceTag sets the mDNS service tag
|
|
func WithMDNSServiceTag(tag string) Option {
|
|
return func(c *Config) {
|
|
c.MDNSServiceTag = tag
|
|
}
|
|
}
|
|
|
|
// WithMaxConnections sets the maximum number of connections
|
|
func WithMaxConnections(max int) Option {
|
|
return func(c *Config) {
|
|
c.MaxConnections = max
|
|
}
|
|
}
|
|
|
|
// WithConnectionTimeout sets the connection timeout
|
|
func WithConnectionTimeout(timeout time.Duration) Option {
|
|
return func(c *Config) {
|
|
c.ConnectionTimeout = timeout
|
|
}
|
|
}
|
|
|
|
// WithSecurity enables or disables security
|
|
func WithSecurity(enabled bool) Option {
|
|
return func(c *Config) {
|
|
c.EnableSecurity = enabled
|
|
}
|
|
}
|
|
|
|
// WithPubsub enables or disables pubsub
|
|
func WithPubsub(enabled bool) Option {
|
|
return func(c *Config) {
|
|
c.EnablePubsub = enabled
|
|
}
|
|
}
|
|
|
|
// WithTopics sets the Bzzz and HMMM topic names
|
|
func WithTopics(bzzzTopic, hmmmTopic string) Option {
|
|
return func(c *Config) {
|
|
c.BzzzTopic = bzzzTopic
|
|
c.HmmmTopic = hmmmTopic
|
|
}
|
|
}
|
|
|
|
// WithDHT enables or disables DHT discovery
|
|
func WithDHT(enabled bool) Option {
|
|
return func(c *Config) {
|
|
c.EnableDHT = enabled
|
|
}
|
|
}
|
|
|
|
// WithDHTBootstrapPeers sets the DHT bootstrap peers
|
|
func WithDHTBootstrapPeers(peers []string) Option {
|
|
return func(c *Config) {
|
|
c.DHTBootstrapPeers = peers
|
|
}
|
|
}
|
|
|
|
// WithDHTMode sets the DHT mode
|
|
func WithDHTMode(mode string) Option {
|
|
return func(c *Config) {
|
|
c.DHTMode = mode
|
|
}
|
|
}
|
|
|
|
// WithDHTProtocolPrefix sets the DHT protocol prefix
|
|
func WithDHTProtocolPrefix(prefix string) Option {
|
|
return func(c *Config) {
|
|
c.DHTProtocolPrefix = prefix
|
|
}
|
|
} |