github.com/cloud-foundations/dominator@v0.0.0-20221004181915-6e4fee580046/lib/net/reverseconnection/common.go (about) 1 package reverseconnection 2 3 import ( 4 "time" 5 ) 6 7 const ( 8 connectString = "200 Connected to ReverseDialer" 9 urlPath = "/_ReverseDialer_/connect" 10 ) 11 12 type reverseDialerMessage struct { 13 MinimumInterval time.Duration `json:",omitempty"` 14 MaximumInterval time.Duration `json:",omitempty"` 15 }