2018-05-01 23:45:06 +00:00
|
|
|
// Code generated by capnpc-go. DO NOT EDIT.
|
|
|
|
|
|
|
|
package tunnelrpc
|
|
|
|
|
|
|
|
import (
|
2019-05-28 20:53:35 +00:00
|
|
|
context "golang.org/x/net/context"
|
2019-06-12 15:07:24 +00:00
|
|
|
strconv "strconv"
|
2018-05-01 23:45:06 +00:00
|
|
|
capnp "zombiezen.com/go/capnproto2"
|
|
|
|
text "zombiezen.com/go/capnproto2/encoding/text"
|
|
|
|
schemas "zombiezen.com/go/capnproto2/schemas"
|
|
|
|
server "zombiezen.com/go/capnproto2/server"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Authentication struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// Authentication_TypeID is the unique identifier for the type Authentication.
|
|
|
|
const Authentication_TypeID = 0xc082ef6e0d42ed1d
|
|
|
|
|
|
|
|
func NewAuthentication(s *capnp.Segment) (Authentication, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return Authentication{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootAuthentication(s *capnp.Segment) (Authentication, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return Authentication{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootAuthentication(msg *capnp.Message) (Authentication, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return Authentication{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) String() string {
|
|
|
|
str, _ := text.Marshal(0xc082ef6e0d42ed1d, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) Key() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) HasKey() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) KeyBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) SetKey(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) Email() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) HasEmail() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) EmailBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) SetEmail(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) OriginCAKey() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) HasOriginCAKey() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) OriginCAKeyBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication) SetOriginCAKey(v string) error {
|
|
|
|
return s.Struct.SetText(2, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Authentication_List is a list of Authentication.
|
|
|
|
type Authentication_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewAuthentication creates a new list of Authentication.
|
|
|
|
func NewAuthentication_List(s *capnp.Segment, sz int32) (Authentication_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3}, sz)
|
|
|
|
return Authentication_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Authentication_List) At(i int) Authentication { return Authentication{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s Authentication_List) Set(i int, v Authentication) error { return s.List.SetStruct(i, v.Struct) }
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s Authentication_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xc082ef6e0d42ed1d, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// Authentication_Promise is a wrapper for a Authentication promised by a client call.
|
|
|
|
type Authentication_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p Authentication_Promise) Struct() (Authentication, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return Authentication{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelRegistration struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelRegistration_TypeID is the unique identifier for the type TunnelRegistration.
|
|
|
|
const TunnelRegistration_TypeID = 0xf41a0f001ad49e46
|
|
|
|
|
|
|
|
func NewTunnelRegistration(s *capnp.Segment) (TunnelRegistration, error) {
|
2018-10-02 16:54:41 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 4})
|
2018-05-01 23:45:06 +00:00
|
|
|
return TunnelRegistration{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelRegistration(s *capnp.Segment) (TunnelRegistration, error) {
|
2018-10-02 16:54:41 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 4})
|
2018-05-01 23:45:06 +00:00
|
|
|
return TunnelRegistration{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelRegistration(msg *capnp.Message) (TunnelRegistration, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelRegistration{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) String() string {
|
|
|
|
str, _ := text.Marshal(0xf41a0f001ad49e46, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) Err() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) HasErr() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) ErrBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) SetErr(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) Url() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) HasUrl() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) UrlBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) SetUrl(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) LogLines() (capnp.TextList, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return capnp.TextList{List: p.List()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) HasLogLines() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) SetLogLines(v capnp.TextList) error {
|
|
|
|
return s.Struct.SetPtr(2, v.List.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLogLines sets the logLines field to a newly
|
|
|
|
// allocated capnp.TextList, preferring placement in s's segment.
|
|
|
|
func (s TunnelRegistration) NewLogLines(n int32) (capnp.TextList, error) {
|
|
|
|
l, err := capnp.NewTextList(s.Struct.Segment(), n)
|
|
|
|
if err != nil {
|
|
|
|
return capnp.TextList{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(2, l.List.ToPtr())
|
|
|
|
return l, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) PermanentFailure() bool {
|
|
|
|
return s.Struct.Bit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) SetPermanentFailure(v bool) {
|
|
|
|
s.Struct.SetBit(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) TunnelID() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) HasTunnelID() bool {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) TunnelIDBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) SetTunnelID(v string) error {
|
|
|
|
return s.Struct.SetText(3, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelRegistration_List is a list of TunnelRegistration.
|
|
|
|
type TunnelRegistration_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelRegistration creates a new list of TunnelRegistration.
|
|
|
|
func NewTunnelRegistration_List(s *capnp.Segment, sz int32) (TunnelRegistration_List, error) {
|
2018-10-02 16:54:41 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 4}, sz)
|
2018-05-01 23:45:06 +00:00
|
|
|
return TunnelRegistration_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration_List) At(i int) TunnelRegistration {
|
|
|
|
return TunnelRegistration{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration_List) Set(i int, v TunnelRegistration) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelRegistration_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xf41a0f001ad49e46, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// TunnelRegistration_Promise is a wrapper for a TunnelRegistration promised by a client call.
|
|
|
|
type TunnelRegistration_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelRegistration_Promise) Struct() (TunnelRegistration, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelRegistration{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type RegistrationOptions struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// RegistrationOptions_TypeID is the unique identifier for the type RegistrationOptions.
|
|
|
|
const RegistrationOptions_TypeID = 0xc793e50592935b4a
|
|
|
|
|
|
|
|
func NewRegistrationOptions(s *capnp.Segment) (RegistrationOptions, error) {
|
2018-10-08 19:20:28 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 16, PointerCount: 7})
|
2018-05-01 23:45:06 +00:00
|
|
|
return RegistrationOptions{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootRegistrationOptions(s *capnp.Segment) (RegistrationOptions, error) {
|
2018-10-08 19:20:28 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 16, PointerCount: 7})
|
2018-05-01 23:45:06 +00:00
|
|
|
return RegistrationOptions{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootRegistrationOptions(msg *capnp.Message) (RegistrationOptions, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return RegistrationOptions{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) String() string {
|
|
|
|
str, _ := text.Marshal(0xc793e50592935b4a, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) ClientId() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) HasClientId() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) ClientIdBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetClientId(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) Version() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) HasVersion() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) VersionBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetVersion(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) Os() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) HasOs() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) OsBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetOs(v string) error {
|
|
|
|
return s.Struct.SetText(2, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) ExistingTunnelPolicy() ExistingTunnelPolicy {
|
|
|
|
return ExistingTunnelPolicy(s.Struct.Uint16(0))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetExistingTunnelPolicy(v ExistingTunnelPolicy) {
|
|
|
|
s.Struct.SetUint16(0, uint16(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) PoolName() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) HasPoolName() bool {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) PoolNameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetPoolName(v string) error {
|
|
|
|
return s.Struct.SetText(3, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) Tags() (Tag_List, error) {
|
|
|
|
p, err := s.Struct.Ptr(4)
|
|
|
|
return Tag_List{List: p.List()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) HasTags() bool {
|
|
|
|
p, err := s.Struct.Ptr(4)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetTags(v Tag_List) error {
|
|
|
|
return s.Struct.SetPtr(4, v.List.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTags sets the tags field to a newly
|
|
|
|
// allocated Tag_List, preferring placement in s's segment.
|
|
|
|
func (s RegistrationOptions) NewTags(n int32) (Tag_List, error) {
|
|
|
|
l, err := NewTag_List(s.Struct.Segment(), n)
|
|
|
|
if err != nil {
|
|
|
|
return Tag_List{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(4, l.List.ToPtr())
|
|
|
|
return l, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) ConnectionId() uint8 {
|
|
|
|
return s.Struct.Uint8(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetConnectionId(v uint8) {
|
|
|
|
s.Struct.SetUint8(2, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) OriginLocalIp() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(5)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) HasOriginLocalIp() bool {
|
|
|
|
p, err := s.Struct.Ptr(5)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) OriginLocalIpBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(5)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetOriginLocalIp(v string) error {
|
|
|
|
return s.Struct.SetText(5, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) IsAutoupdated() bool {
|
|
|
|
return s.Struct.Bit(24)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetIsAutoupdated(v bool) {
|
|
|
|
s.Struct.SetBit(24, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) RunFromTerminal() bool {
|
|
|
|
return s.Struct.Bit(25)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetRunFromTerminal(v bool) {
|
|
|
|
s.Struct.SetBit(25, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) CompressionQuality() uint64 {
|
|
|
|
return s.Struct.Uint64(8)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetCompressionQuality(v uint64) {
|
|
|
|
s.Struct.SetUint64(8, v)
|
|
|
|
}
|
|
|
|
|
2018-10-08 19:20:28 +00:00
|
|
|
func (s RegistrationOptions) Uuid() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(6)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) HasUuid() bool {
|
|
|
|
p, err := s.Struct.Ptr(6)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) UuidBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(6)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetUuid(v string) error {
|
|
|
|
return s.Struct.SetText(6, v)
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// RegistrationOptions_List is a list of RegistrationOptions.
|
|
|
|
type RegistrationOptions_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewRegistrationOptions creates a new list of RegistrationOptions.
|
|
|
|
func NewRegistrationOptions_List(s *capnp.Segment, sz int32) (RegistrationOptions_List, error) {
|
2018-10-08 19:20:28 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 16, PointerCount: 7}, sz)
|
2018-05-01 23:45:06 +00:00
|
|
|
return RegistrationOptions_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions_List) At(i int) RegistrationOptions {
|
|
|
|
return RegistrationOptions{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions_List) Set(i int, v RegistrationOptions) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s RegistrationOptions_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xc793e50592935b4a, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// RegistrationOptions_Promise is a wrapper for a RegistrationOptions promised by a client call.
|
|
|
|
type RegistrationOptions_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p RegistrationOptions_Promise) Struct() (RegistrationOptions, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return RegistrationOptions{s}, err
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
type CapnpConnectParameters struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// CapnpConnectParameters_TypeID is the unique identifier for the type CapnpConnectParameters.
|
|
|
|
const CapnpConnectParameters_TypeID = 0xa78f37418c1077c8
|
|
|
|
|
|
|
|
func NewCapnpConnectParameters(s *capnp.Segment) (CapnpConnectParameters, error) {
|
2019-09-06 15:42:52 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 5})
|
2019-03-18 23:14:47 +00:00
|
|
|
return CapnpConnectParameters{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootCapnpConnectParameters(s *capnp.Segment) (CapnpConnectParameters, error) {
|
2019-09-06 15:42:52 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 5})
|
2019-03-18 23:14:47 +00:00
|
|
|
return CapnpConnectParameters{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootCapnpConnectParameters(msg *capnp.Message) (CapnpConnectParameters, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return CapnpConnectParameters{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) String() string {
|
|
|
|
str, _ := text.Marshal(0xa78f37418c1077c8, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) OriginCert() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return []byte(p.Data()), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) HasOriginCert() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) SetOriginCert(v []byte) error {
|
|
|
|
return s.Struct.SetData(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) CloudflaredID() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return []byte(p.Data()), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) HasCloudflaredID() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) SetCloudflaredID(v []byte) error {
|
|
|
|
return s.Struct.SetData(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) NumPreviousAttempts() uint8 {
|
|
|
|
return s.Struct.Uint8(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) SetNumPreviousAttempts(v uint8) {
|
|
|
|
s.Struct.SetUint8(0, v)
|
|
|
|
}
|
|
|
|
|
2019-04-01 18:50:30 +00:00
|
|
|
func (s CapnpConnectParameters) Tags() (Tag_List, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return Tag_List{List: p.List()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) HasTags() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) SetTags(v Tag_List) error {
|
|
|
|
return s.Struct.SetPtr(2, v.List.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTags sets the tags field to a newly
|
|
|
|
// allocated Tag_List, preferring placement in s's segment.
|
|
|
|
func (s CapnpConnectParameters) NewTags(n int32) (Tag_List, error) {
|
|
|
|
l, err := NewTag_List(s.Struct.Segment(), n)
|
|
|
|
if err != nil {
|
|
|
|
return Tag_List{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(2, l.List.ToPtr())
|
|
|
|
return l, err
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:43:45 +00:00
|
|
|
func (s CapnpConnectParameters) CloudflaredVersion() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) HasCloudflaredVersion() bool {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) CloudflaredVersionBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(3)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters) SetCloudflaredVersion(v string) error {
|
|
|
|
return s.Struct.SetText(3, v)
|
|
|
|
}
|
|
|
|
|
2019-09-18 19:57:20 +00:00
|
|
|
func (s CapnpConnectParameters) IntentLabel() (string, error) {
|
2019-07-30 18:55:34 +00:00
|
|
|
p, err := s.Struct.Ptr(4)
|
2019-09-18 19:57:20 +00:00
|
|
|
return p.Text(), err
|
2019-07-30 18:55:34 +00:00
|
|
|
}
|
|
|
|
|
2019-09-18 19:57:20 +00:00
|
|
|
func (s CapnpConnectParameters) HasIntentLabel() bool {
|
2019-07-30 18:55:34 +00:00
|
|
|
p, err := s.Struct.Ptr(4)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-09-18 19:57:20 +00:00
|
|
|
func (s CapnpConnectParameters) IntentLabelBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(4)
|
|
|
|
return p.TextBytes(), err
|
2019-08-30 00:03:43 +00:00
|
|
|
}
|
|
|
|
|
2019-09-18 19:57:20 +00:00
|
|
|
func (s CapnpConnectParameters) SetIntentLabel(v string) error {
|
|
|
|
return s.Struct.SetText(4, v)
|
2019-07-30 18:55:34 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
// CapnpConnectParameters_List is a list of CapnpConnectParameters.
|
|
|
|
type CapnpConnectParameters_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewCapnpConnectParameters creates a new list of CapnpConnectParameters.
|
|
|
|
func NewCapnpConnectParameters_List(s *capnp.Segment, sz int32) (CapnpConnectParameters_List, error) {
|
2019-09-06 15:42:52 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 5}, sz)
|
2019-03-18 23:14:47 +00:00
|
|
|
return CapnpConnectParameters_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters_List) At(i int) CapnpConnectParameters {
|
|
|
|
return CapnpConnectParameters{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s CapnpConnectParameters_List) Set(i int, v CapnpConnectParameters) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s CapnpConnectParameters_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xa78f37418c1077c8, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
// CapnpConnectParameters_Promise is a wrapper for a CapnpConnectParameters promised by a client call.
|
|
|
|
type CapnpConnectParameters_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p CapnpConnectParameters_Promise) Struct() (CapnpConnectParameters, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return CapnpConnectParameters{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type ConnectResult struct{ capnp.Struct }
|
2019-09-17 21:58:49 +00:00
|
|
|
type ConnectResult_result ConnectResult
|
|
|
|
type ConnectResult_result_Which uint16
|
|
|
|
|
|
|
|
const (
|
|
|
|
ConnectResult_result_Which_err ConnectResult_result_Which = 0
|
|
|
|
ConnectResult_result_Which_success ConnectResult_result_Which = 1
|
|
|
|
)
|
|
|
|
|
|
|
|
func (w ConnectResult_result_Which) String() string {
|
|
|
|
const s = "errsuccess"
|
|
|
|
switch w {
|
|
|
|
case ConnectResult_result_Which_err:
|
|
|
|
return s[0:3]
|
|
|
|
case ConnectResult_result_Which_success:
|
|
|
|
return s[3:10]
|
|
|
|
|
|
|
|
}
|
|
|
|
return "ConnectResult_result_Which(" + strconv.FormatUint(uint64(w), 10) + ")"
|
|
|
|
}
|
2019-03-18 23:14:47 +00:00
|
|
|
|
|
|
|
// ConnectResult_TypeID is the unique identifier for the type ConnectResult.
|
|
|
|
const ConnectResult_TypeID = 0xff8d9848747c956a
|
|
|
|
|
|
|
|
func NewConnectResult(s *capnp.Segment) (ConnectResult, error) {
|
2019-09-17 21:58:49 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 1})
|
2019-03-18 23:14:47 +00:00
|
|
|
return ConnectResult{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootConnectResult(s *capnp.Segment) (ConnectResult, error) {
|
2019-09-17 21:58:49 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 1})
|
2019-03-18 23:14:47 +00:00
|
|
|
return ConnectResult{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootConnectResult(msg *capnp.Message) (ConnectResult, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return ConnectResult{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectResult) String() string {
|
|
|
|
str, _ := text.Marshal(0xff8d9848747c956a, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (s ConnectResult) Result() ConnectResult_result { return ConnectResult_result(s) }
|
|
|
|
|
|
|
|
func (s ConnectResult_result) Which() ConnectResult_result_Which {
|
|
|
|
return ConnectResult_result_Which(s.Struct.Uint16(0))
|
|
|
|
}
|
|
|
|
func (s ConnectResult_result) Err() (ConnectError, error) {
|
|
|
|
if s.Struct.Uint16(0) != 0 {
|
|
|
|
panic("Which() != err")
|
|
|
|
}
|
2019-03-18 23:14:47 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return ConnectError{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (s ConnectResult_result) HasErr() bool {
|
|
|
|
if s.Struct.Uint16(0) != 0 {
|
|
|
|
return false
|
|
|
|
}
|
2019-03-18 23:14:47 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (s ConnectResult_result) SetErr(v ConnectError) error {
|
|
|
|
s.Struct.SetUint16(0, 0)
|
2019-03-18 23:14:47 +00:00
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewErr sets the err field to a newly
|
|
|
|
// allocated ConnectError struct, preferring placement in s's segment.
|
2019-09-17 21:58:49 +00:00
|
|
|
func (s ConnectResult_result) NewErr() (ConnectError, error) {
|
|
|
|
s.Struct.SetUint16(0, 0)
|
2019-03-18 23:14:47 +00:00
|
|
|
ss, err := NewConnectError(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return ConnectError{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (s ConnectResult_result) Success() (ConnectSuccess, error) {
|
|
|
|
if s.Struct.Uint16(0) != 1 {
|
|
|
|
panic("Which() != success")
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
2019-09-17 21:58:49 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return ConnectSuccess{Struct: p.Struct()}, err
|
2019-08-22 18:53:48 +00:00
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (s ConnectResult_result) HasSuccess() bool {
|
|
|
|
if s.Struct.Uint16(0) != 1 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
2019-08-22 18:53:48 +00:00
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (s ConnectResult_result) SetSuccess(v ConnectSuccess) error {
|
|
|
|
s.Struct.SetUint16(0, 1)
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
2019-08-22 18:53:48 +00:00
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
// NewSuccess sets the success field to a newly
|
|
|
|
// allocated ConnectSuccess struct, preferring placement in s's segment.
|
|
|
|
func (s ConnectResult_result) NewSuccess() (ConnectSuccess, error) {
|
|
|
|
s.Struct.SetUint16(0, 1)
|
|
|
|
ss, err := NewConnectSuccess(s.Struct.Segment())
|
2019-08-22 18:53:48 +00:00
|
|
|
if err != nil {
|
2019-09-17 21:58:49 +00:00
|
|
|
return ConnectSuccess{}, err
|
2019-08-22 18:53:48 +00:00
|
|
|
}
|
2019-09-17 21:58:49 +00:00
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
2019-08-22 18:53:48 +00:00
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
// ConnectResult_List is a list of ConnectResult.
|
|
|
|
type ConnectResult_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewConnectResult creates a new list of ConnectResult.
|
|
|
|
func NewConnectResult_List(s *capnp.Segment, sz int32) (ConnectResult_List, error) {
|
2019-09-17 21:58:49 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 1}, sz)
|
2019-03-18 23:14:47 +00:00
|
|
|
return ConnectResult_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectResult_List) At(i int) ConnectResult { return ConnectResult{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s ConnectResult_List) Set(i int, v ConnectResult) error { return s.List.SetStruct(i, v.Struct) }
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ConnectResult_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xff8d9848747c956a, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
// ConnectResult_Promise is a wrapper for a ConnectResult promised by a client call.
|
|
|
|
type ConnectResult_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p ConnectResult_Promise) Struct() (ConnectResult, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return ConnectResult{s}, err
|
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (p ConnectResult_Promise) Result() ConnectResult_result_Promise {
|
|
|
|
return ConnectResult_result_Promise{p.Pipeline}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectResult_result_Promise is a wrapper for a ConnectResult_result promised by a client call.
|
|
|
|
type ConnectResult_result_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p ConnectResult_result_Promise) Struct() (ConnectResult_result, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return ConnectResult_result{s}, err
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (p ConnectResult_result_Promise) Err() ConnectError_Promise {
|
|
|
|
return ConnectError_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
func (p ConnectResult_result_Promise) Success() ConnectSuccess_Promise {
|
|
|
|
return ConnectSuccess_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
2019-08-22 18:53:48 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
type ConnectError struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// ConnectError_TypeID is the unique identifier for the type ConnectError.
|
|
|
|
const ConnectError_TypeID = 0xb14ce48f4e2abb0d
|
|
|
|
|
|
|
|
func NewConnectError(s *capnp.Segment) (ConnectError, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 16, PointerCount: 1})
|
|
|
|
return ConnectError{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootConnectError(s *capnp.Segment) (ConnectError, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 16, PointerCount: 1})
|
|
|
|
return ConnectError{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootConnectError(msg *capnp.Message) (ConnectError, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return ConnectError{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) String() string {
|
|
|
|
str, _ := text.Marshal(0xb14ce48f4e2abb0d, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) Cause() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) HasCause() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
func (s ConnectError) CauseBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) SetCause(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) RetryAfter() int64 {
|
|
|
|
return int64(s.Struct.Uint64(0))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) SetRetryAfter(v int64) {
|
|
|
|
s.Struct.SetUint64(0, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) ShouldRetry() bool {
|
|
|
|
return s.Struct.Bit(64)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError) SetShouldRetry(v bool) {
|
|
|
|
s.Struct.SetBit(64, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectError_List is a list of ConnectError.
|
|
|
|
type ConnectError_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewConnectError creates a new list of ConnectError.
|
|
|
|
func NewConnectError_List(s *capnp.Segment, sz int32) (ConnectError_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 16, PointerCount: 1}, sz)
|
|
|
|
return ConnectError_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectError_List) At(i int) ConnectError { return ConnectError{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s ConnectError_List) Set(i int, v ConnectError) error { return s.List.SetStruct(i, v.Struct) }
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ConnectError_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xb14ce48f4e2abb0d, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// ConnectError_Promise is a wrapper for a ConnectError promised by a client call.
|
|
|
|
type ConnectError_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p ConnectError_Promise) Struct() (ConnectError, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return ConnectError{s}, err
|
|
|
|
}
|
|
|
|
|
2019-09-17 21:58:49 +00:00
|
|
|
type ConnectSuccess struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// ConnectSuccess_TypeID is the unique identifier for the type ConnectSuccess.
|
|
|
|
const ConnectSuccess_TypeID = 0x8407e070e0d52605
|
|
|
|
|
|
|
|
func NewConnectSuccess(s *capnp.Segment) (ConnectSuccess, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
|
|
|
|
return ConnectSuccess{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootConnectSuccess(s *capnp.Segment) (ConnectSuccess, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
|
|
|
|
return ConnectSuccess{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootConnectSuccess(msg *capnp.Message) (ConnectSuccess, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return ConnectSuccess{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) String() string {
|
|
|
|
str, _ := text.Marshal(0x8407e070e0d52605, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) ServerLocationName() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) HasServerLocationName() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) ServerLocationNameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) SetServerLocationName(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) ClientConfig() (ClientConfig, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return ClientConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) HasClientConfig() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess) SetClientConfig(v ClientConfig) error {
|
|
|
|
return s.Struct.SetPtr(1, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewClientConfig sets the clientConfig field to a newly
|
|
|
|
// allocated ClientConfig struct, preferring placement in s's segment.
|
|
|
|
func (s ConnectSuccess) NewClientConfig() (ClientConfig, error) {
|
|
|
|
ss, err := NewClientConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return ClientConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(1, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectSuccess_List is a list of ConnectSuccess.
|
|
|
|
type ConnectSuccess_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewConnectSuccess creates a new list of ConnectSuccess.
|
|
|
|
func NewConnectSuccess_List(s *capnp.Segment, sz int32) (ConnectSuccess_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2}, sz)
|
|
|
|
return ConnectSuccess_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ConnectSuccess_List) At(i int) ConnectSuccess { return ConnectSuccess{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s ConnectSuccess_List) Set(i int, v ConnectSuccess) error { return s.List.SetStruct(i, v.Struct) }
|
|
|
|
|
|
|
|
func (s ConnectSuccess_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0x8407e070e0d52605, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectSuccess_Promise is a wrapper for a ConnectSuccess promised by a client call.
|
|
|
|
type ConnectSuccess_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p ConnectSuccess_Promise) Struct() (ConnectSuccess, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return ConnectSuccess{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p ConnectSuccess_Promise) ClientConfig() ClientConfig_Promise {
|
|
|
|
return ClientConfig_Promise{Pipeline: p.Pipeline.GetPipeline(1)}
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
type ClientConfig struct{ capnp.Struct }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientConfig_TypeID is the unique identifier for the type ClientConfig.
|
2019-05-30 20:45:46 +00:00
|
|
|
const ClientConfig_TypeID = 0xf0a143f1c95a678e
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func NewClientConfig(s *capnp.Segment) (ClientConfig, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 4})
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func NewRootClientConfig(s *capnp.Segment) (ClientConfig, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 4})
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func ReadRootClientConfig(msg *capnp.Message) (ClientConfig, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
root, err := msg.RootPtr()
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig{root.Struct()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) String() string {
|
2019-05-30 20:45:46 +00:00
|
|
|
str, _ := text.Marshal(0xf0a143f1c95a678e, s.Struct)
|
2019-03-29 23:05:11 +00:00
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) Version() uint64 {
|
|
|
|
return s.Struct.Uint64(0)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) SetVersion(v uint64) {
|
|
|
|
s.Struct.SetUint64(0, v)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientConfig) SupervisorConfig() (SupervisorConfig, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return SupervisorConfig{Struct: p.Struct()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientConfig) HasSupervisorConfig() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientConfig) SetSupervisorConfig(v SupervisorConfig) error {
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
// NewSupervisorConfig sets the supervisorConfig field to a newly
|
|
|
|
// allocated SupervisorConfig struct, preferring placement in s's segment.
|
|
|
|
func (s ClientConfig) NewSupervisorConfig() (SupervisorConfig, error) {
|
|
|
|
ss, err := NewSupervisorConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return SupervisorConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientConfig) EdgeConnectionConfig() (EdgeConnectionConfig, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return EdgeConnectionConfig{Struct: p.Struct()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientConfig) HasEdgeConnectionConfig() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientConfig) SetEdgeConnectionConfig(v EdgeConnectionConfig) error {
|
|
|
|
return s.Struct.SetPtr(1, v.Struct.ToPtr())
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
// NewEdgeConnectionConfig sets the edgeConnectionConfig field to a newly
|
|
|
|
// allocated EdgeConnectionConfig struct, preferring placement in s's segment.
|
|
|
|
func (s ClientConfig) NewEdgeConnectionConfig() (EdgeConnectionConfig, error) {
|
|
|
|
ss, err := NewEdgeConnectionConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return EdgeConnectionConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(1, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) DohProxyConfigs() (DoHProxyConfig_List, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
p, err := s.Struct.Ptr(2)
|
2019-03-29 23:05:11 +00:00
|
|
|
return DoHProxyConfig_List{List: p.List()}, err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) HasDohProxyConfigs() bool {
|
2019-06-12 15:07:24 +00:00
|
|
|
p, err := s.Struct.Ptr(2)
|
2019-03-29 23:05:11 +00:00
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) SetDohProxyConfigs(v DoHProxyConfig_List) error {
|
2019-06-12 15:07:24 +00:00
|
|
|
return s.Struct.SetPtr(2, v.List.ToPtr())
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDohProxyConfigs sets the dohProxyConfigs field to a newly
|
|
|
|
// allocated DoHProxyConfig_List, preferring placement in s's segment.
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) NewDohProxyConfigs(n int32) (DoHProxyConfig_List, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
l, err := NewDoHProxyConfig_List(s.Struct.Segment(), n)
|
|
|
|
if err != nil {
|
|
|
|
return DoHProxyConfig_List{}, err
|
|
|
|
}
|
2019-06-12 15:07:24 +00:00
|
|
|
err = s.Struct.SetPtr(2, l.List.ToPtr())
|
2019-03-29 23:05:11 +00:00
|
|
|
return l, err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) ReverseProxyConfigs() (ReverseProxyConfig_List, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
p, err := s.Struct.Ptr(3)
|
2019-03-29 23:05:11 +00:00
|
|
|
return ReverseProxyConfig_List{List: p.List()}, err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) HasReverseProxyConfigs() bool {
|
2019-06-12 15:07:24 +00:00
|
|
|
p, err := s.Struct.Ptr(3)
|
2019-03-29 23:05:11 +00:00
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) SetReverseProxyConfigs(v ReverseProxyConfig_List) error {
|
2019-06-12 15:07:24 +00:00
|
|
|
return s.Struct.SetPtr(3, v.List.ToPtr())
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewReverseProxyConfigs sets the reverseProxyConfigs field to a newly
|
|
|
|
// allocated ReverseProxyConfig_List, preferring placement in s's segment.
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientConfig) NewReverseProxyConfigs(n int32) (ReverseProxyConfig_List, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
l, err := NewReverseProxyConfig_List(s.Struct.Segment(), n)
|
|
|
|
if err != nil {
|
|
|
|
return ReverseProxyConfig_List{}, err
|
|
|
|
}
|
2019-06-12 15:07:24 +00:00
|
|
|
err = s.Struct.SetPtr(3, l.List.ToPtr())
|
2019-03-29 23:05:11 +00:00
|
|
|
return l, err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientConfig_List is a list of ClientConfig.
|
|
|
|
type ClientConfig_List struct{ capnp.List }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// NewClientConfig creates a new list of ClientConfig.
|
|
|
|
func NewClientConfig_List(s *capnp.Segment, sz int32) (ClientConfig_List, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 4}, sz)
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig_List{l}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s ClientConfig_List) At(i int) ClientConfig { return ClientConfig{s.List.Struct(i)} }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s ClientConfig_List) Set(i int, v ClientConfig) error { return s.List.SetStruct(i, v.Struct) }
|
2019-05-17 14:23:05 +00:00
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xf0a143f1c95a678e, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientConfig_Promise is a wrapper for a ClientConfig promised by a client call.
|
|
|
|
type ClientConfig_Promise struct{ *capnp.Pipeline }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (p ClientConfig_Promise) Struct() (ClientConfig, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
s, err := p.Pipeline.Struct()
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig{s}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (p ClientConfig_Promise) SupervisorConfig() SupervisorConfig_Promise {
|
|
|
|
return SupervisorConfig_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p ClientConfig_Promise) EdgeConnectionConfig() EdgeConnectionConfig_Promise {
|
|
|
|
return EdgeConnectionConfig_Promise{Pipeline: p.Pipeline.GetPipeline(1)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type SupervisorConfig struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// SupervisorConfig_TypeID is the unique identifier for the type SupervisorConfig.
|
|
|
|
const SupervisorConfig_TypeID = 0xf7f49b3f779ae258
|
|
|
|
|
|
|
|
func NewSupervisorConfig(s *capnp.Segment) (SupervisorConfig, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 24, PointerCount: 0})
|
|
|
|
return SupervisorConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootSupervisorConfig(s *capnp.Segment) (SupervisorConfig, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 24, PointerCount: 0})
|
|
|
|
return SupervisorConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootSupervisorConfig(msg *capnp.Message) (SupervisorConfig, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return SupervisorConfig{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0xf7f49b3f779ae258, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig) AutoUpdateFrequency() int64 {
|
|
|
|
return int64(s.Struct.Uint64(0))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig) SetAutoUpdateFrequency(v int64) {
|
|
|
|
s.Struct.SetUint64(0, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig) MetricsUpdateFrequency() int64 {
|
|
|
|
return int64(s.Struct.Uint64(8))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig) SetMetricsUpdateFrequency(v int64) {
|
|
|
|
s.Struct.SetUint64(8, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig) GracePeriod() int64 {
|
|
|
|
return int64(s.Struct.Uint64(16))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig) SetGracePeriod(v int64) {
|
|
|
|
s.Struct.SetUint64(16, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
// SupervisorConfig_List is a list of SupervisorConfig.
|
|
|
|
type SupervisorConfig_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewSupervisorConfig creates a new list of SupervisorConfig.
|
|
|
|
func NewSupervisorConfig_List(s *capnp.Segment, sz int32) (SupervisorConfig_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 24, PointerCount: 0}, sz)
|
|
|
|
return SupervisorConfig_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig_List) At(i int) SupervisorConfig { return SupervisorConfig{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s SupervisorConfig_List) Set(i int, v SupervisorConfig) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SupervisorConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xf7f49b3f779ae258, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// SupervisorConfig_Promise is a wrapper for a SupervisorConfig promised by a client call.
|
|
|
|
type SupervisorConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p SupervisorConfig_Promise) Struct() (SupervisorConfig, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return SupervisorConfig{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type EdgeConnectionConfig struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// EdgeConnectionConfig_TypeID is the unique identifier for the type EdgeConnectionConfig.
|
|
|
|
const EdgeConnectionConfig_TypeID = 0xc744e349009087aa
|
|
|
|
|
|
|
|
func NewEdgeConnectionConfig(s *capnp.Segment) (EdgeConnectionConfig, error) {
|
2019-06-17 21:18:47 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 32, PointerCount: 1})
|
2019-06-12 15:07:24 +00:00
|
|
|
return EdgeConnectionConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootEdgeConnectionConfig(s *capnp.Segment) (EdgeConnectionConfig, error) {
|
2019-06-17 21:18:47 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 32, PointerCount: 1})
|
2019-06-12 15:07:24 +00:00
|
|
|
return EdgeConnectionConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootEdgeConnectionConfig(msg *capnp.Message) (EdgeConnectionConfig, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return EdgeConnectionConfig{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0xc744e349009087aa, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) NumHAConnections() uint8 {
|
|
|
|
return s.Struct.Uint8(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) SetNumHAConnections(v uint8) {
|
|
|
|
s.Struct.SetUint8(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) HeartbeatInterval() int64 {
|
|
|
|
return int64(s.Struct.Uint64(8))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) SetHeartbeatInterval(v int64) {
|
|
|
|
s.Struct.SetUint64(8, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) Timeout() int64 {
|
|
|
|
return int64(s.Struct.Uint64(16))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) SetTimeout(v int64) {
|
|
|
|
s.Struct.SetUint64(16, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) MaxFailedHeartbeats() uint64 {
|
|
|
|
return s.Struct.Uint64(24)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) SetMaxFailedHeartbeats(v uint64) {
|
|
|
|
s.Struct.SetUint64(24, v)
|
|
|
|
}
|
|
|
|
|
2019-06-17 21:18:47 +00:00
|
|
|
func (s EdgeConnectionConfig) UserCredentialPath() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) HasUserCredentialPath() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) UserCredentialPathBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig) SetUserCredentialPath(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
// EdgeConnectionConfig_List is a list of EdgeConnectionConfig.
|
|
|
|
type EdgeConnectionConfig_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewEdgeConnectionConfig creates a new list of EdgeConnectionConfig.
|
|
|
|
func NewEdgeConnectionConfig_List(s *capnp.Segment, sz int32) (EdgeConnectionConfig_List, error) {
|
2019-06-17 21:18:47 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 32, PointerCount: 1}, sz)
|
2019-06-12 15:07:24 +00:00
|
|
|
return EdgeConnectionConfig_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig_List) At(i int) EdgeConnectionConfig {
|
|
|
|
return EdgeConnectionConfig{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig_List) Set(i int, v EdgeConnectionConfig) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s EdgeConnectionConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xc744e349009087aa, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdgeConnectionConfig_Promise is a wrapper for a EdgeConnectionConfig promised by a client call.
|
|
|
|
type EdgeConnectionConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p EdgeConnectionConfig_Promise) Struct() (EdgeConnectionConfig, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return EdgeConnectionConfig{s}, err
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
type ReverseProxyConfig struct{ capnp.Struct }
|
2019-09-16 23:25:00 +00:00
|
|
|
type ReverseProxyConfig_originConfig ReverseProxyConfig
|
|
|
|
type ReverseProxyConfig_originConfig_Which uint16
|
2019-03-29 23:05:11 +00:00
|
|
|
|
|
|
|
const (
|
2019-09-16 23:25:00 +00:00
|
|
|
ReverseProxyConfig_originConfig_Which_http ReverseProxyConfig_originConfig_Which = 0
|
|
|
|
ReverseProxyConfig_originConfig_Which_websocket ReverseProxyConfig_originConfig_Which = 1
|
|
|
|
ReverseProxyConfig_originConfig_Which_helloWorld ReverseProxyConfig_originConfig_Which = 2
|
2019-03-29 23:05:11 +00:00
|
|
|
)
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (w ReverseProxyConfig_originConfig_Which) String() string {
|
2019-05-30 20:45:46 +00:00
|
|
|
const s = "httpwebsockethelloWorld"
|
2019-03-29 23:05:11 +00:00
|
|
|
switch w {
|
2019-09-16 23:25:00 +00:00
|
|
|
case ReverseProxyConfig_originConfig_Which_http:
|
2019-03-29 23:05:11 +00:00
|
|
|
return s[0:4]
|
2019-09-16 23:25:00 +00:00
|
|
|
case ReverseProxyConfig_originConfig_Which_websocket:
|
2019-05-30 20:45:46 +00:00
|
|
|
return s[4:13]
|
2019-09-16 23:25:00 +00:00
|
|
|
case ReverseProxyConfig_originConfig_Which_helloWorld:
|
2019-05-30 20:45:46 +00:00
|
|
|
return s[13:23]
|
2019-03-29 23:05:11 +00:00
|
|
|
|
|
|
|
}
|
2019-09-16 23:25:00 +00:00
|
|
|
return "ReverseProxyConfig_originConfig_Which(" + strconv.FormatUint(uint64(w), 10) + ")"
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReverseProxyConfig_TypeID is the unique identifier for the type ReverseProxyConfig.
|
|
|
|
const ReverseProxyConfig_TypeID = 0xc766a92976e389c4
|
|
|
|
|
|
|
|
func NewReverseProxyConfig(s *capnp.Segment) (ReverseProxyConfig, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 32, PointerCount: 2})
|
|
|
|
return ReverseProxyConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootReverseProxyConfig(s *capnp.Segment) (ReverseProxyConfig, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 32, PointerCount: 2})
|
|
|
|
return ReverseProxyConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootReverseProxyConfig(msg *capnp.Message) (ReverseProxyConfig, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return ReverseProxyConfig{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0xc766a92976e389c4, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ReverseProxyConfig) TunnelHostname() (string, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ReverseProxyConfig) HasTunnelHostname() bool {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ReverseProxyConfig) TunnelHostnameBytes() ([]byte, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ReverseProxyConfig) SetTunnelHostname(v string) error {
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig) OriginConfig() ReverseProxyConfig_originConfig {
|
|
|
|
return ReverseProxyConfig_originConfig(s)
|
|
|
|
}
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) Which() ReverseProxyConfig_originConfig_Which {
|
|
|
|
return ReverseProxyConfig_originConfig_Which(s.Struct.Uint16(0))
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) Http() (HTTPOriginConfig, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
if s.Struct.Uint16(0) != 0 {
|
|
|
|
panic("Which() != http")
|
|
|
|
}
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return HTTPOriginConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) HasHttp() bool {
|
2019-03-29 23:05:11 +00:00
|
|
|
if s.Struct.Uint16(0) != 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) SetHttp(v HTTPOriginConfig) error {
|
2019-03-29 23:05:11 +00:00
|
|
|
s.Struct.SetUint16(0, 0)
|
|
|
|
return s.Struct.SetPtr(1, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewHttp sets the http field to a newly
|
|
|
|
// allocated HTTPOriginConfig struct, preferring placement in s's segment.
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) NewHttp() (HTTPOriginConfig, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
s.Struct.SetUint16(0, 0)
|
|
|
|
ss, err := NewHTTPOriginConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return HTTPOriginConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(1, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) Websocket() (WebSocketOriginConfig, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
if s.Struct.Uint16(0) != 1 {
|
|
|
|
panic("Which() != websocket")
|
|
|
|
}
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return WebSocketOriginConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) HasWebsocket() bool {
|
2019-05-30 20:45:46 +00:00
|
|
|
if s.Struct.Uint16(0) != 1 {
|
2019-03-29 23:05:11 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) SetWebsocket(v WebSocketOriginConfig) error {
|
2019-05-30 20:45:46 +00:00
|
|
|
s.Struct.SetUint16(0, 1)
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.Struct.SetPtr(1, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewWebsocket sets the websocket field to a newly
|
|
|
|
// allocated WebSocketOriginConfig struct, preferring placement in s's segment.
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) NewWebsocket() (WebSocketOriginConfig, error) {
|
2019-05-30 20:45:46 +00:00
|
|
|
s.Struct.SetUint16(0, 1)
|
2019-03-29 23:05:11 +00:00
|
|
|
ss, err := NewWebSocketOriginConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return WebSocketOriginConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(1, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) HelloWorld() (HelloWorldOriginConfig, error) {
|
2019-06-12 15:07:24 +00:00
|
|
|
if s.Struct.Uint16(0) != 2 {
|
|
|
|
panic("Which() != helloWorld")
|
|
|
|
}
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return HelloWorldOriginConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) HasHelloWorld() bool {
|
2019-05-30 20:45:46 +00:00
|
|
|
if s.Struct.Uint16(0) != 2 {
|
2019-03-29 23:05:11 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) SetHelloWorld(v HelloWorldOriginConfig) error {
|
2019-05-30 20:45:46 +00:00
|
|
|
s.Struct.SetUint16(0, 2)
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.Struct.SetPtr(1, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewHelloWorld sets the helloWorld field to a newly
|
|
|
|
// allocated HelloWorldOriginConfig struct, preferring placement in s's segment.
|
2019-09-16 23:25:00 +00:00
|
|
|
func (s ReverseProxyConfig_originConfig) NewHelloWorld() (HelloWorldOriginConfig, error) {
|
2019-05-30 20:45:46 +00:00
|
|
|
s.Struct.SetUint16(0, 2)
|
2019-03-29 23:05:11 +00:00
|
|
|
ss, err := NewHelloWorldOriginConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return HelloWorldOriginConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(1, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig) Retries() uint64 {
|
|
|
|
return s.Struct.Uint64(8)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig) SetRetries(v uint64) {
|
|
|
|
s.Struct.SetUint64(8, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig) ConnectionTimeout() int64 {
|
|
|
|
return int64(s.Struct.Uint64(16))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig) SetConnectionTimeout(v int64) {
|
|
|
|
s.Struct.SetUint64(16, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig) CompressionQuality() uint64 {
|
|
|
|
return s.Struct.Uint64(24)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig) SetCompressionQuality(v uint64) {
|
|
|
|
s.Struct.SetUint64(24, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReverseProxyConfig_List is a list of ReverseProxyConfig.
|
|
|
|
type ReverseProxyConfig_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewReverseProxyConfig creates a new list of ReverseProxyConfig.
|
|
|
|
func NewReverseProxyConfig_List(s *capnp.Segment, sz int32) (ReverseProxyConfig_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 32, PointerCount: 2}, sz)
|
|
|
|
return ReverseProxyConfig_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig_List) At(i int) ReverseProxyConfig {
|
|
|
|
return ReverseProxyConfig{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ReverseProxyConfig_List) Set(i int, v ReverseProxyConfig) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ReverseProxyConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xc766a92976e389c4, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// ReverseProxyConfig_Promise is a wrapper for a ReverseProxyConfig promised by a client call.
|
|
|
|
type ReverseProxyConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p ReverseProxyConfig_Promise) Struct() (ReverseProxyConfig, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return ReverseProxyConfig{s}, err
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (p ReverseProxyConfig_Promise) OriginConfig() ReverseProxyConfig_originConfig_Promise {
|
|
|
|
return ReverseProxyConfig_originConfig_Promise{p.Pipeline}
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
// ReverseProxyConfig_originConfig_Promise is a wrapper for a ReverseProxyConfig_originConfig promised by a client call.
|
|
|
|
type ReverseProxyConfig_originConfig_Promise struct{ *capnp.Pipeline }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (p ReverseProxyConfig_originConfig_Promise) Struct() (ReverseProxyConfig_originConfig, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
s, err := p.Pipeline.Struct()
|
2019-09-16 23:25:00 +00:00
|
|
|
return ReverseProxyConfig_originConfig{s}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (p ReverseProxyConfig_originConfig_Promise) Http() HTTPOriginConfig_Promise {
|
2019-03-29 23:05:11 +00:00
|
|
|
return HTTPOriginConfig_Promise{Pipeline: p.Pipeline.GetPipeline(1)}
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (p ReverseProxyConfig_originConfig_Promise) Websocket() WebSocketOriginConfig_Promise {
|
2019-03-29 23:05:11 +00:00
|
|
|
return WebSocketOriginConfig_Promise{Pipeline: p.Pipeline.GetPipeline(1)}
|
|
|
|
}
|
|
|
|
|
2019-09-16 23:25:00 +00:00
|
|
|
func (p ReverseProxyConfig_originConfig_Promise) HelloWorld() HelloWorldOriginConfig_Promise {
|
2019-03-29 23:05:11 +00:00
|
|
|
return HelloWorldOriginConfig_Promise{Pipeline: p.Pipeline.GetPipeline(1)}
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
type WebSocketOriginConfig struct{ capnp.Struct }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
// WebSocketOriginConfig_TypeID is the unique identifier for the type WebSocketOriginConfig.
|
|
|
|
const WebSocketOriginConfig_TypeID = 0xf9c895683ed9ac4c
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func NewWebSocketOriginConfig(s *capnp.Segment) (WebSocketOriginConfig, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3})
|
|
|
|
return WebSocketOriginConfig{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func NewRootWebSocketOriginConfig(s *capnp.Segment) (WebSocketOriginConfig, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3})
|
|
|
|
return WebSocketOriginConfig{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func ReadRootWebSocketOriginConfig(msg *capnp.Message) (WebSocketOriginConfig, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
root, err := msg.RootPtr()
|
2019-05-30 20:45:46 +00:00
|
|
|
return WebSocketOriginConfig{root.Struct()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0xf9c895683ed9ac4c, s.Struct)
|
2019-03-29 23:05:11 +00:00
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s WebSocketOriginConfig) UrlString() (string, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s WebSocketOriginConfig) HasUrlString() bool {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s WebSocketOriginConfig) UrlStringBytes() ([]byte, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s WebSocketOriginConfig) SetUrlString(v string) error {
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) TlsVerify() bool {
|
|
|
|
return s.Struct.Bit(0)
|
2019-05-17 14:23:05 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) SetTlsVerify(v bool) {
|
|
|
|
s.Struct.SetBit(0, v)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) OriginCAPool() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) HasOriginCAPool() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) OriginCAPoolBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) SetOriginCAPool(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) OriginServerName() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
2019-03-29 23:05:11 +00:00
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) HasOriginServerName() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
2019-03-29 23:05:11 +00:00
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) OriginServerNameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
2019-03-29 23:05:11 +00:00
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s WebSocketOriginConfig) SetOriginServerName(v string) error {
|
|
|
|
return s.Struct.SetText(2, v)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WebSocketOriginConfig_List is a list of WebSocketOriginConfig.
|
|
|
|
type WebSocketOriginConfig_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewWebSocketOriginConfig creates a new list of WebSocketOriginConfig.
|
|
|
|
func NewWebSocketOriginConfig_List(s *capnp.Segment, sz int32) (WebSocketOriginConfig_List, error) {
|
2019-05-30 20:45:46 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3}, sz)
|
2019-03-29 23:05:11 +00:00
|
|
|
return WebSocketOriginConfig_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s WebSocketOriginConfig_List) At(i int) WebSocketOriginConfig {
|
|
|
|
return WebSocketOriginConfig{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s WebSocketOriginConfig_List) Set(i int, v WebSocketOriginConfig) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s WebSocketOriginConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xf9c895683ed9ac4c, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// WebSocketOriginConfig_Promise is a wrapper for a WebSocketOriginConfig promised by a client call.
|
|
|
|
type WebSocketOriginConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p WebSocketOriginConfig_Promise) Struct() (WebSocketOriginConfig, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return WebSocketOriginConfig{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type HTTPOriginConfig struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// HTTPOriginConfig_TypeID is the unique identifier for the type HTTPOriginConfig.
|
|
|
|
const HTTPOriginConfig_TypeID = 0xe4a6a1bc139211b4
|
|
|
|
|
|
|
|
func NewHTTPOriginConfig(s *capnp.Segment) (HTTPOriginConfig, error) {
|
2019-05-30 20:45:46 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 56, PointerCount: 3})
|
2019-03-29 23:05:11 +00:00
|
|
|
return HTTPOriginConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootHTTPOriginConfig(s *capnp.Segment) (HTTPOriginConfig, error) {
|
2019-05-30 20:45:46 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 56, PointerCount: 3})
|
2019-03-29 23:05:11 +00:00
|
|
|
return HTTPOriginConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootHTTPOriginConfig(msg *capnp.Message) (HTTPOriginConfig, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return HTTPOriginConfig{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0xe4a6a1bc139211b4, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s HTTPOriginConfig) UrlString() (string, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
2019-06-20 16:18:59 +00:00
|
|
|
return p.Text(), err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s HTTPOriginConfig) HasUrlString() bool {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s HTTPOriginConfig) UrlStringBytes() ([]byte, error) {
|
2019-05-30 20:45:46 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
2019-06-20 16:18:59 +00:00
|
|
|
return p.TextBytes(), err
|
2019-05-30 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2019-06-20 16:18:59 +00:00
|
|
|
func (s HTTPOriginConfig) SetUrlString(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) TcpKeepAlive() int64 {
|
2019-06-20 16:18:59 +00:00
|
|
|
return int64(s.Struct.Uint64(0))
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetTcpKeepAlive(v int64) {
|
2019-06-20 16:18:59 +00:00
|
|
|
s.Struct.SetUint64(0, uint64(v))
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) DialDualStack() bool {
|
2019-06-20 16:18:59 +00:00
|
|
|
return s.Struct.Bit(64)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetDialDualStack(v bool) {
|
2019-06-20 16:18:59 +00:00
|
|
|
s.Struct.SetBit(64, v)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) TlsHandshakeTimeout() int64 {
|
|
|
|
return int64(s.Struct.Uint64(16))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetTlsHandshakeTimeout(v int64) {
|
|
|
|
s.Struct.SetUint64(16, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) TlsVerify() bool {
|
2019-06-20 16:18:59 +00:00
|
|
|
return s.Struct.Bit(65)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetTlsVerify(v bool) {
|
2019-06-20 16:18:59 +00:00
|
|
|
s.Struct.SetBit(65, v)
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) OriginCAPool() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) HasOriginCAPool() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) OriginCAPoolBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetOriginCAPool(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) OriginServerName() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) HasOriginServerName() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) OriginServerNameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetOriginServerName(v string) error {
|
|
|
|
return s.Struct.SetText(2, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) MaxIdleConnections() uint64 {
|
|
|
|
return s.Struct.Uint64(24)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetMaxIdleConnections(v uint64) {
|
|
|
|
s.Struct.SetUint64(24, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) IdleConnectionTimeout() int64 {
|
|
|
|
return int64(s.Struct.Uint64(32))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetIdleConnectionTimeout(v int64) {
|
|
|
|
s.Struct.SetUint64(32, uint64(v))
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s HTTPOriginConfig) ProxyConnectionTimeout() int64 {
|
|
|
|
return int64(s.Struct.Uint64(40))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetProxyConnectionTimeout(v int64) {
|
|
|
|
s.Struct.SetUint64(40, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) ExpectContinueTimeout() int64 {
|
|
|
|
return int64(s.Struct.Uint64(48))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetExpectContinueTimeout(v int64) {
|
|
|
|
s.Struct.SetUint64(48, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) ChunkedEncoding() bool {
|
2019-06-20 16:18:59 +00:00
|
|
|
return s.Struct.Bit(66)
|
2019-05-30 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig) SetChunkedEncoding(v bool) {
|
2019-06-20 16:18:59 +00:00
|
|
|
s.Struct.SetBit(66, v)
|
2019-05-30 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// HTTPOriginConfig_List is a list of HTTPOriginConfig.
|
|
|
|
type HTTPOriginConfig_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewHTTPOriginConfig creates a new list of HTTPOriginConfig.
|
|
|
|
func NewHTTPOriginConfig_List(s *capnp.Segment, sz int32) (HTTPOriginConfig_List, error) {
|
2019-05-30 20:45:46 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 56, PointerCount: 3}, sz)
|
2019-03-29 23:05:11 +00:00
|
|
|
return HTTPOriginConfig_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig_List) At(i int) HTTPOriginConfig { return HTTPOriginConfig{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s HTTPOriginConfig_List) Set(i int, v HTTPOriginConfig) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s HTTPOriginConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xe4a6a1bc139211b4, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// HTTPOriginConfig_Promise is a wrapper for a HTTPOriginConfig promised by a client call.
|
|
|
|
type HTTPOriginConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p HTTPOriginConfig_Promise) Struct() (HTTPOriginConfig, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return HTTPOriginConfig{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type DoHProxyConfig struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// DoHProxyConfig_TypeID is the unique identifier for the type DoHProxyConfig.
|
|
|
|
const DoHProxyConfig_TypeID = 0xb167b0bebe562cd0
|
|
|
|
|
|
|
|
func NewDoHProxyConfig(s *capnp.Segment) (DoHProxyConfig, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2})
|
|
|
|
return DoHProxyConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootDoHProxyConfig(s *capnp.Segment) (DoHProxyConfig, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2})
|
|
|
|
return DoHProxyConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootDoHProxyConfig(msg *capnp.Message) (DoHProxyConfig, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return DoHProxyConfig{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0xb167b0bebe562cd0, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) ListenHost() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) HasListenHost() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) ListenHostBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) SetListenHost(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) ListenPort() uint16 {
|
|
|
|
return s.Struct.Uint16(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) SetListenPort(v uint16) {
|
|
|
|
s.Struct.SetUint16(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) Upstreams() (capnp.TextList, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return capnp.TextList{List: p.List()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) HasUpstreams() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig) SetUpstreams(v capnp.TextList) error {
|
|
|
|
return s.Struct.SetPtr(1, v.List.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewUpstreams sets the upstreams field to a newly
|
|
|
|
// allocated capnp.TextList, preferring placement in s's segment.
|
|
|
|
func (s DoHProxyConfig) NewUpstreams(n int32) (capnp.TextList, error) {
|
|
|
|
l, err := capnp.NewTextList(s.Struct.Segment(), n)
|
|
|
|
if err != nil {
|
|
|
|
return capnp.TextList{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(1, l.List.ToPtr())
|
|
|
|
return l, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DoHProxyConfig_List is a list of DoHProxyConfig.
|
|
|
|
type DoHProxyConfig_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewDoHProxyConfig creates a new list of DoHProxyConfig.
|
|
|
|
func NewDoHProxyConfig_List(s *capnp.Segment, sz int32) (DoHProxyConfig_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2}, sz)
|
|
|
|
return DoHProxyConfig_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s DoHProxyConfig_List) At(i int) DoHProxyConfig { return DoHProxyConfig{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s DoHProxyConfig_List) Set(i int, v DoHProxyConfig) error { return s.List.SetStruct(i, v.Struct) }
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s DoHProxyConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xb167b0bebe562cd0, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// DoHProxyConfig_Promise is a wrapper for a DoHProxyConfig promised by a client call.
|
|
|
|
type DoHProxyConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p DoHProxyConfig_Promise) Struct() (DoHProxyConfig, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return DoHProxyConfig{s}, err
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
type HelloWorldOriginConfig struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// HelloWorldOriginConfig_TypeID is the unique identifier for the type HelloWorldOriginConfig.
|
|
|
|
const HelloWorldOriginConfig_TypeID = 0x8891f360e47c30d3
|
|
|
|
|
|
|
|
func NewHelloWorldOriginConfig(s *capnp.Segment) (HelloWorldOriginConfig, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0})
|
|
|
|
return HelloWorldOriginConfig{st}, err
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
func NewRootHelloWorldOriginConfig(s *capnp.Segment) (HelloWorldOriginConfig, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0})
|
|
|
|
return HelloWorldOriginConfig{st}, err
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
func ReadRootHelloWorldOriginConfig(msg *capnp.Message) (HelloWorldOriginConfig, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return HelloWorldOriginConfig{root.Struct()}, err
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
func (s HelloWorldOriginConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0x8891f360e47c30d3, s.Struct)
|
|
|
|
return str
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// HelloWorldOriginConfig_List is a list of HelloWorldOriginConfig.
|
|
|
|
type HelloWorldOriginConfig_List struct{ capnp.List }
|
2019-03-18 23:14:47 +00:00
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// NewHelloWorldOriginConfig creates a new list of HelloWorldOriginConfig.
|
|
|
|
func NewHelloWorldOriginConfig_List(s *capnp.Segment, sz int32) (HelloWorldOriginConfig_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0}, sz)
|
|
|
|
return HelloWorldOriginConfig_List{l}, err
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
func (s HelloWorldOriginConfig_List) At(i int) HelloWorldOriginConfig {
|
|
|
|
return HelloWorldOriginConfig{s.List.Struct(i)}
|
|
|
|
}
|
2019-03-18 23:14:47 +00:00
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
func (s HelloWorldOriginConfig_List) Set(i int, v HelloWorldOriginConfig) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
2019-03-18 23:14:47 +00:00
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s HelloWorldOriginConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0x8891f360e47c30d3, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// HelloWorldOriginConfig_Promise is a wrapper for a HelloWorldOriginConfig promised by a client call.
|
|
|
|
type HelloWorldOriginConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p HelloWorldOriginConfig_Promise) Struct() (HelloWorldOriginConfig, error) {
|
2019-03-18 23:14:47 +00:00
|
|
|
s, err := p.Pipeline.Struct()
|
2019-03-29 23:05:11 +00:00
|
|
|
return HelloWorldOriginConfig{s}, err
|
2019-03-18 23:14:47 +00:00
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
type Tag struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// Tag_TypeID is the unique identifier for the type Tag.
|
|
|
|
const Tag_TypeID = 0xcbd96442ae3bb01a
|
|
|
|
|
|
|
|
func NewTag(s *capnp.Segment) (Tag, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
|
|
|
|
return Tag{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTag(s *capnp.Segment) (Tag, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
|
|
|
|
return Tag{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTag(msg *capnp.Message) (Tag, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return Tag{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) String() string {
|
|
|
|
str, _ := text.Marshal(0xcbd96442ae3bb01a, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) Name() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) HasName() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) NameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) SetName(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) Value() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) HasValue() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) ValueBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag) SetValue(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tag_List is a list of Tag.
|
|
|
|
type Tag_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTag creates a new list of Tag.
|
|
|
|
func NewTag_List(s *capnp.Segment, sz int32) (Tag_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2}, sz)
|
|
|
|
return Tag_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Tag_List) At(i int) Tag { return Tag{s.List.Struct(i)} }
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
func (s Tag_List) Set(i int, v Tag) error { return s.List.SetStruct(i, v.Struct) }
|
2018-10-08 19:20:28 +00:00
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s Tag_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xcbd96442ae3bb01a, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// Tag_Promise is a wrapper for a Tag promised by a client call.
|
|
|
|
type Tag_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p Tag_Promise) Struct() (Tag, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return Tag{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type ExistingTunnelPolicy uint16
|
|
|
|
|
|
|
|
// ExistingTunnelPolicy_TypeID is the unique identifier for the type ExistingTunnelPolicy.
|
|
|
|
const ExistingTunnelPolicy_TypeID = 0x84cb9536a2cf6d3c
|
|
|
|
|
|
|
|
// Values of ExistingTunnelPolicy.
|
|
|
|
const (
|
|
|
|
ExistingTunnelPolicy_ignore ExistingTunnelPolicy = 0
|
|
|
|
ExistingTunnelPolicy_disconnect ExistingTunnelPolicy = 1
|
|
|
|
ExistingTunnelPolicy_balance ExistingTunnelPolicy = 2
|
|
|
|
)
|
|
|
|
|
|
|
|
// String returns the enum's constant name.
|
|
|
|
func (c ExistingTunnelPolicy) String() string {
|
|
|
|
switch c {
|
|
|
|
case ExistingTunnelPolicy_ignore:
|
|
|
|
return "ignore"
|
|
|
|
case ExistingTunnelPolicy_disconnect:
|
|
|
|
return "disconnect"
|
|
|
|
case ExistingTunnelPolicy_balance:
|
|
|
|
return "balance"
|
|
|
|
|
|
|
|
default:
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistingTunnelPolicyFromString returns the enum value with a name,
|
|
|
|
// or the zero value if there's no such value.
|
|
|
|
func ExistingTunnelPolicyFromString(c string) ExistingTunnelPolicy {
|
|
|
|
switch c {
|
|
|
|
case "ignore":
|
|
|
|
return ExistingTunnelPolicy_ignore
|
|
|
|
case "disconnect":
|
|
|
|
return ExistingTunnelPolicy_disconnect
|
|
|
|
case "balance":
|
|
|
|
return ExistingTunnelPolicy_balance
|
|
|
|
|
|
|
|
default:
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ExistingTunnelPolicy_List struct{ capnp.List }
|
|
|
|
|
|
|
|
func NewExistingTunnelPolicy_List(s *capnp.Segment, sz int32) (ExistingTunnelPolicy_List, error) {
|
|
|
|
l, err := capnp.NewUInt16List(s, sz)
|
|
|
|
return ExistingTunnelPolicy_List{l.List}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l ExistingTunnelPolicy_List) At(i int) ExistingTunnelPolicy {
|
|
|
|
ul := capnp.UInt16List{List: l.List}
|
|
|
|
return ExistingTunnelPolicy(ul.At(i))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l ExistingTunnelPolicy_List) Set(i int, v ExistingTunnelPolicy) {
|
|
|
|
ul := capnp.UInt16List{List: l.List}
|
|
|
|
ul.Set(i, uint16(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
type ServerInfo struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// ServerInfo_TypeID is the unique identifier for the type ServerInfo.
|
|
|
|
const ServerInfo_TypeID = 0xf2c68e2547ec3866
|
|
|
|
|
|
|
|
func NewServerInfo(s *capnp.Segment) (ServerInfo, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return ServerInfo{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootServerInfo(s *capnp.Segment) (ServerInfo, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return ServerInfo{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootServerInfo(msg *capnp.Message) (ServerInfo, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return ServerInfo{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ServerInfo) String() string {
|
|
|
|
str, _ := text.Marshal(0xf2c68e2547ec3866, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ServerInfo) LocationName() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ServerInfo) HasLocationName() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ServerInfo) LocationNameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ServerInfo) SetLocationName(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServerInfo_List is a list of ServerInfo.
|
|
|
|
type ServerInfo_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewServerInfo creates a new list of ServerInfo.
|
|
|
|
func NewServerInfo_List(s *capnp.Segment, sz int32) (ServerInfo_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
|
|
|
return ServerInfo_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s ServerInfo_List) At(i int) ServerInfo { return ServerInfo{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s ServerInfo_List) Set(i int, v ServerInfo) error { return s.List.SetStruct(i, v.Struct) }
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ServerInfo_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xf2c68e2547ec3866, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// ServerInfo_Promise is a wrapper for a ServerInfo promised by a client call.
|
|
|
|
type ServerInfo_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p ServerInfo_Promise) Struct() (ServerInfo, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return ServerInfo{s}, err
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
type UseConfigurationResult struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// UseConfigurationResult_TypeID is the unique identifier for the type UseConfigurationResult.
|
|
|
|
const UseConfigurationResult_TypeID = 0xd58a254e7a792b87
|
|
|
|
|
|
|
|
func NewUseConfigurationResult(s *capnp.Segment) (UseConfigurationResult, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 1})
|
|
|
|
return UseConfigurationResult{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootUseConfigurationResult(s *capnp.Segment) (UseConfigurationResult, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 1})
|
|
|
|
return UseConfigurationResult{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootUseConfigurationResult(msg *capnp.Message) (UseConfigurationResult, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return UseConfigurationResult{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s UseConfigurationResult) String() string {
|
|
|
|
str, _ := text.Marshal(0xd58a254e7a792b87, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s UseConfigurationResult) Success() bool {
|
|
|
|
return s.Struct.Bit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s UseConfigurationResult) SetSuccess(v bool) {
|
|
|
|
s.Struct.SetBit(0, v)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s UseConfigurationResult) FailedConfigs() (FailedConfig_List, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
2019-06-12 15:07:24 +00:00
|
|
|
return FailedConfig_List{List: p.List()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s UseConfigurationResult) HasFailedConfigs() bool {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s UseConfigurationResult) SetFailedConfigs(v FailedConfig_List) error {
|
|
|
|
return s.Struct.SetPtr(0, v.List.ToPtr())
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
// NewFailedConfigs sets the failedConfigs field to a newly
|
|
|
|
// allocated FailedConfig_List, preferring placement in s's segment.
|
|
|
|
func (s UseConfigurationResult) NewFailedConfigs(n int32) (FailedConfig_List, error) {
|
|
|
|
l, err := NewFailedConfig_List(s.Struct.Segment(), n)
|
|
|
|
if err != nil {
|
|
|
|
return FailedConfig_List{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, l.List.ToPtr())
|
|
|
|
return l, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UseConfigurationResult_List is a list of UseConfigurationResult.
|
|
|
|
type UseConfigurationResult_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewUseConfigurationResult creates a new list of UseConfigurationResult.
|
|
|
|
func NewUseConfigurationResult_List(s *capnp.Segment, sz int32) (UseConfigurationResult_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 1}, sz)
|
|
|
|
return UseConfigurationResult_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s UseConfigurationResult_List) At(i int) UseConfigurationResult {
|
|
|
|
return UseConfigurationResult{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s UseConfigurationResult_List) Set(i int, v UseConfigurationResult) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s UseConfigurationResult_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xd58a254e7a792b87, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-29 23:05:11 +00:00
|
|
|
// UseConfigurationResult_Promise is a wrapper for a UseConfigurationResult promised by a client call.
|
|
|
|
type UseConfigurationResult_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p UseConfigurationResult_Promise) Struct() (UseConfigurationResult, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return UseConfigurationResult{s}, err
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
type FailedConfig struct{ capnp.Struct }
|
|
|
|
type FailedConfig_config FailedConfig
|
|
|
|
type FailedConfig_config_Which uint16
|
|
|
|
|
|
|
|
const (
|
|
|
|
FailedConfig_config_Which_supervisor FailedConfig_config_Which = 0
|
|
|
|
FailedConfig_config_Which_edgeConnection FailedConfig_config_Which = 1
|
|
|
|
FailedConfig_config_Which_doh FailedConfig_config_Which = 2
|
|
|
|
FailedConfig_config_Which_reverseProxy FailedConfig_config_Which = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
func (w FailedConfig_config_Which) String() string {
|
|
|
|
const s = "supervisoredgeConnectiondohreverseProxy"
|
|
|
|
switch w {
|
|
|
|
case FailedConfig_config_Which_supervisor:
|
|
|
|
return s[0:10]
|
|
|
|
case FailedConfig_config_Which_edgeConnection:
|
|
|
|
return s[10:24]
|
|
|
|
case FailedConfig_config_Which_doh:
|
|
|
|
return s[24:27]
|
|
|
|
case FailedConfig_config_Which_reverseProxy:
|
|
|
|
return s[27:39]
|
|
|
|
|
|
|
|
}
|
|
|
|
return "FailedConfig_config_Which(" + strconv.FormatUint(uint64(w), 10) + ")"
|
|
|
|
}
|
|
|
|
|
|
|
|
// FailedConfig_TypeID is the unique identifier for the type FailedConfig.
|
|
|
|
const FailedConfig_TypeID = 0xea20b390b257d1a5
|
|
|
|
|
|
|
|
func NewFailedConfig(s *capnp.Segment) (FailedConfig, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2})
|
|
|
|
return FailedConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootFailedConfig(s *capnp.Segment) (FailedConfig, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2})
|
|
|
|
return FailedConfig{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootFailedConfig(msg *capnp.Message) (FailedConfig, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return FailedConfig{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig) String() string {
|
|
|
|
str, _ := text.Marshal(0xea20b390b257d1a5, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig) Config() FailedConfig_config { return FailedConfig_config(s) }
|
|
|
|
|
|
|
|
func (s FailedConfig_config) Which() FailedConfig_config_Which {
|
|
|
|
return FailedConfig_config_Which(s.Struct.Uint16(0))
|
|
|
|
}
|
|
|
|
func (s FailedConfig_config) Supervisor() (SupervisorConfig, error) {
|
|
|
|
if s.Struct.Uint16(0) != 0 {
|
|
|
|
panic("Which() != supervisor")
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return SupervisorConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) HasSupervisor() bool {
|
|
|
|
if s.Struct.Uint16(0) != 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) SetSupervisor(v SupervisorConfig) error {
|
|
|
|
s.Struct.SetUint16(0, 0)
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSupervisor sets the supervisor field to a newly
|
|
|
|
// allocated SupervisorConfig struct, preferring placement in s's segment.
|
|
|
|
func (s FailedConfig_config) NewSupervisor() (SupervisorConfig, error) {
|
|
|
|
s.Struct.SetUint16(0, 0)
|
|
|
|
ss, err := NewSupervisorConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return SupervisorConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) EdgeConnection() (EdgeConnectionConfig, error) {
|
|
|
|
if s.Struct.Uint16(0) != 1 {
|
|
|
|
panic("Which() != edgeConnection")
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return EdgeConnectionConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) HasEdgeConnection() bool {
|
|
|
|
if s.Struct.Uint16(0) != 1 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) SetEdgeConnection(v EdgeConnectionConfig) error {
|
|
|
|
s.Struct.SetUint16(0, 1)
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewEdgeConnection sets the edgeConnection field to a newly
|
|
|
|
// allocated EdgeConnectionConfig struct, preferring placement in s's segment.
|
|
|
|
func (s FailedConfig_config) NewEdgeConnection() (EdgeConnectionConfig, error) {
|
|
|
|
s.Struct.SetUint16(0, 1)
|
|
|
|
ss, err := NewEdgeConnectionConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return EdgeConnectionConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) Doh() (DoHProxyConfig, error) {
|
|
|
|
if s.Struct.Uint16(0) != 2 {
|
|
|
|
panic("Which() != doh")
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return DoHProxyConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) HasDoh() bool {
|
|
|
|
if s.Struct.Uint16(0) != 2 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) SetDoh(v DoHProxyConfig) error {
|
|
|
|
s.Struct.SetUint16(0, 2)
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDoh sets the doh field to a newly
|
|
|
|
// allocated DoHProxyConfig struct, preferring placement in s's segment.
|
|
|
|
func (s FailedConfig_config) NewDoh() (DoHProxyConfig, error) {
|
|
|
|
s.Struct.SetUint16(0, 2)
|
|
|
|
ss, err := NewDoHProxyConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return DoHProxyConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) ReverseProxy() (ReverseProxyConfig, error) {
|
|
|
|
if s.Struct.Uint16(0) != 3 {
|
|
|
|
panic("Which() != reverseProxy")
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return ReverseProxyConfig{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) HasReverseProxy() bool {
|
|
|
|
if s.Struct.Uint16(0) != 3 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_config) SetReverseProxy(v ReverseProxyConfig) error {
|
|
|
|
s.Struct.SetUint16(0, 3)
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewReverseProxy sets the reverseProxy field to a newly
|
|
|
|
// allocated ReverseProxyConfig struct, preferring placement in s's segment.
|
|
|
|
func (s FailedConfig_config) NewReverseProxy() (ReverseProxyConfig, error) {
|
|
|
|
s.Struct.SetUint16(0, 3)
|
|
|
|
ss, err := NewReverseProxyConfig(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return ReverseProxyConfig{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig) Reason() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig) HasReason() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig) ReasonBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig) SetReason(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FailedConfig_List is a list of FailedConfig.
|
|
|
|
type FailedConfig_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewFailedConfig creates a new list of FailedConfig.
|
|
|
|
func NewFailedConfig_List(s *capnp.Segment, sz int32) (FailedConfig_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2}, sz)
|
|
|
|
return FailedConfig_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s FailedConfig_List) At(i int) FailedConfig { return FailedConfig{s.List.Struct(i)} }
|
|
|
|
|
|
|
|
func (s FailedConfig_List) Set(i int, v FailedConfig) error { return s.List.SetStruct(i, v.Struct) }
|
|
|
|
|
|
|
|
func (s FailedConfig_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xea20b390b257d1a5, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// FailedConfig_Promise is a wrapper for a FailedConfig promised by a client call.
|
|
|
|
type FailedConfig_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p FailedConfig_Promise) Struct() (FailedConfig, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return FailedConfig{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p FailedConfig_Promise) Config() FailedConfig_config_Promise {
|
|
|
|
return FailedConfig_config_Promise{p.Pipeline}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FailedConfig_config_Promise is a wrapper for a FailedConfig_config promised by a client call.
|
|
|
|
type FailedConfig_config_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p FailedConfig_config_Promise) Struct() (FailedConfig_config, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return FailedConfig_config{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p FailedConfig_config_Promise) Supervisor() SupervisorConfig_Promise {
|
|
|
|
return SupervisorConfig_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p FailedConfig_config_Promise) EdgeConnection() EdgeConnectionConfig_Promise {
|
|
|
|
return EdgeConnectionConfig_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p FailedConfig_config_Promise) Doh() DoHProxyConfig_Promise {
|
|
|
|
return DoHProxyConfig_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p FailedConfig_config_Promise) ReverseProxy() ReverseProxyConfig_Promise {
|
|
|
|
return ReverseProxyConfig_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
2019-11-18 16:28:18 +00:00
|
|
|
type AuthenticateResponse struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// AuthenticateResponse_TypeID is the unique identifier for the type AuthenticateResponse.
|
|
|
|
const AuthenticateResponse_TypeID = 0x82c325a07ad22a65
|
|
|
|
|
|
|
|
func NewAuthenticateResponse(s *capnp.Segment) (AuthenticateResponse, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3})
|
|
|
|
return AuthenticateResponse{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootAuthenticateResponse(s *capnp.Segment) (AuthenticateResponse, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3})
|
|
|
|
return AuthenticateResponse{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootAuthenticateResponse(msg *capnp.Message) (AuthenticateResponse, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return AuthenticateResponse{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) String() string {
|
|
|
|
str, _ := text.Marshal(0x82c325a07ad22a65, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) PermanentErr() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) HasPermanentErr() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) PermanentErrBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) SetPermanentErr(v string) error {
|
|
|
|
return s.Struct.SetText(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) RetryableErr() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) HasRetryableErr() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) RetryableErrBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) SetRetryableErr(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) Jwt() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return []byte(p.Data()), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) HasJwt() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) SetJwt(v []byte) error {
|
|
|
|
return s.Struct.SetData(2, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) HoursUntilRefresh() uint8 {
|
|
|
|
return s.Struct.Uint8(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse) SetHoursUntilRefresh(v uint8) {
|
|
|
|
s.Struct.SetUint8(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuthenticateResponse_List is a list of AuthenticateResponse.
|
|
|
|
type AuthenticateResponse_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewAuthenticateResponse creates a new list of AuthenticateResponse.
|
|
|
|
func NewAuthenticateResponse_List(s *capnp.Segment, sz int32) (AuthenticateResponse_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3}, sz)
|
|
|
|
return AuthenticateResponse_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse_List) At(i int) AuthenticateResponse {
|
|
|
|
return AuthenticateResponse{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse_List) Set(i int, v AuthenticateResponse) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s AuthenticateResponse_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0x82c325a07ad22a65, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuthenticateResponse_Promise is a wrapper for a AuthenticateResponse promised by a client call.
|
|
|
|
type AuthenticateResponse_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p AuthenticateResponse_Promise) Struct() (AuthenticateResponse, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return AuthenticateResponse{s}, err
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
type TunnelServer struct{ Client capnp.Client }
|
|
|
|
|
|
|
|
// TunnelServer_TypeID is the unique identifier for the type TunnelServer.
|
|
|
|
const TunnelServer_TypeID = 0xea58385c65416035
|
|
|
|
|
|
|
|
func (c TunnelServer) RegisterTunnel(ctx context.Context, params func(TunnelServer_registerTunnel_Params) error, opts ...capnp.CallOption) TunnelServer_registerTunnel_Results_Promise {
|
|
|
|
if c.Client == nil {
|
|
|
|
return TunnelServer_registerTunnel_Results_Promise{Pipeline: capnp.NewPipeline(capnp.ErrorAnswer(capnp.ErrNullClient))}
|
|
|
|
}
|
|
|
|
call := &capnp.Call{
|
|
|
|
Ctx: ctx,
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 0,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2018-05-01 23:45:06 +00:00
|
|
|
MethodName: "registerTunnel",
|
|
|
|
},
|
|
|
|
Options: capnp.NewCallOptions(opts),
|
|
|
|
}
|
|
|
|
if params != nil {
|
|
|
|
call.ParamsSize = capnp.ObjectSize{DataSize: 0, PointerCount: 3}
|
|
|
|
call.ParamsFunc = func(s capnp.Struct) error { return params(TunnelServer_registerTunnel_Params{Struct: s}) }
|
|
|
|
}
|
|
|
|
return TunnelServer_registerTunnel_Results_Promise{Pipeline: capnp.NewPipeline(c.Client.Call(call))}
|
|
|
|
}
|
|
|
|
func (c TunnelServer) GetServerInfo(ctx context.Context, params func(TunnelServer_getServerInfo_Params) error, opts ...capnp.CallOption) TunnelServer_getServerInfo_Results_Promise {
|
|
|
|
if c.Client == nil {
|
|
|
|
return TunnelServer_getServerInfo_Results_Promise{Pipeline: capnp.NewPipeline(capnp.ErrorAnswer(capnp.ErrNullClient))}
|
|
|
|
}
|
|
|
|
call := &capnp.Call{
|
|
|
|
Ctx: ctx,
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 1,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2018-05-01 23:45:06 +00:00
|
|
|
MethodName: "getServerInfo",
|
|
|
|
},
|
|
|
|
Options: capnp.NewCallOptions(opts),
|
|
|
|
}
|
|
|
|
if params != nil {
|
|
|
|
call.ParamsSize = capnp.ObjectSize{DataSize: 0, PointerCount: 0}
|
|
|
|
call.ParamsFunc = func(s capnp.Struct) error { return params(TunnelServer_getServerInfo_Params{Struct: s}) }
|
|
|
|
}
|
|
|
|
return TunnelServer_getServerInfo_Results_Promise{Pipeline: capnp.NewPipeline(c.Client.Call(call))}
|
|
|
|
}
|
|
|
|
func (c TunnelServer) UnregisterTunnel(ctx context.Context, params func(TunnelServer_unregisterTunnel_Params) error, opts ...capnp.CallOption) TunnelServer_unregisterTunnel_Results_Promise {
|
|
|
|
if c.Client == nil {
|
|
|
|
return TunnelServer_unregisterTunnel_Results_Promise{Pipeline: capnp.NewPipeline(capnp.ErrorAnswer(capnp.ErrNullClient))}
|
|
|
|
}
|
|
|
|
call := &capnp.Call{
|
|
|
|
Ctx: ctx,
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 2,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2018-05-01 23:45:06 +00:00
|
|
|
MethodName: "unregisterTunnel",
|
|
|
|
},
|
|
|
|
Options: capnp.NewCallOptions(opts),
|
|
|
|
}
|
|
|
|
if params != nil {
|
|
|
|
call.ParamsSize = capnp.ObjectSize{DataSize: 8, PointerCount: 0}
|
|
|
|
call.ParamsFunc = func(s capnp.Struct) error { return params(TunnelServer_unregisterTunnel_Params{Struct: s}) }
|
|
|
|
}
|
|
|
|
return TunnelServer_unregisterTunnel_Results_Promise{Pipeline: capnp.NewPipeline(c.Client.Call(call))}
|
|
|
|
}
|
2019-03-18 23:14:47 +00:00
|
|
|
func (c TunnelServer) Connect(ctx context.Context, params func(TunnelServer_connect_Params) error, opts ...capnp.CallOption) TunnelServer_connect_Results_Promise {
|
|
|
|
if c.Client == nil {
|
|
|
|
return TunnelServer_connect_Results_Promise{Pipeline: capnp.NewPipeline(capnp.ErrorAnswer(capnp.ErrNullClient))}
|
|
|
|
}
|
|
|
|
call := &capnp.Call{
|
|
|
|
Ctx: ctx,
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
2019-04-01 18:50:30 +00:00
|
|
|
MethodID: 3,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2019-03-18 23:14:47 +00:00
|
|
|
MethodName: "connect",
|
|
|
|
},
|
|
|
|
Options: capnp.NewCallOptions(opts),
|
|
|
|
}
|
|
|
|
if params != nil {
|
|
|
|
call.ParamsSize = capnp.ObjectSize{DataSize: 0, PointerCount: 1}
|
|
|
|
call.ParamsFunc = func(s capnp.Struct) error { return params(TunnelServer_connect_Params{Struct: s}) }
|
|
|
|
}
|
|
|
|
return TunnelServer_connect_Results_Promise{Pipeline: capnp.NewPipeline(c.Client.Call(call))}
|
|
|
|
}
|
2019-11-18 16:28:18 +00:00
|
|
|
func (c TunnelServer) Authenticate(ctx context.Context, params func(TunnelServer_authenticate_Params) error, opts ...capnp.CallOption) TunnelServer_authenticate_Results_Promise {
|
|
|
|
if c.Client == nil {
|
|
|
|
return TunnelServer_authenticate_Results_Promise{Pipeline: capnp.NewPipeline(capnp.ErrorAnswer(capnp.ErrNullClient))}
|
|
|
|
}
|
|
|
|
call := &capnp.Call{
|
|
|
|
Ctx: ctx,
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 4,
|
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
|
|
|
MethodName: "authenticate",
|
|
|
|
},
|
|
|
|
Options: capnp.NewCallOptions(opts),
|
|
|
|
}
|
|
|
|
if params != nil {
|
|
|
|
call.ParamsSize = capnp.ObjectSize{DataSize: 0, PointerCount: 3}
|
|
|
|
call.ParamsFunc = func(s capnp.Struct) error { return params(TunnelServer_authenticate_Params{Struct: s}) }
|
|
|
|
}
|
|
|
|
return TunnelServer_authenticate_Results_Promise{Pipeline: capnp.NewPipeline(c.Client.Call(call))}
|
|
|
|
}
|
2018-05-01 23:45:06 +00:00
|
|
|
|
|
|
|
type TunnelServer_Server interface {
|
|
|
|
RegisterTunnel(TunnelServer_registerTunnel) error
|
|
|
|
|
|
|
|
GetServerInfo(TunnelServer_getServerInfo) error
|
|
|
|
|
|
|
|
UnregisterTunnel(TunnelServer_unregisterTunnel) error
|
2019-03-18 23:14:47 +00:00
|
|
|
|
|
|
|
Connect(TunnelServer_connect) error
|
2019-11-18 16:28:18 +00:00
|
|
|
|
|
|
|
Authenticate(TunnelServer_authenticate) error
|
2018-05-01 23:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TunnelServer_ServerToClient(s TunnelServer_Server) TunnelServer {
|
|
|
|
c, _ := s.(server.Closer)
|
|
|
|
return TunnelServer{Client: server.New(TunnelServer_Methods(nil, s), c)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TunnelServer_Methods(methods []server.Method, s TunnelServer_Server) []server.Method {
|
|
|
|
if cap(methods) == 0 {
|
2019-11-18 16:28:18 +00:00
|
|
|
methods = make([]server.Method, 0, 5)
|
2018-05-01 23:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
methods = append(methods, server.Method{
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 0,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2018-05-01 23:45:06 +00:00
|
|
|
MethodName: "registerTunnel",
|
|
|
|
},
|
|
|
|
Impl: func(c context.Context, opts capnp.CallOptions, p, r capnp.Struct) error {
|
|
|
|
call := TunnelServer_registerTunnel{c, opts, TunnelServer_registerTunnel_Params{Struct: p}, TunnelServer_registerTunnel_Results{Struct: r}}
|
|
|
|
return s.RegisterTunnel(call)
|
|
|
|
},
|
|
|
|
ResultsSize: capnp.ObjectSize{DataSize: 0, PointerCount: 1},
|
|
|
|
})
|
|
|
|
|
|
|
|
methods = append(methods, server.Method{
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 1,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2018-05-01 23:45:06 +00:00
|
|
|
MethodName: "getServerInfo",
|
|
|
|
},
|
|
|
|
Impl: func(c context.Context, opts capnp.CallOptions, p, r capnp.Struct) error {
|
|
|
|
call := TunnelServer_getServerInfo{c, opts, TunnelServer_getServerInfo_Params{Struct: p}, TunnelServer_getServerInfo_Results{Struct: r}}
|
|
|
|
return s.GetServerInfo(call)
|
|
|
|
},
|
|
|
|
ResultsSize: capnp.ObjectSize{DataSize: 0, PointerCount: 1},
|
|
|
|
})
|
|
|
|
|
|
|
|
methods = append(methods, server.Method{
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 2,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2018-05-01 23:45:06 +00:00
|
|
|
MethodName: "unregisterTunnel",
|
|
|
|
},
|
|
|
|
Impl: func(c context.Context, opts capnp.CallOptions, p, r capnp.Struct) error {
|
|
|
|
call := TunnelServer_unregisterTunnel{c, opts, TunnelServer_unregisterTunnel_Params{Struct: p}, TunnelServer_unregisterTunnel_Results{Struct: r}}
|
|
|
|
return s.UnregisterTunnel(call)
|
|
|
|
},
|
|
|
|
ResultsSize: capnp.ObjectSize{DataSize: 0, PointerCount: 0},
|
|
|
|
})
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
methods = append(methods, server.Method{
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 3,
|
2019-05-03 21:43:45 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
2019-03-18 23:14:47 +00:00
|
|
|
MethodName: "connect",
|
|
|
|
},
|
|
|
|
Impl: func(c context.Context, opts capnp.CallOptions, p, r capnp.Struct) error {
|
|
|
|
call := TunnelServer_connect{c, opts, TunnelServer_connect_Params{Struct: p}, TunnelServer_connect_Results{Struct: r}}
|
|
|
|
return s.Connect(call)
|
|
|
|
},
|
|
|
|
ResultsSize: capnp.ObjectSize{DataSize: 0, PointerCount: 1},
|
|
|
|
})
|
|
|
|
|
2019-11-18 16:28:18 +00:00
|
|
|
methods = append(methods, server.Method{
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 4,
|
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
|
|
|
MethodName: "authenticate",
|
|
|
|
},
|
|
|
|
Impl: func(c context.Context, opts capnp.CallOptions, p, r capnp.Struct) error {
|
|
|
|
call := TunnelServer_authenticate{c, opts, TunnelServer_authenticate_Params{Struct: p}, TunnelServer_authenticate_Results{Struct: r}}
|
|
|
|
return s.Authenticate(call)
|
|
|
|
},
|
|
|
|
ResultsSize: capnp.ObjectSize{DataSize: 0, PointerCount: 1},
|
|
|
|
})
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
return methods
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_registerTunnel holds the arguments for a server call to TunnelServer.registerTunnel.
|
|
|
|
type TunnelServer_registerTunnel struct {
|
|
|
|
Ctx context.Context
|
|
|
|
Options capnp.CallOptions
|
|
|
|
Params TunnelServer_registerTunnel_Params
|
|
|
|
Results TunnelServer_registerTunnel_Results
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_getServerInfo holds the arguments for a server call to TunnelServer.getServerInfo.
|
|
|
|
type TunnelServer_getServerInfo struct {
|
|
|
|
Ctx context.Context
|
|
|
|
Options capnp.CallOptions
|
|
|
|
Params TunnelServer_getServerInfo_Params
|
|
|
|
Results TunnelServer_getServerInfo_Results
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_unregisterTunnel holds the arguments for a server call to TunnelServer.unregisterTunnel.
|
|
|
|
type TunnelServer_unregisterTunnel struct {
|
|
|
|
Ctx context.Context
|
|
|
|
Options capnp.CallOptions
|
|
|
|
Params TunnelServer_unregisterTunnel_Params
|
|
|
|
Results TunnelServer_unregisterTunnel_Results
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
// TunnelServer_connect holds the arguments for a server call to TunnelServer.connect.
|
|
|
|
type TunnelServer_connect struct {
|
|
|
|
Ctx context.Context
|
|
|
|
Options capnp.CallOptions
|
|
|
|
Params TunnelServer_connect_Params
|
|
|
|
Results TunnelServer_connect_Results
|
|
|
|
}
|
|
|
|
|
2019-11-18 16:28:18 +00:00
|
|
|
// TunnelServer_authenticate holds the arguments for a server call to TunnelServer.authenticate.
|
|
|
|
type TunnelServer_authenticate struct {
|
|
|
|
Ctx context.Context
|
|
|
|
Options capnp.CallOptions
|
|
|
|
Params TunnelServer_authenticate_Params
|
|
|
|
Results TunnelServer_authenticate_Results
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
type TunnelServer_registerTunnel_Params struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_registerTunnel_Params_TypeID is the unique identifier for the type TunnelServer_registerTunnel_Params.
|
|
|
|
const TunnelServer_registerTunnel_Params_TypeID = 0xb70431c0dc014915
|
|
|
|
|
|
|
|
func NewTunnelServer_registerTunnel_Params(s *capnp.Segment) (TunnelServer_registerTunnel_Params, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return TunnelServer_registerTunnel_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_registerTunnel_Params(s *capnp.Segment) (TunnelServer_registerTunnel_Params, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return TunnelServer_registerTunnel_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_registerTunnel_Params(msg *capnp.Message) (TunnelServer_registerTunnel_Params, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_registerTunnel_Params{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) String() string {
|
|
|
|
str, _ := text.Marshal(0xb70431c0dc014915, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) OriginCert() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return []byte(p.Data()), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) HasOriginCert() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) SetOriginCert(v []byte) error {
|
|
|
|
return s.Struct.SetData(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) Hostname() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) HasHostname() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) HostnameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) SetHostname(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) Options() (RegistrationOptions, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return RegistrationOptions{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) HasOptions() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params) SetOptions(v RegistrationOptions) error {
|
|
|
|
return s.Struct.SetPtr(2, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewOptions sets the options field to a newly
|
|
|
|
// allocated RegistrationOptions struct, preferring placement in s's segment.
|
|
|
|
func (s TunnelServer_registerTunnel_Params) NewOptions() (RegistrationOptions, error) {
|
|
|
|
ss, err := NewRegistrationOptions(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return RegistrationOptions{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(2, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_registerTunnel_Params_List is a list of TunnelServer_registerTunnel_Params.
|
|
|
|
type TunnelServer_registerTunnel_Params_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_registerTunnel_Params creates a new list of TunnelServer_registerTunnel_Params.
|
|
|
|
func NewTunnelServer_registerTunnel_Params_List(s *capnp.Segment, sz int32) (TunnelServer_registerTunnel_Params_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3}, sz)
|
|
|
|
return TunnelServer_registerTunnel_Params_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params_List) At(i int) TunnelServer_registerTunnel_Params {
|
|
|
|
return TunnelServer_registerTunnel_Params{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Params_List) Set(i int, v TunnelServer_registerTunnel_Params) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_registerTunnel_Params_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xb70431c0dc014915, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// TunnelServer_registerTunnel_Params_Promise is a wrapper for a TunnelServer_registerTunnel_Params promised by a client call.
|
|
|
|
type TunnelServer_registerTunnel_Params_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_registerTunnel_Params_Promise) Struct() (TunnelServer_registerTunnel_Params, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_registerTunnel_Params{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_registerTunnel_Params_Promise) Options() RegistrationOptions_Promise {
|
|
|
|
return RegistrationOptions_Promise{Pipeline: p.Pipeline.GetPipeline(2)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_registerTunnel_Results struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_registerTunnel_Results_TypeID is the unique identifier for the type TunnelServer_registerTunnel_Results.
|
|
|
|
const TunnelServer_registerTunnel_Results_TypeID = 0xf2c122394f447e8e
|
|
|
|
|
|
|
|
func NewTunnelServer_registerTunnel_Results(s *capnp.Segment) (TunnelServer_registerTunnel_Results, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_registerTunnel_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_registerTunnel_Results(s *capnp.Segment) (TunnelServer_registerTunnel_Results, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_registerTunnel_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_registerTunnel_Results(msg *capnp.Message) (TunnelServer_registerTunnel_Results, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_registerTunnel_Results{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Results) String() string {
|
|
|
|
str, _ := text.Marshal(0xf2c122394f447e8e, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Results) Result() (TunnelRegistration, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return TunnelRegistration{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Results) HasResult() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Results) SetResult(v TunnelRegistration) error {
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewResult sets the result field to a newly
|
|
|
|
// allocated TunnelRegistration struct, preferring placement in s's segment.
|
|
|
|
func (s TunnelServer_registerTunnel_Results) NewResult() (TunnelRegistration, error) {
|
|
|
|
ss, err := NewTunnelRegistration(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return TunnelRegistration{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_registerTunnel_Results_List is a list of TunnelServer_registerTunnel_Results.
|
|
|
|
type TunnelServer_registerTunnel_Results_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_registerTunnel_Results creates a new list of TunnelServer_registerTunnel_Results.
|
|
|
|
func NewTunnelServer_registerTunnel_Results_List(s *capnp.Segment, sz int32) (TunnelServer_registerTunnel_Results_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
|
|
|
return TunnelServer_registerTunnel_Results_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Results_List) At(i int) TunnelServer_registerTunnel_Results {
|
|
|
|
return TunnelServer_registerTunnel_Results{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_registerTunnel_Results_List) Set(i int, v TunnelServer_registerTunnel_Results) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_registerTunnel_Results_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xf2c122394f447e8e, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// TunnelServer_registerTunnel_Results_Promise is a wrapper for a TunnelServer_registerTunnel_Results promised by a client call.
|
|
|
|
type TunnelServer_registerTunnel_Results_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_registerTunnel_Results_Promise) Struct() (TunnelServer_registerTunnel_Results, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_registerTunnel_Results{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_registerTunnel_Results_Promise) Result() TunnelRegistration_Promise {
|
|
|
|
return TunnelRegistration_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_getServerInfo_Params struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_getServerInfo_Params_TypeID is the unique identifier for the type TunnelServer_getServerInfo_Params.
|
|
|
|
const TunnelServer_getServerInfo_Params_TypeID = 0xdc3ed6801961e502
|
|
|
|
|
|
|
|
func NewTunnelServer_getServerInfo_Params(s *capnp.Segment) (TunnelServer_getServerInfo_Params, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0})
|
|
|
|
return TunnelServer_getServerInfo_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_getServerInfo_Params(s *capnp.Segment) (TunnelServer_getServerInfo_Params, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0})
|
|
|
|
return TunnelServer_getServerInfo_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_getServerInfo_Params(msg *capnp.Message) (TunnelServer_getServerInfo_Params, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_getServerInfo_Params{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Params) String() string {
|
|
|
|
str, _ := text.Marshal(0xdc3ed6801961e502, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_getServerInfo_Params_List is a list of TunnelServer_getServerInfo_Params.
|
|
|
|
type TunnelServer_getServerInfo_Params_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_getServerInfo_Params creates a new list of TunnelServer_getServerInfo_Params.
|
|
|
|
func NewTunnelServer_getServerInfo_Params_List(s *capnp.Segment, sz int32) (TunnelServer_getServerInfo_Params_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0}, sz)
|
|
|
|
return TunnelServer_getServerInfo_Params_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Params_List) At(i int) TunnelServer_getServerInfo_Params {
|
|
|
|
return TunnelServer_getServerInfo_Params{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Params_List) Set(i int, v TunnelServer_getServerInfo_Params) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_getServerInfo_Params_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xdc3ed6801961e502, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// TunnelServer_getServerInfo_Params_Promise is a wrapper for a TunnelServer_getServerInfo_Params promised by a client call.
|
|
|
|
type TunnelServer_getServerInfo_Params_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_getServerInfo_Params_Promise) Struct() (TunnelServer_getServerInfo_Params, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_getServerInfo_Params{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_getServerInfo_Results struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_getServerInfo_Results_TypeID is the unique identifier for the type TunnelServer_getServerInfo_Results.
|
|
|
|
const TunnelServer_getServerInfo_Results_TypeID = 0xe3e37d096a5b564e
|
|
|
|
|
|
|
|
func NewTunnelServer_getServerInfo_Results(s *capnp.Segment) (TunnelServer_getServerInfo_Results, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_getServerInfo_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_getServerInfo_Results(s *capnp.Segment) (TunnelServer_getServerInfo_Results, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_getServerInfo_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_getServerInfo_Results(msg *capnp.Message) (TunnelServer_getServerInfo_Results, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_getServerInfo_Results{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Results) String() string {
|
|
|
|
str, _ := text.Marshal(0xe3e37d096a5b564e, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Results) Result() (ServerInfo, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return ServerInfo{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Results) HasResult() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Results) SetResult(v ServerInfo) error {
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewResult sets the result field to a newly
|
|
|
|
// allocated ServerInfo struct, preferring placement in s's segment.
|
|
|
|
func (s TunnelServer_getServerInfo_Results) NewResult() (ServerInfo, error) {
|
|
|
|
ss, err := NewServerInfo(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return ServerInfo{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_getServerInfo_Results_List is a list of TunnelServer_getServerInfo_Results.
|
|
|
|
type TunnelServer_getServerInfo_Results_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_getServerInfo_Results creates a new list of TunnelServer_getServerInfo_Results.
|
|
|
|
func NewTunnelServer_getServerInfo_Results_List(s *capnp.Segment, sz int32) (TunnelServer_getServerInfo_Results_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
|
|
|
return TunnelServer_getServerInfo_Results_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Results_List) At(i int) TunnelServer_getServerInfo_Results {
|
|
|
|
return TunnelServer_getServerInfo_Results{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_getServerInfo_Results_List) Set(i int, v TunnelServer_getServerInfo_Results) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_getServerInfo_Results_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xe3e37d096a5b564e, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// TunnelServer_getServerInfo_Results_Promise is a wrapper for a TunnelServer_getServerInfo_Results promised by a client call.
|
|
|
|
type TunnelServer_getServerInfo_Results_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_getServerInfo_Results_Promise) Struct() (TunnelServer_getServerInfo_Results, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_getServerInfo_Results{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_getServerInfo_Results_Promise) Result() ServerInfo_Promise {
|
|
|
|
return ServerInfo_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_unregisterTunnel_Params struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_unregisterTunnel_Params_TypeID is the unique identifier for the type TunnelServer_unregisterTunnel_Params.
|
|
|
|
const TunnelServer_unregisterTunnel_Params_TypeID = 0x9b87b390babc2ccf
|
|
|
|
|
|
|
|
func NewTunnelServer_unregisterTunnel_Params(s *capnp.Segment) (TunnelServer_unregisterTunnel_Params, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 0})
|
|
|
|
return TunnelServer_unregisterTunnel_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_unregisterTunnel_Params(s *capnp.Segment) (TunnelServer_unregisterTunnel_Params, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 0})
|
|
|
|
return TunnelServer_unregisterTunnel_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_unregisterTunnel_Params(msg *capnp.Message) (TunnelServer_unregisterTunnel_Params, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_unregisterTunnel_Params{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Params) String() string {
|
|
|
|
str, _ := text.Marshal(0x9b87b390babc2ccf, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Params) GracePeriodNanoSec() int64 {
|
|
|
|
return int64(s.Struct.Uint64(0))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Params) SetGracePeriodNanoSec(v int64) {
|
|
|
|
s.Struct.SetUint64(0, uint64(v))
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_unregisterTunnel_Params_List is a list of TunnelServer_unregisterTunnel_Params.
|
|
|
|
type TunnelServer_unregisterTunnel_Params_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_unregisterTunnel_Params creates a new list of TunnelServer_unregisterTunnel_Params.
|
|
|
|
func NewTunnelServer_unregisterTunnel_Params_List(s *capnp.Segment, sz int32) (TunnelServer_unregisterTunnel_Params_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 0}, sz)
|
|
|
|
return TunnelServer_unregisterTunnel_Params_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Params_List) At(i int) TunnelServer_unregisterTunnel_Params {
|
|
|
|
return TunnelServer_unregisterTunnel_Params{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Params_List) Set(i int, v TunnelServer_unregisterTunnel_Params) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_unregisterTunnel_Params_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0x9b87b390babc2ccf, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// TunnelServer_unregisterTunnel_Params_Promise is a wrapper for a TunnelServer_unregisterTunnel_Params promised by a client call.
|
|
|
|
type TunnelServer_unregisterTunnel_Params_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_unregisterTunnel_Params_Promise) Struct() (TunnelServer_unregisterTunnel_Params, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_unregisterTunnel_Params{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_unregisterTunnel_Results struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_unregisterTunnel_Results_TypeID is the unique identifier for the type TunnelServer_unregisterTunnel_Results.
|
|
|
|
const TunnelServer_unregisterTunnel_Results_TypeID = 0xa29a916d4ebdd894
|
|
|
|
|
|
|
|
func NewTunnelServer_unregisterTunnel_Results(s *capnp.Segment) (TunnelServer_unregisterTunnel_Results, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0})
|
|
|
|
return TunnelServer_unregisterTunnel_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_unregisterTunnel_Results(s *capnp.Segment) (TunnelServer_unregisterTunnel_Results, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0})
|
|
|
|
return TunnelServer_unregisterTunnel_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_unregisterTunnel_Results(msg *capnp.Message) (TunnelServer_unregisterTunnel_Results, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_unregisterTunnel_Results{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Results) String() string {
|
|
|
|
str, _ := text.Marshal(0xa29a916d4ebdd894, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_unregisterTunnel_Results_List is a list of TunnelServer_unregisterTunnel_Results.
|
|
|
|
type TunnelServer_unregisterTunnel_Results_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_unregisterTunnel_Results creates a new list of TunnelServer_unregisterTunnel_Results.
|
|
|
|
func NewTunnelServer_unregisterTunnel_Results_List(s *capnp.Segment, sz int32) (TunnelServer_unregisterTunnel_Results_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 0}, sz)
|
|
|
|
return TunnelServer_unregisterTunnel_Results_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Results_List) At(i int) TunnelServer_unregisterTunnel_Results {
|
|
|
|
return TunnelServer_unregisterTunnel_Results{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_unregisterTunnel_Results_List) Set(i int, v TunnelServer_unregisterTunnel_Results) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_unregisterTunnel_Results_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xa29a916d4ebdd894, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// TunnelServer_unregisterTunnel_Results_Promise is a wrapper for a TunnelServer_unregisterTunnel_Results promised by a client call.
|
|
|
|
type TunnelServer_unregisterTunnel_Results_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_unregisterTunnel_Results_Promise) Struct() (TunnelServer_unregisterTunnel_Results, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_unregisterTunnel_Results{s}, err
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
type TunnelServer_connect_Params struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_connect_Params_TypeID is the unique identifier for the type TunnelServer_connect_Params.
|
2019-04-01 18:50:30 +00:00
|
|
|
const TunnelServer_connect_Params_TypeID = 0xa766b24d4fe5da35
|
2019-03-18 23:14:47 +00:00
|
|
|
|
|
|
|
func NewTunnelServer_connect_Params(s *capnp.Segment) (TunnelServer_connect_Params, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_connect_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_connect_Params(s *capnp.Segment) (TunnelServer_connect_Params, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_connect_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_connect_Params(msg *capnp.Message) (TunnelServer_connect_Params, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_connect_Params{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Params) String() string {
|
2019-04-01 18:50:30 +00:00
|
|
|
str, _ := text.Marshal(0xa766b24d4fe5da35, s.Struct)
|
2019-03-18 23:14:47 +00:00
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Params) Parameters() (CapnpConnectParameters, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return CapnpConnectParameters{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Params) HasParameters() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Params) SetParameters(v CapnpConnectParameters) error {
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewParameters sets the parameters field to a newly
|
|
|
|
// allocated CapnpConnectParameters struct, preferring placement in s's segment.
|
|
|
|
func (s TunnelServer_connect_Params) NewParameters() (CapnpConnectParameters, error) {
|
|
|
|
ss, err := NewCapnpConnectParameters(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return CapnpConnectParameters{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_connect_Params_List is a list of TunnelServer_connect_Params.
|
|
|
|
type TunnelServer_connect_Params_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_connect_Params creates a new list of TunnelServer_connect_Params.
|
|
|
|
func NewTunnelServer_connect_Params_List(s *capnp.Segment, sz int32) (TunnelServer_connect_Params_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
|
|
|
return TunnelServer_connect_Params_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Params_List) At(i int) TunnelServer_connect_Params {
|
|
|
|
return TunnelServer_connect_Params{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Params_List) Set(i int, v TunnelServer_connect_Params) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_connect_Params_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xa766b24d4fe5da35, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
// TunnelServer_connect_Params_Promise is a wrapper for a TunnelServer_connect_Params promised by a client call.
|
|
|
|
type TunnelServer_connect_Params_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_connect_Params_Promise) Struct() (TunnelServer_connect_Params, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_connect_Params{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_connect_Params_Promise) Parameters() CapnpConnectParameters_Promise {
|
|
|
|
return CapnpConnectParameters_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_connect_Results struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_connect_Results_TypeID is the unique identifier for the type TunnelServer_connect_Results.
|
2019-04-01 18:50:30 +00:00
|
|
|
const TunnelServer_connect_Results_TypeID = 0xfeac5c8f4899ef7c
|
2019-03-18 23:14:47 +00:00
|
|
|
|
|
|
|
func NewTunnelServer_connect_Results(s *capnp.Segment) (TunnelServer_connect_Results, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_connect_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_connect_Results(s *capnp.Segment) (TunnelServer_connect_Results, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_connect_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_connect_Results(msg *capnp.Message) (TunnelServer_connect_Results, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_connect_Results{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Results) String() string {
|
2019-04-01 18:50:30 +00:00
|
|
|
str, _ := text.Marshal(0xfeac5c8f4899ef7c, s.Struct)
|
2019-03-18 23:14:47 +00:00
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Results) Result() (ConnectResult, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return ConnectResult{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Results) HasResult() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Results) SetResult(v ConnectResult) error {
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewResult sets the result field to a newly
|
|
|
|
// allocated ConnectResult struct, preferring placement in s's segment.
|
|
|
|
func (s TunnelServer_connect_Results) NewResult() (ConnectResult, error) {
|
|
|
|
ss, err := NewConnectResult(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return ConnectResult{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_connect_Results_List is a list of TunnelServer_connect_Results.
|
|
|
|
type TunnelServer_connect_Results_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_connect_Results creates a new list of TunnelServer_connect_Results.
|
|
|
|
func NewTunnelServer_connect_Results_List(s *capnp.Segment, sz int32) (TunnelServer_connect_Results_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
|
|
|
return TunnelServer_connect_Results_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Results_List) At(i int) TunnelServer_connect_Results {
|
|
|
|
return TunnelServer_connect_Results{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_connect_Results_List) Set(i int, v TunnelServer_connect_Results) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s TunnelServer_connect_Results_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xfeac5c8f4899ef7c, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:14:47 +00:00
|
|
|
// TunnelServer_connect_Results_Promise is a wrapper for a TunnelServer_connect_Results promised by a client call.
|
|
|
|
type TunnelServer_connect_Results_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_connect_Results_Promise) Struct() (TunnelServer_connect_Results, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_connect_Results{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_connect_Results_Promise) Result() ConnectResult_Promise {
|
|
|
|
return ConnectResult_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
2019-11-18 16:28:18 +00:00
|
|
|
type TunnelServer_authenticate_Params struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_authenticate_Params_TypeID is the unique identifier for the type TunnelServer_authenticate_Params.
|
|
|
|
const TunnelServer_authenticate_Params_TypeID = 0x85c8cea1ab1894f3
|
|
|
|
|
|
|
|
func NewTunnelServer_authenticate_Params(s *capnp.Segment) (TunnelServer_authenticate_Params, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return TunnelServer_authenticate_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_authenticate_Params(s *capnp.Segment) (TunnelServer_authenticate_Params, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return TunnelServer_authenticate_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_authenticate_Params(msg *capnp.Message) (TunnelServer_authenticate_Params, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_authenticate_Params{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) String() string {
|
|
|
|
str, _ := text.Marshal(0x85c8cea1ab1894f3, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) OriginCert() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return []byte(p.Data()), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) HasOriginCert() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) SetOriginCert(v []byte) error {
|
|
|
|
return s.Struct.SetData(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) Hostname() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) HasHostname() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) HostnameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) SetHostname(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) Options() (RegistrationOptions, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return RegistrationOptions{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) HasOptions() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params) SetOptions(v RegistrationOptions) error {
|
|
|
|
return s.Struct.SetPtr(2, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewOptions sets the options field to a newly
|
|
|
|
// allocated RegistrationOptions struct, preferring placement in s's segment.
|
|
|
|
func (s TunnelServer_authenticate_Params) NewOptions() (RegistrationOptions, error) {
|
|
|
|
ss, err := NewRegistrationOptions(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return RegistrationOptions{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(2, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_authenticate_Params_List is a list of TunnelServer_authenticate_Params.
|
|
|
|
type TunnelServer_authenticate_Params_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_authenticate_Params creates a new list of TunnelServer_authenticate_Params.
|
|
|
|
func NewTunnelServer_authenticate_Params_List(s *capnp.Segment, sz int32) (TunnelServer_authenticate_Params_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3}, sz)
|
|
|
|
return TunnelServer_authenticate_Params_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params_List) At(i int) TunnelServer_authenticate_Params {
|
|
|
|
return TunnelServer_authenticate_Params{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params_List) Set(i int, v TunnelServer_authenticate_Params) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Params_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0x85c8cea1ab1894f3, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_authenticate_Params_Promise is a wrapper for a TunnelServer_authenticate_Params promised by a client call.
|
|
|
|
type TunnelServer_authenticate_Params_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_authenticate_Params_Promise) Struct() (TunnelServer_authenticate_Params, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_authenticate_Params{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_authenticate_Params_Promise) Options() RegistrationOptions_Promise {
|
|
|
|
return RegistrationOptions_Promise{Pipeline: p.Pipeline.GetPipeline(2)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_authenticate_Results struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_authenticate_Results_TypeID is the unique identifier for the type TunnelServer_authenticate_Results.
|
|
|
|
const TunnelServer_authenticate_Results_TypeID = 0xfc5edf80e39c0796
|
|
|
|
|
|
|
|
func NewTunnelServer_authenticate_Results(s *capnp.Segment) (TunnelServer_authenticate_Results, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_authenticate_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_authenticate_Results(s *capnp.Segment) (TunnelServer_authenticate_Results, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_authenticate_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_authenticate_Results(msg *capnp.Message) (TunnelServer_authenticate_Results, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_authenticate_Results{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Results) String() string {
|
|
|
|
str, _ := text.Marshal(0xfc5edf80e39c0796, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Results) Result() (AuthenticateResponse, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return AuthenticateResponse{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Results) HasResult() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Results) SetResult(v AuthenticateResponse) error {
|
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewResult sets the result field to a newly
|
|
|
|
// allocated AuthenticateResponse struct, preferring placement in s's segment.
|
|
|
|
func (s TunnelServer_authenticate_Results) NewResult() (AuthenticateResponse, error) {
|
|
|
|
ss, err := NewAuthenticateResponse(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return AuthenticateResponse{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_authenticate_Results_List is a list of TunnelServer_authenticate_Results.
|
|
|
|
type TunnelServer_authenticate_Results_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_authenticate_Results creates a new list of TunnelServer_authenticate_Results.
|
|
|
|
func NewTunnelServer_authenticate_Results_List(s *capnp.Segment, sz int32) (TunnelServer_authenticate_Results_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
|
|
|
return TunnelServer_authenticate_Results_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Results_List) At(i int) TunnelServer_authenticate_Results {
|
|
|
|
return TunnelServer_authenticate_Results{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Results_List) Set(i int, v TunnelServer_authenticate_Results) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_authenticate_Results_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xfc5edf80e39c0796, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_authenticate_Results_Promise is a wrapper for a TunnelServer_authenticate_Results promised by a client call.
|
|
|
|
type TunnelServer_authenticate_Results_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_authenticate_Results_Promise) Struct() (TunnelServer_authenticate_Results, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_authenticate_Results{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_authenticate_Results_Promise) Result() AuthenticateResponse_Promise {
|
|
|
|
return AuthenticateResponse_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
type ClientService struct{ Client capnp.Client }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_TypeID is the unique identifier for the type ClientService.
|
|
|
|
const ClientService_TypeID = 0xf143a395ed8b3133
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (c ClientService) UseConfiguration(ctx context.Context, params func(ClientService_useConfiguration_Params) error, opts ...capnp.CallOption) ClientService_useConfiguration_Results_Promise {
|
2019-03-29 23:05:11 +00:00
|
|
|
if c.Client == nil {
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Results_Promise{Pipeline: capnp.NewPipeline(capnp.ErrorAnswer(capnp.ErrNullClient))}
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
call := &capnp.Call{
|
|
|
|
Ctx: ctx,
|
|
|
|
Method: capnp.Method{
|
2019-05-17 14:23:05 +00:00
|
|
|
InterfaceID: 0xf143a395ed8b3133,
|
2019-03-29 23:05:11 +00:00
|
|
|
MethodID: 0,
|
2019-05-17 14:23:05 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:ClientService",
|
2019-03-29 23:05:11 +00:00
|
|
|
MethodName: "useConfiguration",
|
|
|
|
},
|
|
|
|
Options: capnp.NewCallOptions(opts),
|
|
|
|
}
|
|
|
|
if params != nil {
|
|
|
|
call.ParamsSize = capnp.ObjectSize{DataSize: 0, PointerCount: 1}
|
2019-05-17 14:23:05 +00:00
|
|
|
call.ParamsFunc = func(s capnp.Struct) error { return params(ClientService_useConfiguration_Params{Struct: s}) }
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Results_Promise{Pipeline: capnp.NewPipeline(c.Client.Call(call))}
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
type ClientService_Server interface {
|
|
|
|
UseConfiguration(ClientService_useConfiguration) error
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func ClientService_ServerToClient(s ClientService_Server) ClientService {
|
2019-03-29 23:05:11 +00:00
|
|
|
c, _ := s.(server.Closer)
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService{Client: server.New(ClientService_Methods(nil, s), c)}
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func ClientService_Methods(methods []server.Method, s ClientService_Server) []server.Method {
|
2019-03-29 23:05:11 +00:00
|
|
|
if cap(methods) == 0 {
|
|
|
|
methods = make([]server.Method, 0, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
methods = append(methods, server.Method{
|
|
|
|
Method: capnp.Method{
|
2019-05-17 14:23:05 +00:00
|
|
|
InterfaceID: 0xf143a395ed8b3133,
|
2019-03-29 23:05:11 +00:00
|
|
|
MethodID: 0,
|
2019-05-17 14:23:05 +00:00
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:ClientService",
|
2019-03-29 23:05:11 +00:00
|
|
|
MethodName: "useConfiguration",
|
|
|
|
},
|
|
|
|
Impl: func(c context.Context, opts capnp.CallOptions, p, r capnp.Struct) error {
|
2019-05-17 14:23:05 +00:00
|
|
|
call := ClientService_useConfiguration{c, opts, ClientService_useConfiguration_Params{Struct: p}, ClientService_useConfiguration_Results{Struct: r}}
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.UseConfiguration(call)
|
|
|
|
},
|
|
|
|
ResultsSize: capnp.ObjectSize{DataSize: 0, PointerCount: 1},
|
|
|
|
})
|
|
|
|
|
|
|
|
return methods
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_useConfiguration holds the arguments for a server call to ClientService.useConfiguration.
|
|
|
|
type ClientService_useConfiguration struct {
|
2019-03-29 23:05:11 +00:00
|
|
|
Ctx context.Context
|
|
|
|
Options capnp.CallOptions
|
2019-05-17 14:23:05 +00:00
|
|
|
Params ClientService_useConfiguration_Params
|
|
|
|
Results ClientService_useConfiguration_Results
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
type ClientService_useConfiguration_Params struct{ capnp.Struct }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_useConfiguration_Params_TypeID is the unique identifier for the type ClientService_useConfiguration_Params.
|
|
|
|
const ClientService_useConfiguration_Params_TypeID = 0xb9d4ef45c2b5fc5b
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func NewClientService_useConfiguration_Params(s *capnp.Segment) (ClientService_useConfiguration_Params, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Params{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func NewRootClientService_useConfiguration_Params(s *capnp.Segment) (ClientService_useConfiguration_Params, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Params{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func ReadRootClientService_useConfiguration_Params(msg *capnp.Message) (ClientService_useConfiguration_Params, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
root, err := msg.RootPtr()
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Params{root.Struct()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Params) String() string {
|
|
|
|
str, _ := text.Marshal(0xb9d4ef45c2b5fc5b, s.Struct)
|
2019-03-29 23:05:11 +00:00
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s ClientService_useConfiguration_Params) ClientServiceConfig() (ClientConfig, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig{Struct: p.Struct()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s ClientService_useConfiguration_Params) HasClientServiceConfig() bool {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s ClientService_useConfiguration_Params) SetClientServiceConfig(v ClientConfig) error {
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
// NewClientServiceConfig sets the clientServiceConfig field to a newly
|
2019-05-17 14:23:05 +00:00
|
|
|
// allocated ClientConfig struct, preferring placement in s's segment.
|
2019-05-30 20:45:46 +00:00
|
|
|
func (s ClientService_useConfiguration_Params) NewClientServiceConfig() (ClientConfig, error) {
|
2019-05-17 14:23:05 +00:00
|
|
|
ss, err := NewClientConfig(s.Struct.Segment())
|
2019-03-29 23:05:11 +00:00
|
|
|
if err != nil {
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig{}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_useConfiguration_Params_List is a list of ClientService_useConfiguration_Params.
|
|
|
|
type ClientService_useConfiguration_Params_List struct{ capnp.List }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// NewClientService_useConfiguration_Params creates a new list of ClientService_useConfiguration_Params.
|
|
|
|
func NewClientService_useConfiguration_Params_List(s *capnp.Segment, sz int32) (ClientService_useConfiguration_Params_List, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Params_List{l}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Params_List) At(i int) ClientService_useConfiguration_Params {
|
|
|
|
return ClientService_useConfiguration_Params{s.List.Struct(i)}
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Params_List) Set(i int, v ClientService_useConfiguration_Params) error {
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientService_useConfiguration_Params_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xb9d4ef45c2b5fc5b, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_useConfiguration_Params_Promise is a wrapper for a ClientService_useConfiguration_Params promised by a client call.
|
|
|
|
type ClientService_useConfiguration_Params_Promise struct{ *capnp.Pipeline }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (p ClientService_useConfiguration_Params_Promise) Struct() (ClientService_useConfiguration_Params, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
s, err := p.Pipeline.Struct()
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Params{s}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 20:45:46 +00:00
|
|
|
func (p ClientService_useConfiguration_Params_Promise) ClientServiceConfig() ClientConfig_Promise {
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientConfig_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
type ClientService_useConfiguration_Results struct{ capnp.Struct }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_useConfiguration_Results_TypeID is the unique identifier for the type ClientService_useConfiguration_Results.
|
|
|
|
const ClientService_useConfiguration_Results_TypeID = 0x91f7a001ca145b9d
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func NewClientService_useConfiguration_Results(s *capnp.Segment) (ClientService_useConfiguration_Results, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Results{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func NewRootClientService_useConfiguration_Results(s *capnp.Segment) (ClientService_useConfiguration_Results, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Results{st}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func ReadRootClientService_useConfiguration_Results(msg *capnp.Message) (ClientService_useConfiguration_Results, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
root, err := msg.RootPtr()
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Results{root.Struct()}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Results) String() string {
|
|
|
|
str, _ := text.Marshal(0x91f7a001ca145b9d, s.Struct)
|
2019-03-29 23:05:11 +00:00
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Results) Result() (UseConfigurationResult, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return UseConfigurationResult{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Results) HasResult() bool {
|
2019-03-29 23:05:11 +00:00
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Results) SetResult(v UseConfigurationResult) error {
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.Struct.SetPtr(0, v.Struct.ToPtr())
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewResult sets the result field to a newly
|
|
|
|
// allocated UseConfigurationResult struct, preferring placement in s's segment.
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Results) NewResult() (UseConfigurationResult, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
ss, err := NewUseConfigurationResult(s.Struct.Segment())
|
|
|
|
if err != nil {
|
|
|
|
return UseConfigurationResult{}, err
|
|
|
|
}
|
|
|
|
err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
|
|
|
|
return ss, err
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_useConfiguration_Results_List is a list of ClientService_useConfiguration_Results.
|
|
|
|
type ClientService_useConfiguration_Results_List struct{ capnp.List }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// NewClientService_useConfiguration_Results creates a new list of ClientService_useConfiguration_Results.
|
|
|
|
func NewClientService_useConfiguration_Results_List(s *capnp.Segment, sz int32) (ClientService_useConfiguration_Results_List, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Results_List{l}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Results_List) At(i int) ClientService_useConfiguration_Results {
|
|
|
|
return ClientService_useConfiguration_Results{s.List.Struct(i)}
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (s ClientService_useConfiguration_Results_List) Set(i int, v ClientService_useConfiguration_Results) error {
|
2019-03-29 23:05:11 +00:00
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:07:24 +00:00
|
|
|
func (s ClientService_useConfiguration_Results_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0x91f7a001ca145b9d, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
// ClientService_useConfiguration_Results_Promise is a wrapper for a ClientService_useConfiguration_Results promised by a client call.
|
|
|
|
type ClientService_useConfiguration_Results_Promise struct{ *capnp.Pipeline }
|
2019-03-29 23:05:11 +00:00
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (p ClientService_useConfiguration_Results_Promise) Struct() (ClientService_useConfiguration_Results, error) {
|
2019-03-29 23:05:11 +00:00
|
|
|
s, err := p.Pipeline.Struct()
|
2019-05-17 14:23:05 +00:00
|
|
|
return ClientService_useConfiguration_Results{s}, err
|
2019-03-29 23:05:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 14:23:05 +00:00
|
|
|
func (p ClientService_useConfiguration_Results_Promise) Result() UseConfigurationResult_Promise {
|
2019-03-29 23:05:11 +00:00
|
|
|
return UseConfigurationResult_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
|
|
|
|
}
|
|
|
|
|
2019-11-18 16:28:18 +00:00
|
|
|
const schema_db8274f9144abc7e = "x\xda\xccZ{p\x1d\xe5u?g\xf7\xca+)\x96" +
|
|
|
|
"\xef\xdd\xacl\xb0\xb0\xb8\xae\xc7n\xb0\x03.Fq\x0b" +
|
|
|
|
"j'W\x0f\xdbH\x8al\xdf\xd5\xc3\x80\xb0;^\xdd" +
|
|
|
|
"\xfbIZy\xef\xee\xf5>l\xc9c\xe2\xc7\xd8\x05T" +
|
|
|
|
"\x1cl\x82;\x98\x98\x8c\xed\xc6\xc5\xa6N\x83\x89\x996" +
|
|
|
|
"\x14\x98\xa4\xed\x14h\xd2\x12R\xe8\xc4)\x9d\x12\x8c\xa7" +
|
|
|
|
"\x13\xa6\x0c\x05\xd2a\xe8`\xb6s\xf6\xad+!\xd9\x99" +
|
|
|
|
"\xfe\xd1\x7f\xec\x9ds\xcf\xf78\xaf\xdfy|\xba\xf5\xe5" +
|
|
|
|
"\x9a\x16nU\xd5\xcey\x00\xf2\x99\xaa9.[\xf1\xb3" +
|
|
|
|
"]'\x96\xfd\xed~\x90\x1b\x10\xdd\xaf?\xdfU\xff\x89" +
|
|
|
|
"\xbd\xff_\xa1\x8a\x17\x00\x9a~K\xd8\x85\xd2jA\x00" +
|
|
|
|
"\x90V\x09\xff\x01\xe8V\xfd\xf6\x1bo\x95\xdf\x12\x0e\x80" +
|
|
|
|
"\xd8\x90d\xe6\x88y~u\x17J\xcb\xab\x89yY\xf5" +
|
|
|
|
"N@\xf7\x0fJ\xaf\x9e\xfa\xdd\xa3?&f.f\x06" +
|
|
|
|
"l:T\xbd\x0b\xa5\x93\x1e\xe7\x13\xd5\x1b\x01\xdd\x8f\x1e" +
|
|
|
|
"\xbd\xfe\xcfO\xfe\xd3\xcb\x07A\xfc\x12Bp\xf6\xb3\xd5" +
|
|
|
|
"\xbf@@\xe9\x95\xea\xef\x01\xba\xff|\xeb\xeew\xb6~" +
|
|
|
|
"t\xe4\x81\xc9\xe7\xa6\x88O\xad\x99@i_\x8d\x00\xbc" +
|
|
|
|
"\xfb\xc4\xbd\xf5\xff\x80'>>\x02\xe2M\xb4\x0d\xd2\xcf" +
|
|
|
|
"[jj9@\xc9\xa9\xc9\x01\xba\xaf\xde\xfc\xfcs\x87" +
|
|
|
|
"\xbf\x7f\xff\xb7@\xfe\x12\"\xf8\xeb\x8f\xd6\xfc\x0f\x9ds" +
|
|
|
|
"\xd6c\xf8\xe0;_N}\xf7\xd5/~\xdbcpO" +
|
|
|
|
"\xbfv\xd73\x87\xbf\xbf\xf8]\xe8\xe7\x04L\x014\xbd" +
|
|
|
|
"Vc\x12\xef\xbf\xd5\x90.\x1e\xfd\xf9\x0b\x1bJG\x1e" +
|
|
|
|
"?\xe5_\xda\xdb\xeb\x85Z\x8e\x83\x94\xbb\xfa\x17\x977" +
|
|
|
|
"\xae\x7ff\xe8\xc9@\x1c\xef\x1e\xe7k\x9f\xa1\xa5?\xaa" +
|
|
|
|
"\xa5c^\xde\x99y\xa8\xf5\xf7\x1e~\xb2R\xe9U\xc4" +
|
|
|
|
"y\xb9v\x02\xa5+\xb5\xf4\xf9I\xed]\x08\xe8N\xdc" +
|
|
|
|
"\xf1\xc2\xa6\x8f\xfe\xc8z\x0a\xe4[0\xe5\xfe\xdd\x83\x97" +
|
|
|
|
"v,?;\xf4\x92w+\x1e\xa0i\xfb\xdc\x9f\xd1\xd6" +
|
|
|
|
"\x07\xe7\x92\xa6\xea\xfez\xc5\x86\x87\xdf\xe9>O['" +
|
|
|
|
"\xb4\xee_bY]3J\xab\xeb<{\xd6\x11\xf7O" +
|
|
|
|
"o\xde\xf4\xe2\x8bO\x0f\x9f\xaf\xbc\x88g\xd0\xd7\xea\xba" +
|
|
|
|
"P\xba\xecq\xff\xd2\xe3\x9e\xdf\x89o\xfepU\xea/" +
|
|
|
|
"\x93f::\xef]O}\xf3\x88\xe1\xdeO\x9f\xfd\x9b" +
|
|
|
|
"\xb5\xef\xbf\xfe\x83\xa4\x01:\xd3\x1c\x19`K\x9a\x04\x1f" +
|
|
|
|
"\x98\xc0\xd2\x9b\xcd-/\x82|\x13\xa2;zt\xb7\xdd" +
|
|
|
|
"\xf1\xd8!\x17\xfaQ@\x0e\xa0\xe9`z\x17mv$" +
|
|
|
|
"M\xee\xd3\xf8^[\x9d\xfe\xfe\xfe\x1fV\xf8\x9aw\xea" +
|
|
|
|
"{\xe9.\x940CW\xbb\x92\xfe\x1e\xe0\xc7O\xdd\x7f" +
|
|
|
|
"\xb8\xf3\xd2\x9a\x97\xe4\x06LU\x0a},\xb3\x0b\xa5\xef" +
|
|
|
|
"\x12o\xd3\xd9L\x96\xf4\x19i\xb0\x82\xdd\x93\xfa\xa28" +
|
|
|
|
"\x8a\xd2{\"}\xfeJ\xf4\xd8\xbb\xee\xfd\xe6#U\x97" +
|
|
|
|
"\xbf\xf9R\xa5J).\x9a\xfe\xfb\x8b&J5\x12}" +
|
|
|
|
"VIOr\x80n\xc3\xd3\xbf\xff\x17m\xc5\x8b?\x9e" +
|
|
|
|
"&F\xa4\x0f\xe6\x7f(]\x99O_\x9f\xcc'\x19\xef" +
|
|
|
|
"\xff\xf2\xf8\xae\x0d\xcb&\xde\xa8\xd4\xbfw\xf1\xfe\x05\x13" +
|
|
|
|
"(\x95\x16\x10\xb7\xba\x80\xb8\xb9\xcb\xca\xc2\xbd\xff\xf2\xd5" +
|
|
|
|
"7\x13\x1ewq\xc1\xdb\x08)w\xc3\xa6{Gk\xee" +
|
|
|
|
"\xbbt)\xe9q\xff\xb8\xc0\xb3\xcc/\x17\x90\xe2/\x88" +
|
|
|
|
"\x8fH\xcf\x9f\xfc\xb3w\xe8 \xa1R\x9bx\xdd\x00J" +
|
|
|
|
"\xf3\xaf\xa3O\xf1:O\x86\xc8\xf3\xa7\xf3\x8b\xba\x86f" +
|
|
|
|
"\x94\x1a\x1b\xe8^\x0b\x1b\xe8^\xab\xb7\xb6\xb2\xcd\xb7\xdf" +
|
|
|
|
"\xfd.\x88\x0d\xfc\xa4@\xbf\x878U\xe2lb\x0dw" +
|
|
|
|
"\xa2\xd4z\x83\x00\xe0~cx\xe0\x95\x0f\xdaO\xfeW" +
|
|
|
|
"\xe5\xe6\x9e@\xcbohF\xe9\x0e\xe2kZ}\x83\xa7" +
|
|
|
|
"\xfe\xa6U\x7f\xfc\xde\xd1?m\xff`\xca\xee\xfb\x16\xb5" +
|
|
|
|
"\xa1td\x11\xdd\xe3\xd0\xa2;\xa5\x17\x16y\x9b\x7f}" +
|
|
|
|
"\xcd\xc6;\x96\xfc\xe8\xc3\xa4&N/\xfa\x904\xf1\x83" +
|
|
|
|
"E\xa4\x89\xa1\xdb\xff\xf3\xcee\xdf\xf8\xfb\x0f+\xcc\xe3" +
|
|
|
|
"1^\\\xb4\x02\xa5_y;^&\xe6\xf7\xd7}\xfb" +
|
|
|
|
"\xf5\x86t\xc3\xaf\xa7\xbbhM\xe3(J\x8d\x8d\xf4\xb9" +
|
|
|
|
"\xb0\xd1\xbb\xe8\xddo?\xbe3\xf7\xad_\x7fLr\xf1" +
|
|
|
|
"\x15(\xd5y\xe3\x00J[n\xa4\x9d\xef\xb9\x91B\xa5" +
|
|
|
|
"\xfb\xdc\xc5\xaf\x8e\x1c}\xf9\x93iq\xb7*\xbb\x1f\xa5" +
|
|
|
|
"\x85Y\xe2\x9e\x9f%\xac\xf9\x13\xe1\xf8\xa5\xbd\xff\xfe\x87" +
|
|
|
|
"\x9f&\xa5\xba\x92}\x9b\xa4\x12\x17\x93T\xbb\xdf?\xd6" +
|
|
|
|
"\xf1\xf0\xe6s\x9f%\x19V-~\x8e\x18Z=\x86(" +
|
|
|
|
"\xd6\xa6\xf34eq\x1bJ\xdb\x17\xd3y\xa5\xc59\xb8" +
|
|
|
|
"\xc5\xb5\x1d]g\x9aYN\x15~'\xfc,\xac,(" +
|
|
|
|
"e\xbd\xdc\xdc\xea\xd8#L\xb7\xd5\x82b\xb3\x1e\x96\xb3" +
|
|
|
|
"\xca\x86n\xb1<\xa2\x9c\xe1S\x00)\x04\x10\x95Q\x00" +
|
|
|
|
"y+\x8f\xb2\xc6\xa1\x88XOX+\xaaD\x1c\xe1Q" +
|
|
|
|
"\xb69\x149\xae\x9e\x02^\xdc\xbe\x04@\xd6x\x94\xc7" +
|
|
|
|
"8D\xbe\x9e\xe0Lt\x1e\x01\x90\xc7x\x94\x0fp\xe8" +
|
|
|
|
"\x96\x99YRt\xa6C\xda^k\x9a8\x178\x9c\x0b" +
|
|
|
|
"\xe8\x9a\xcc6\xc7\x95A\x0d\xd2,A\x16Fw\xdaX" +
|
|
|
|
"\x07\x1c\xd6\x01\xba#\x86cZ\xfd\xba\x8d\xaa\xd6\xc3\x86" +
|
|
|
|
"Lf\xe1\x08\xce\x01\x0e\xe7\x00\xce$^\xbb\xa1\xeb\xac" +
|
|
|
|
"`\xf7:\x85\x02\xb3,\x00\x92\xac:\x92l\xf9\xe3\x00" +
|
|
|
|
"\xf2\xcd<\xca\xb7'$[M\x92}\x85G\xb9\x85C" +
|
|
|
|
"\xd7b\xe6\x0efv\x1bXPl\xd5\xd07(|\x89" +
|
|
|
|
"E\xd7.h*\xd3\xedv\x03\xd2\xfa\x90:\x8c\x998" +
|
|
|
|
"\x14\x0013\xf3\xc5\xd6\x8e\xa9\x96\xad\xea\xc3}\x1e=" +
|
|
|
|
"\x9774\xb50N\xb7\x9b\xebi\xb2\xb1\x99\xf6\x10\xe7" +
|
|
|
|
"\x0f\x00 '\x8am\x009uX7L\xe6\x16U\xab" +
|
|
|
|
"@B\x01_\xb0\xf7\x0c*\x9a\xa2\x17Xt\xd0\x9c\xa9" +
|
|
|
|
"\x07\xf9\x07\xf4zr\xacT\x12\xd6^\x9aWL\x85/" +
|
|
|
|
"Y\xf2\xdcH\x1fk\x07\x00\xe45<\xca\xf9\x84>\xd6" +
|
|
|
|
"w\x01\xc8\xdd<\xcaw',\xdd\xdf\x06 \xe7y\x94" +
|
|
|
|
"7s\xe8\x1a\xa6:\xac\xea\xed\x0cx3i0\xcb\xd6" +
|
|
|
|
"\x95\x12\x03\x80Pa{\x8c2)\xd1\xc2L\x0c\xc2\x15" +
|
|
|
|
"\x9a\xaa\x9a*@\x07\xd34\xe3.\xc3\xd4\x8a\x1b\xfds" +
|
|
|
|
"\x0c\xd2\xb6g\xcah\x990\x8d\xe5=\xe3\x90\xdcj\x81" +
|
|
|
|
"\xadt,\xe6\xafsL\xcf\x90K{\x98\xe5h\xb6\x05" +
|
|
|
|
" \xa7\"\xf1\xeb\x9a\x01\xe4j\x1e\xe5z\x0es\xa6\xc7" +
|
|
|
|
"\x80\x99\x18\xd4+\xae:\x9b\xae\x1d\xddd\xc3\xaae3" +
|
|
|
|
"\xd3'/\xcd\x91\xc2KV\xf2@\xf2\xbf\x0c\x8f\xf2\"" +
|
|
|
|
"\x0e\xddaS)\xb0<3Q5\x8a\x1b\x14\xdd\xe8\xe5" +
|
|
|
|
"Y\x01\xab\x80\xc3\xaa\x99=i\x9d\xa2j\xac\xe8K\xb7" +
|
|
|
|
"\xb2\x90\xf5\xfe\xa7\xe8\x9d\xeb\xba~\xf8\x0e\xc4\xe1[\x87" +
|
|
|
|
"\x9f\xb9A\xfc\xee\x8a\xe3\xb7\x8e\xbb\xe2N\x0d\xe0:\xfe" +
|
|
|
|
"S7\x08a\x8a\x08\x9bGy/E\x84S&\x9dZ" +
|
|
|
|
"\xc0\x1b&fb\x94\x0c\xb4\xc3\x8a\xc3\xa4i\x1dr\xac" +
|
|
|
|
"@\x8a\xc6L\x98\xcc}\x06\xa1h\x8c`&\xaeT\x82" +
|
|
|
|
"e&\xdb\xc1L\x8b\xe5!m\x1ac\xe3\x98\x89\x93z" +
|
|
|
|
"\x85\xd6\xeb\xaeU\xeb\xa1\xa1\xa3U3\xaf/\xf8\x80\xb1" +
|
|
|
|
"4\x9f\x9db,\xd2\xe3\\\x1e\xe5\xeb\x09\xc8\xe8Wf" +
|
|
|
|
"\x93\xcb\x93;G\x15\xe0\xec\xee\xdcN\xff\x06\xb0\x94\x0f" +
|
|
|
|
"v1\x03d\xba>:\xec\x18\x1d\xf6\x18\x8f\xf2w\x12" +
|
|
|
|
"\x91x\xd2\x04\x90O\xf0(\x9f\xe3\x10\x83@<{\x0a" +
|
|
|
|
"@>\xc7\xa3\xfcW\x1c\x8a<\xe7\x1b\xec\xd9\x15\x00\xf2" +
|
|
|
|
"\xd3<\xca?\xe1PL\xf1\xf5T\xed\x8a\xaf\x90\xb3\xfd" +
|
|
|
|
"\x84G\xf9\xe7\x1c\x8aU\xa9z\xac\x02\x10\xdf\x18\x04\x90" +
|
|
|
|
"_\xe7Q~\xeb\xf3\xe2\xb8\xa0\x19NqHS k" +
|
|
|
|
"\xb2b\xe7\x9a\x88\xae;\xa5\xbc\xc9v\xa8h8V\xab" +
|
|
|
|
"m\xb3\x92P\xb6\xad\x10\x92\xd3\xb62l\xe1<\xc0<" +
|
|
|
|
"\x8f\x98\x89k(@\"F{\xa2\xc9\x8a\x9b\x98i\xa9" +
|
|
|
|
"\xbc\xa1G\xa8\xaa\xea6\xd3\xedn\x05\x84A\xa6E\xd4" +
|
|
|
|
"\x19\xa2\xae'\xf0\x1d\xf2\x9c \x0c\x8c\x18)p\x98\x00" +
|
|
|
|
"n\x91\xeb\x06J\\K\xbai\xe1Q\xee\xe6\xb0\x11?" +
|
|
|
|
"#2\xe9\xb1\xb3\x07@\xee\xe0Q\xee\xe3\xb0\x91\xbbB" +
|
|
|
|
"d\xd2\xa4<\x10\xe3\\z\xc4\xb6\xcb\x98\x89\x8b\xaf\xc0" +
|
|
|
|
"\xd8;\xd9\xa0e\x14\xb61@\x82\x8b\xa8\x12\x08~\x1d" +
|
|
|
|
"\x09\xe0\x0bx\xad\x88\x99\xb8\xf5\xa9\xf0\x14\xfe\xf3rW" +
|
|
|
|
"\x8e2\xa5az\xa9!\x06\xea\xdbb!B\xef\xe8\x1c" +
|
|
|
|
"\x88%\x10\xb9\x16_,y0\xbe\x7f\xb6\xa08\x16\x9b" +
|
|
|
|
"\x9ct[\x87l\xe0\x99\x19\xe1\x8c5b8Z\xb1\x87" +
|
|
|
|
"\x81`\x9b\xe3\x88\xc0!\xce\x8c>k\x8c\x8e\x84\xe2}" +
|
|
|
|
"7\x9e>\xa1D\xf9d \x99O\x02\xf5\xf7\x93\xfa\xfb" +
|
|
|
|
"x\x94\xcb\x1c\xba\x1a\xc5\xaf\xdea\x00o\xd9\xd1u}" +
|
|
|
|
"b\xde\xf0\x9cS\x00\x0e\x05@\xd7)[\xb6\xc9\x94\x12" +
|
|
|
|
"`\xe4m\xc4?\xef\x1a`\xba\x02.\xf2J\xda\x8b\xfb" +
|
|
|
|
"\xffOI\xf1\xda\xb3\x9b\x9fi&\xe5\xb6S\x89TS" +
|
|
|
|
"\x08V\xa3\xb7\xbc\xdd\xd0\x85k\xae_\x02\x04\xf3\xd1u" +
|
|
|
|
"e\x90-\xa9\xb4\x0a\xd3\xcerJ%Ky\x94oM" +
|
|
|
|
"\xa6\x9d[HE7\xf1(\x7f\x85C\x81\x99\x94A\xa2" +
|
|
|
|
"\x16\xd7?t\x8f\xe5\xd7j\x98\x89\xc7\x13\xb3_'Q" +
|
|
|
|
"\xc6\xaa\x86>\xc5\x0d\x97\xc4\xe1\x12\x99\xb0\xf3\xb6\x84]" +
|
|
|
|
"C\x13\xae\x1f\x8c\xed*lc\xe3\xa1\x95\xb2\xac\xa4\xa8" +
|
|
|
|
"1\x1a\x05\xc6m\x05\xe1k1\xcf\x8c\xe5^\x90\x16\xfd" +
|
|
|
|
"\xa4\x98\xf3\xadE\x97\xac\x8f.y\xdf\x04\x80\xbc\x97G" +
|
|
|
|
"\xf9\xa1\xc4%\x1f\xa4\xea\xf9!\x1e\xe5\xc7\x12\x97<J" +
|
|
|
|
"J<\xcc\xa3|\x9c0?\xa8\xb3\x8f\x91\x81\x8f\xf3(" +
|
|
|
|
"\x9f\xe1\x10S>\xe4\x9f&\xc8?\xc3\xa3|\x81\xf3\x00" +
|
|
|
|
"\xbb\xa3\xb5\xdd\xd01\xb8\x84\x05\x10U\xd0#L1\xed" +
|
|
|
|
"A\xa6\xa0\xdd\xa9\xdb\xcc\xdc\xa1\xa0\x16B\xc2\x1e[-" +
|
|
|
|
"1\xc3\xb1#\x88()c^\xc9\x81\xc5\x0e\x7f\x95\xa0" +
|
|
|
|
"\xd8\x16\xd6\x00\x875\x14\x91\x163\xdbMVD\xb2\x86" +
|
|
|
|
"\xa2\xe5\x15\xde\x1e\xb9\x1a\x05M\x06\xf1\xf44\xea\xa1\x82" +
|
|
|
|
"e7\x8f\xf2\x03\x04%\x98\x18\xa3\x88\x07G\x81\xf3\x90" +
|
|
|
|
"\x84d\xde\xde\x16\x970^B\xac\xaahB\xbc\x848" +
|
|
|
|
"\x07@\xdcG\xda9\xc0\xa3|\x98\x0b\xaf\xd6a@\xce" +
|
|
|
|
"\x8f\xd0JS\x07E\xfe\x1eBM\x95\xc5\xf2\x06\xf5\x82" +
|
|
|
|
"\x8a\x86\xde\xe7)\x0acM\x15\x8cR\xd9$WV\x0d" +
|
|
|
|
"]v\x14M\xe5\xed\xf1h\xe1\x8c\xba H\xf2Cy" +
|
|
|
|
"c9\xeb\x19\x8b\x94qk\xa8\x0c\xa9\x15\xbb\x00z[" +
|
|
|
|
"\x90\xc7\xden\x8c\xddE\xea\xc46\x80\xde5D\xcfc" +
|
|
|
|
"\xec1\xd2zl\x00\xe8\xed z\x1fF\xbd\x99$\xe3" +
|
|
|
|
"S\x00\xbd}D\xde\x8aq\xa9 m\xf1\xb6\xdfL\xf4" +
|
|
|
|
"\x11\x8c\xab\x05\x89\xe1\x0a\x80\xde\xadD\xdfM\xf49\x9c" +
|
|
|
|
"\xa7Ii\x1cG\x01z\xc7\x88~\x80\xe8BU=5" +
|
|
|
|
"\xa2\xd2>4\x01z\xf7\x12\xfd!\xa2W__\x8f\xd5" +
|
|
|
|
"\x00\xd2\x83\x1e\xfd\x01\xa2?J\xf4\x9a\x85\xf5X\x03 " +
|
|
|
|
"\x1d\xc1\xfd\x00\xbd\x87\x89~\x9c\xe8\xb5X\x8f\xb5\x00\xd2" +
|
|
|
|
"1|\x1c\xa0\xf78\xd1\xcf\x10\xfd\x0bs\xea\xf1\x0b\x00" +
|
|
|
|
"\xd2i\xef>'\x88~\x0e#\\\xeb,&\xe1\x95\xdc" +
|
|
|
|
"J\x8d\xcb\x0b\xde\xb0\"\xd3\xb2\xa0\x07C\x1f\xfb\xf3F" +
|
|
|
|
"\x9a\x9a0L\xc7\xa3N@L\x03\xbae\xc3\xd06L" +
|
|
|
|
"\x86\xed\xd9*\x9c\xc0- m\xe8\x9d\xc5(\xce|g" +
|
|
|
|
"\xea6 [P\xb4\xcer\\\xf3X\xad\x8em8e" +
|
|
|
|
"\xc8\x16\x15\x9b\x15\xa3\xc4k:\xfa:\xd3(\xf5!3" +
|
|
|
|
"K\xaa\xaeh\x10\xfd2\x93o\xa5\x1dG-N\x09:" +
|
|
|
|
"\xae\xd2\xd1\xb2\xe5\xe6>e\xb8\xa2#^\x11\xa3v\x04" +
|
|
|
|
"B\xb7\xdc\x16\x83v:\x19\x1c\xd9\x1d\x8a\xe6\xb0)'" +
|
|
|
|
"MS\xf5\xf6Wd(?oL\xe9\xc7\xdb\xe2\xd3\xa3" +
|
|
|
|
"\xc3\xcd\xa0G\xef\xe0\xe2\xdc\x10ja(\xe8} K" +
|
|
|
|
"{'\xec\x11M\xbc\x02{\\m50\xccl\xff\xab" +
|
|
|
|
"S\x1f2(\x8d\x0aJ\xc9\xfa\x0dW\xf70+M\xad" +
|
|
|
|
"\xc7\xac\x1df4\xc3\x9a=\xcfu\xf4\xf5\xe5\xe36\x98" +
|
|
|
|
"\xf7A2\x89\x0b=I\\\x88aa4\x19\xfeau" +
|
|
|
|
"(\xc9^\x1c\xe6\x89\xbe\x19\xe3\xfeA\xba\x07OM\x8a" +
|
|
|
|
"\xffT\xab\x8f\x0b\xcc\xdb\xbeH\xf4\xb2\x87\x0b\xe8\xe3B" +
|
|
|
|
"\xc9\xdb_#\xfaX\x12\x17\x1c\x9c\x98\x8c\x0b|\x88\x0b" +
|
|
|
|
"\x14\xcf\x07\x88~\xd8\xc3\x85\x94\x8f\x0b\x87\xf0\x99I\xf1" +
|
|
|
|
"_S\xe5\xe3\xc21|nR\xfc\xd7\xce\xf1q\xe1\xb4" +
|
|
|
|
"\xc7\x7f\x86\xe8\x17<\\h\xf3q\xe1\xbc\x87#O\x13" +
|
|
|
|
"\xfdy\xc2\x05\xc7\xd4zmS\xd5\x01\x87cg-\x94" +
|
|
|
|
"\xbf\xc6X\xb9\x15\xd2\x9a\xba\x83E\x98]T\x15m\x8d" +
|
|
|
|
"\xa3h\x90\xed\xb5\x95\xc2\xb6\xb8\x04\xd6\xac\x0eE/Z" +
|
|
|
|
"8\xa2lc\x84\xf4B2'\xda\x9a\xb5\x89\x99\xea\x10" +
|
|
|
|
"`\\4G5B:o\x18\x95\xa5\x83W{1\xd3" +
|
|
|
|
"\x07\x95\xe8\xb7\x922\xd6Y\xd4X;\x86\x95\x02\xaf\xc7" +
|
|
|
|
"\x99F\xa5_\x0c]G?}\xf7\xa9\xd9\xc9y\xb9\x1c" +
|
|
|
|
"\x94\xe1a~\xef\xcbU$n6Vf\x05\xbb\xdd@" +
|
|
|
|
"\xddVu\x87M\xd9\xa00\xe2\xe8\xdbXq-\xea\x05" +
|
|
|
|
"\xa3\xa8\xea\xc30\xa5\xfe\xe7?o\xfa\x90(h\xbch" +
|
|
|
|
"\xc6\xc4\xdb\x8b\xb8\xbc\x198\x0fK(=\x8b\xcdq\x17" +
|
|
|
|
"\x9d+x\xabr&S\xacD\x038\xc3i\xc1\xb4\xcc" +
|
|
|
|
"\x0f2\xbf>\xa8\x02\x88^20\x1c\x17\x8bGv\x01" +
|
|
|
|
"'>(`<e\xc7p\xa8.\xdeg\x02':\x02" +
|
|
|
|
"r\xd1\x03\x12\x86\x8f?\xa2:\x01\x9c\xc8\x04\xe4\xa3W" +
|
|
|
|
"\x1f\x0cg\xb1\xe2=m\xc0\x89\xeb\x05LE\x0f\\\x18" +
|
|
|
|
"\x0er\xc5V*A\xee\x10\xdc\xb0\x9b\x80\x9c\x7f\xd5\x16" +
|
|
|
|
"tCP\x80\xac\x07\x0b-\xe8\x863\x0a\x0c\xbb\x0e\x80" +
|
|
|
|
"\x16\xdc\x13\xa4\x8c\x16t\xc3)\x1d\xa4\x0b\x8a\xcdZ0" +
|
|
|
|
"9\xe9\xe2?\xaf\x17\x98\xbe\xa6l\x8b\xeb\x9e\x10P\xf7" +
|
|
|
|
"M\xc4eO\xd4\x7f\x1dz*YR\x06c\x84c\xfb" +
|
|
|
|
"\x83!\xc4\x85\xc4\x18\xe1<\xd5\x99\x17x\x94\x7f\xca\xc5" +
|
|
|
|
"\xc95\xf4\xd1p8\x84\x86\x196\x843\xcc\x88\x02O" +
|
|
|
|
"\x0e\xca\xbd\xcaI\x91[4F\xbcr\x10\xfd\xad,\x88" +
|
|
|
|
"\xe1=9>\x9a\x97\x18\x1fa\xd8\x8a\x0a\x93\xb2Ar" +
|
|
|
|
"\x984o\x96\xbe&\xd9Xy\xe9)\xe5\xb9X\xf8\x16" +
|
|
|
|
"\x86\xe1\xab\xa4(\x92\xab\xd4\x09n\xd8|a\x98\xdb\xc8" +
|
|
|
|
"\x9aI\x93]c\x07\xda\xc3\xb2\xd6\xd5\xa4\x8d\xf05c" +
|
|
|
|
"\xf6A\x82\x7fN\x9a\xbc\xcf\x17(\xdaw41\xd2\xd2" +
|
|
|
|
"\x8c\xa0yJoH\xd6\xbf3\xe8\xca\xbfpX\xad\xa6" +
|
|
|
|
"iq\x85\xfb-I\x94\xdd\x91\xff-\x89\x0b\xf9\xa8\xa5" +
|
|
|
|
"9\xd8\x158\xe5\x89\xf8\xe5\xe0\x89\x89x\xdc\x15\xb9\xdf" +
|
|
|
|
"\xd9\xae\xb8\xa5\xf1\x1a\xc8\xf0\xb1\xc01c\x8c\xd5\x8c\xe1" +
|
|
|
|
"nUg\x16\xd5k\x15c\x81\xf0\x05\x02mB.\xc7" +
|
|
|
|
"$\xf8\x9d\x0cs\x9dk\x12e\xdeL\xe2\xf7\x06\xce\xee" +
|
|
|
|
"\xfbz\x90\x8b\x13M\xe7\xa9\xc4<&\x14^~.\x98" +
|
|
|
|
"slM\x08\xbf\x85\x9a\xce\xcd<\xca#\x9c\x17\xfcF" +
|
|
|
|
"\x7f\xb9\xa8\xa0\xcd\xd6\x99l\xbb\xc3\x04\xbd0\x1e7_" +
|
|
|
|
"\xd4~\x14\xac~,S\xa1\xb8\xced\xb9\xed\x0eK2" +
|
|
|
|
"\x84Sd\x10T\xa38e|<Mev\x17\x1b\xec" +
|
|
|
|
"5\x0a\xdb\x98=i\xba^\xf1\x02\xd4\x13\x8f\x90\xa3\x07" +
|
|
|
|
"\xa0\x9e\xe4\x03P\x00#\xdb\xc9\xa1\xca<\xca\xbb\x130" +
|
|
|
|
"2>\x11\x1b|\xfaT\xfc\x7f\x93=\x7f\xa3G\x10*" +
|
|
|
|
"D\x85\xab)\xd2\xa2\xbf\xac\x98}\xc4;\xed@\xb9'" +
|
|
|
|
"\xc7\xae*\xac\xe3\xa7\xbdk\x1c\xc2@\x14\xdb\x98x\x99" +
|
|
|
|
"\xa7C\xb8`\xf3\xff\x0d\x00\x00\xff\xff\xdfs7\x9d"
|
2018-05-01 23:45:06 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
schemas.Register(schema_db8274f9144abc7e,
|
2019-11-18 16:28:18 +00:00
|
|
|
0x82c325a07ad22a65,
|
2019-09-17 21:58:49 +00:00
|
|
|
0x8407e070e0d52605,
|
2018-05-01 23:45:06 +00:00
|
|
|
0x84cb9536a2cf6d3c,
|
2019-11-18 16:28:18 +00:00
|
|
|
0x85c8cea1ab1894f3,
|
2019-03-29 23:05:11 +00:00
|
|
|
0x8891f360e47c30d3,
|
2019-05-17 14:23:05 +00:00
|
|
|
0x91f7a001ca145b9d,
|
2018-05-01 23:45:06 +00:00
|
|
|
0x9b87b390babc2ccf,
|
2019-06-12 15:07:24 +00:00
|
|
|
0x9e12cfad042ba4f1,
|
2018-05-01 23:45:06 +00:00
|
|
|
0xa29a916d4ebdd894,
|
2019-03-18 23:14:47 +00:00
|
|
|
0xa766b24d4fe5da35,
|
|
|
|
0xa78f37418c1077c8,
|
2019-03-29 23:05:11 +00:00
|
|
|
0xaa7386f356bd398a,
|
2019-03-18 23:14:47 +00:00
|
|
|
0xb14ce48f4e2abb0d,
|
2019-03-29 23:05:11 +00:00
|
|
|
0xb167b0bebe562cd0,
|
2018-05-01 23:45:06 +00:00
|
|
|
0xb70431c0dc014915,
|
2019-05-17 14:23:05 +00:00
|
|
|
0xb9d4ef45c2b5fc5b,
|
2019-09-17 21:58:49 +00:00
|
|
|
0xbe403adc6d018a5a,
|
2018-05-01 23:45:06 +00:00
|
|
|
0xc082ef6e0d42ed1d,
|
2019-06-12 15:07:24 +00:00
|
|
|
0xc744e349009087aa,
|
2019-03-29 23:05:11 +00:00
|
|
|
0xc766a92976e389c4,
|
2018-05-01 23:45:06 +00:00
|
|
|
0xc793e50592935b4a,
|
|
|
|
0xcbd96442ae3bb01a,
|
2019-03-29 23:05:11 +00:00
|
|
|
0xd58a254e7a792b87,
|
2018-05-01 23:45:06 +00:00
|
|
|
0xdc3ed6801961e502,
|
|
|
|
0xe3e37d096a5b564e,
|
2019-03-29 23:05:11 +00:00
|
|
|
0xe4a6a1bc139211b4,
|
2019-06-12 15:07:24 +00:00
|
|
|
0xea20b390b257d1a5,
|
2018-05-01 23:45:06 +00:00
|
|
|
0xea58385c65416035,
|
2019-05-30 20:45:46 +00:00
|
|
|
0xf0a143f1c95a678e,
|
2019-05-17 14:23:05 +00:00
|
|
|
0xf143a395ed8b3133,
|
2018-05-01 23:45:06 +00:00
|
|
|
0xf2c122394f447e8e,
|
|
|
|
0xf2c68e2547ec3866,
|
2019-03-18 23:14:47 +00:00
|
|
|
0xf41a0f001ad49e46,
|
2019-06-12 15:07:24 +00:00
|
|
|
0xf7f49b3f779ae258,
|
2019-03-29 23:05:11 +00:00
|
|
|
0xf9c895683ed9ac4c,
|
2019-11-18 16:28:18 +00:00
|
|
|
0xfc5edf80e39c0796,
|
2019-03-18 23:14:47 +00:00
|
|
|
0xfeac5c8f4899ef7c,
|
|
|
|
0xff8d9848747c956a)
|
2018-05-01 23:45:06 +00:00
|
|
|
}
|