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) {
|
2019-11-22 16:17:23 +00:00
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 5})
|
2018-05-01 23:45:06 +00:00
|
|
|
return TunnelRegistration{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelRegistration(s *capnp.Segment) (TunnelRegistration, error) {
|
2019-11-22 16:17:23 +00:00
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 5})
|
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)
|
|
|
|
}
|
|
|
|
|
2019-11-18 19:56:04 +00:00
|
|
|
func (s TunnelRegistration) RetryAfterSeconds() uint16 {
|
|
|
|
return s.Struct.Uint16(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) SetRetryAfterSeconds(v uint16) {
|
|
|
|
s.Struct.SetUint16(2, v)
|
|
|
|
}
|
|
|
|
|
2019-11-22 16:17:23 +00:00
|
|
|
func (s TunnelRegistration) EventDigest() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(4)
|
|
|
|
return []byte(p.Data()), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) HasEventDigest() bool {
|
|
|
|
p, err := s.Struct.Ptr(4)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelRegistration) SetEventDigest(v []byte) error {
|
|
|
|
return s.Struct.SetData(4, v)
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:45:06 +00:00
|
|
|
// 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) {
|
2019-11-22 16:17:23 +00:00
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 5}, 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)
|
|
|
|
}
|
|
|
|
|
2019-11-18 19:56:04 +00:00
|
|
|
func (s RegistrationOptions) NumPreviousAttempts() uint8 {
|
|
|
|
return s.Struct.Uint8(4)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s RegistrationOptions) SetNumPreviousAttempts(v uint8) {
|
|
|
|
s.Struct.SetUint8(4, 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))}
|
|
|
|
}
|
2019-11-18 19:56:04 +00:00
|
|
|
func (c TunnelServer) ReconnectTunnel(ctx context.Context, params func(TunnelServer_reconnectTunnel_Params) error, opts ...capnp.CallOption) TunnelServer_reconnectTunnel_Results_Promise {
|
|
|
|
if c.Client == nil {
|
|
|
|
return TunnelServer_reconnectTunnel_Results_Promise{Pipeline: capnp.NewPipeline(capnp.ErrorAnswer(capnp.ErrNullClient))}
|
|
|
|
}
|
|
|
|
call := &capnp.Call{
|
|
|
|
Ctx: ctx,
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 5,
|
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
|
|
|
MethodName: "reconnectTunnel",
|
|
|
|
},
|
|
|
|
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_reconnectTunnel_Params{Struct: s}) }
|
|
|
|
}
|
|
|
|
return TunnelServer_reconnectTunnel_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
|
2019-11-18 19:56:04 +00:00
|
|
|
|
|
|
|
ReconnectTunnel(TunnelServer_reconnectTunnel) 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 19:56:04 +00:00
|
|
|
methods = make([]server.Method, 0, 6)
|
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},
|
|
|
|
})
|
|
|
|
|
2019-11-18 19:56:04 +00:00
|
|
|
methods = append(methods, server.Method{
|
|
|
|
Method: capnp.Method{
|
|
|
|
InterfaceID: 0xea58385c65416035,
|
|
|
|
MethodID: 5,
|
|
|
|
InterfaceName: "tunnelrpc/tunnelrpc.capnp:TunnelServer",
|
|
|
|
MethodName: "reconnectTunnel",
|
|
|
|
},
|
|
|
|
Impl: func(c context.Context, opts capnp.CallOptions, p, r capnp.Struct) error {
|
|
|
|
call := TunnelServer_reconnectTunnel{c, opts, TunnelServer_reconnectTunnel_Params{Struct: p}, TunnelServer_reconnectTunnel_Results{Struct: r}}
|
|
|
|
return s.ReconnectTunnel(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
|
|
|
|
}
|
|
|
|
|
2019-11-18 19:56:04 +00:00
|
|
|
// TunnelServer_reconnectTunnel holds the arguments for a server call to TunnelServer.reconnectTunnel.
|
|
|
|
type TunnelServer_reconnectTunnel struct {
|
|
|
|
Ctx context.Context
|
|
|
|
Options capnp.CallOptions
|
|
|
|
Params TunnelServer_reconnectTunnel_Params
|
|
|
|
Results TunnelServer_reconnectTunnel_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-11-18 19:56:04 +00:00
|
|
|
type TunnelServer_reconnectTunnel_Params struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_reconnectTunnel_Params_TypeID is the unique identifier for the type TunnelServer_reconnectTunnel_Params.
|
|
|
|
const TunnelServer_reconnectTunnel_Params_TypeID = 0xa353a3556df74984
|
|
|
|
|
|
|
|
func NewTunnelServer_reconnectTunnel_Params(s *capnp.Segment) (TunnelServer_reconnectTunnel_Params, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return TunnelServer_reconnectTunnel_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_reconnectTunnel_Params(s *capnp.Segment) (TunnelServer_reconnectTunnel_Params, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3})
|
|
|
|
return TunnelServer_reconnectTunnel_Params{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_reconnectTunnel_Params(msg *capnp.Message) (TunnelServer_reconnectTunnel_Params, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_reconnectTunnel_Params{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) String() string {
|
|
|
|
str, _ := text.Marshal(0xa353a3556df74984, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) Jwt() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return []byte(p.Data()), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) HasJwt() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) SetJwt(v []byte) error {
|
|
|
|
return s.Struct.SetData(0, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) Hostname() (string, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.Text(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) HasHostname() bool {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) HostnameBytes() ([]byte, error) {
|
|
|
|
p, err := s.Struct.Ptr(1)
|
|
|
|
return p.TextBytes(), err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) SetHostname(v string) error {
|
|
|
|
return s.Struct.SetText(1, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) Options() (RegistrationOptions, error) {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return RegistrationOptions{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params) HasOptions() bool {
|
|
|
|
p, err := s.Struct.Ptr(2)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_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_reconnectTunnel_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_reconnectTunnel_Params_List is a list of TunnelServer_reconnectTunnel_Params.
|
|
|
|
type TunnelServer_reconnectTunnel_Params_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_reconnectTunnel_Params creates a new list of TunnelServer_reconnectTunnel_Params.
|
|
|
|
func NewTunnelServer_reconnectTunnel_Params_List(s *capnp.Segment, sz int32) (TunnelServer_reconnectTunnel_Params_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 3}, sz)
|
|
|
|
return TunnelServer_reconnectTunnel_Params_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params_List) At(i int) TunnelServer_reconnectTunnel_Params {
|
|
|
|
return TunnelServer_reconnectTunnel_Params{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params_List) Set(i int, v TunnelServer_reconnectTunnel_Params) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Params_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xa353a3556df74984, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_reconnectTunnel_Params_Promise is a wrapper for a TunnelServer_reconnectTunnel_Params promised by a client call.
|
|
|
|
type TunnelServer_reconnectTunnel_Params_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_reconnectTunnel_Params_Promise) Struct() (TunnelServer_reconnectTunnel_Params, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_reconnectTunnel_Params{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_reconnectTunnel_Params_Promise) Options() RegistrationOptions_Promise {
|
|
|
|
return RegistrationOptions_Promise{Pipeline: p.Pipeline.GetPipeline(2)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type TunnelServer_reconnectTunnel_Results struct{ capnp.Struct }
|
|
|
|
|
|
|
|
// TunnelServer_reconnectTunnel_Results_TypeID is the unique identifier for the type TunnelServer_reconnectTunnel_Results.
|
|
|
|
const TunnelServer_reconnectTunnel_Results_TypeID = 0xd4d18de97bb12de3
|
|
|
|
|
|
|
|
func NewTunnelServer_reconnectTunnel_Results(s *capnp.Segment) (TunnelServer_reconnectTunnel_Results, error) {
|
|
|
|
st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_reconnectTunnel_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRootTunnelServer_reconnectTunnel_Results(s *capnp.Segment) (TunnelServer_reconnectTunnel_Results, error) {
|
|
|
|
st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1})
|
|
|
|
return TunnelServer_reconnectTunnel_Results{st}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadRootTunnelServer_reconnectTunnel_Results(msg *capnp.Message) (TunnelServer_reconnectTunnel_Results, error) {
|
|
|
|
root, err := msg.RootPtr()
|
|
|
|
return TunnelServer_reconnectTunnel_Results{root.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Results) String() string {
|
|
|
|
str, _ := text.Marshal(0xd4d18de97bb12de3, s.Struct)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Results) Result() (TunnelRegistration, error) {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return TunnelRegistration{Struct: p.Struct()}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Results) HasResult() bool {
|
|
|
|
p, err := s.Struct.Ptr(0)
|
|
|
|
return p.IsValid() || err != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_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_reconnectTunnel_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_reconnectTunnel_Results_List is a list of TunnelServer_reconnectTunnel_Results.
|
|
|
|
type TunnelServer_reconnectTunnel_Results_List struct{ capnp.List }
|
|
|
|
|
|
|
|
// NewTunnelServer_reconnectTunnel_Results creates a new list of TunnelServer_reconnectTunnel_Results.
|
|
|
|
func NewTunnelServer_reconnectTunnel_Results_List(s *capnp.Segment, sz int32) (TunnelServer_reconnectTunnel_Results_List, error) {
|
|
|
|
l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 1}, sz)
|
|
|
|
return TunnelServer_reconnectTunnel_Results_List{l}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Results_List) At(i int) TunnelServer_reconnectTunnel_Results {
|
|
|
|
return TunnelServer_reconnectTunnel_Results{s.List.Struct(i)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Results_List) Set(i int, v TunnelServer_reconnectTunnel_Results) error {
|
|
|
|
return s.List.SetStruct(i, v.Struct)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s TunnelServer_reconnectTunnel_Results_List) String() string {
|
|
|
|
str, _ := text.MarshalList(0xd4d18de97bb12de3, s.List)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelServer_reconnectTunnel_Results_Promise is a wrapper for a TunnelServer_reconnectTunnel_Results promised by a client call.
|
|
|
|
type TunnelServer_reconnectTunnel_Results_Promise struct{ *capnp.Pipeline }
|
|
|
|
|
|
|
|
func (p TunnelServer_reconnectTunnel_Results_Promise) Struct() (TunnelServer_reconnectTunnel_Results, error) {
|
|
|
|
s, err := p.Pipeline.Struct()
|
|
|
|
return TunnelServer_reconnectTunnel_Results{s}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p TunnelServer_reconnectTunnel_Results_Promise) Result() TunnelRegistration_Promise {
|
|
|
|
return TunnelRegistration_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-22 16:17:23 +00:00
|
|
|
const schema_db8274f9144abc7e = "x\xda\xc4Z{\x90\x15ev?\xa7\xfb^\x9a\x81\x19" +
|
|
|
|
"\xeem{,f\x11\x18\x9d\xd2(\xac\x10\x15It\x12" +
|
|
|
|
"w^\xc0\xce\xb0<n\xcf\x1dPG6Es\xef7" +
|
|
|
|
"3=\xf4\xed\xbet\xf7\x05\x86\xe0\"\x14\xc6u\"+" +
|
|
|
|
"\xb8\x92\x12\x17\xb6\x045>\xc2f\xc1\x85\x8a\x1a\xb44" +
|
|
|
|
"\xd9\x8d\x98\xdd\xc4\xdd\x0d\xa4dc\xd5\xba\"\x95\xc2\x92" +
|
|
|
|
"2\xbe\xca\x98R;u\xbe~\xce\x9dq\x00\xb3U\xf9" +
|
|
|
|
"\x07n\x9d>\xdf\xe3\xbc~\xe7\xf1\xcdu\x83\x93Z\x85" +
|
|
|
|
"\xeb\xd3Wg\x00\xd4C\xe9\x09\x1e\x9b\xfd\xebM\x8f\\" +
|
|
|
|
"\xf5\x8f\xdb@\x9d\x86\xe8}\xe7\xd8\xe2\xfaO\xddm\xff" +
|
|
|
|
"\x01iQ\x02\x987$mBe\x87$\x01(\xf7J" +
|
|
|
|
"\xff\x09\xe8\xa5\xff\xe0\xe4\x9b\xe57\xa5\xed OK2" +
|
|
|
|
"\x0b\xc4\\\x9a\xb8\x18\x95\xad\x13\x89\xf9\xce\x89\x1b\x00\xbd" +
|
|
|
|
"?-\xbdv\xe0\x8fv\xff\x9c\x98\x85\x98\x19p\xde\x99" +
|
|
|
|
"\x89\x9bP\xf9\x94s~<q9\xa0\xf7\xe1\x83\x0d\x7f" +
|
|
|
|
"\xb3\xff_\x8f\xdf\x0d\xf2\xd5\x08\xc1\xd9u5\xbfA@" +
|
|
|
|
"\xe5\x8a\x9a\x1f\x03z\xffv\xdd\xe6\xb7W\x7f\xb8\xeb\xbb" +
|
|
|
|
"#\xcfM\x11\xdf\xcb5\xc3\xa8\x9c\xaa\x91@\xf4\xf6\xdd" +
|
|
|
|
"Q\xff\xcf\xf8\xc8'\xbb@\xbe\x86\xb6A\xfa|\xb4f" +
|
|
|
|
"\x92\x00\xa8\xfcKM\x0b\xa0\xf7\xda\xb5\xc7\x9e\xdf\xf9\x93" +
|
|
|
|
"{~\x00\xea\xd5\x88\xe0\xaf?W\xf3?t\x0eN\"" +
|
|
|
|
"\x86\xf7\x1f\xfbz\xeaG\xaf]\xf2C\xce\xe0=\xfe\xab" +
|
|
|
|
"[\x9f\xd9\xf9\x93\xcb\xdf\x81\x15\x82\x84)\x80y\xb3&" +
|
|
|
|
"\xd9\xc4;\x7f\x12\xe9\xe2\xc1\xd7_XV\xda\xf5\xf0\x01" +
|
|
|
|
"\xff\xd2|\xafK'\x0b\x02\xa4\xbc\xed]\x9f\x94V<" +
|
|
|
|
"\x9a\x7f4)N\xcd\xe4\x0fh\xe9\x8c\xc9$\xce\xfc\xdf" +
|
|
|
|
"\x9cY\xbe\xf4\x99\xbe'\x02\x06~\xd1\xe7&?C\x0c" +
|
|
|
|
"\xafN\xa6{\x1c\xdf\x90\xbd\xaf\xed\x8f\xef\x7f\xa2\xda*" +
|
|
|
|
"i~\xe3\xc9\xc3\xa8\xa4k\xe9'\xd6\xde\x8a\x80\xde\xf0" +
|
|
|
|
"\xcd/\xac\xfc\xf0/\x9c\xa7A\x9d\x83)\xef\xa7\xf7\x9e" +
|
|
|
|
"^?\xeb\xa9\xbeW\xf8\xb5E2c\xdd\xafi\xeb\x1d" +
|
|
|
|
"utv\xdd\xdf\xcf^v\xff\xdbK\x0e\xd3\xd6\x09\xb3" +
|
|
|
|
"\xf8\x97\x983\xa5\x19\x95[\xa6\x90en\x9eB\xdc\xbf" +
|
|
|
|
"\xbcv\xe5\x8b/\x1e\xea?\\}\x11n\xf1SS\x16" +
|
|
|
|
"\xa3r\x8es\x9f\xe5\xdc\x97v\xe1\x1b/]\x9f\xfa\xbb" +
|
|
|
|
"\xa4\xe0\xfb2\xef\xd0\xe1\x873\xc4p\xc7gG\xffa" +
|
|
|
|
"\xe1{'\x9eKZH\xcd\x0ad!\x96%\xc1{\x87" +
|
|
|
|
"\xb1\xf4Fs\xeb\x8b\xa0^\x83\xe8\x0d\xee\xde\xecv>" +
|
|
|
|
"\xb4\xc3\x83\x15(\xa1\x000oGv\x13m\xb6'K" +
|
|
|
|
"\xfe5\xe3\\{\x9d\xf9\xde\xb6\x97\xaa\x9c\x91\x9f\xfaq" +
|
|
|
|
"v1*52]--\xff\x18\xf0\x93\xa7\xef\xd9\xd9" +
|
|
|
|
"uz\xc1+\xea4LU\x0b\xbd_\xde\x84\xcaQ\xe2" +
|
|
|
|
"\x9dwXn$}F\x1a\xacb\xe7R\xff\xee\x92A" +
|
|
|
|
"T>\xbe\x84~\xbe\x7f\x09g_|\xc7\xf7\x1fH\x9f" +
|
|
|
|
"\xf9\xfe+\xd5*\xa5\xc0\x99\xf7\xb9b\xa3\"\xd7s\x97" +
|
|
|
|
"\xae\xff\xad\x00\xe8M;\xf4'\x7f\xdb^<\xf5\xf31" +
|
|
|
|
"\x82H\xb9e\xea\x07J\xd7T\xfa\xb5p*\xc9xz" +
|
|
|
|
"\xce\xe1??\xbb\xe3W'\x92\x9e\xb2\x7f*\xf7\xd8\xa3" +
|
|
|
|
"SIa\xf7|}h\xd3\xb2\xab\x86OV\x1b\x88s" +
|
|
|
|
"\x9e\x9c:\x8c\xca9\xbe\xddY\xbe\x9dpF\xfb\xda]" +
|
|
|
|
"\xff\xfe\x8d7\x12>{{\xc3[\x08)o\xd9\xca;" +
|
|
|
|
"\x06k\xee<}:y\xd0\xd2\x06n:\xad\x81\x0e:" +
|
|
|
|
"\"?\xa0\x1c\xdb\xff\xd7o\xd3AR\xb5\xba\xb76\xf4" +
|
|
|
|
"\xa2\xb2\xbb\x81~\xeejx\x82\x84\x8cbg,\xc7\xd9" +
|
|
|
|
"qY3*\xfb.\xa3{\xed\xb9\x8c\xee5\x7fu\x1b" +
|
|
|
|
"[u\xd3m\xef\x80<M\x1c\x01\x15\xa7\x88\xf3,q" +
|
|
|
|
"\xce;s\xd9=\xa8\x9c\x9b.\x01x\xdf\xeb\xef}\xf5" +
|
|
|
|
"\xfd\x8e\xfd\xffU\xbd9\x17\xe8\xe4\xf4fT\xceL\xe7" +
|
|
|
|
"\xa6\x9a\xce\xed3\xef\xfa\xbf<\xb7\xfb\xd1\x8e\xf7G\xed" +
|
|
|
|
">gf;*\xb7\xcc\xe4\xee>\xf3\x9b\x8a>\x93o" +
|
|
|
|
"\xfe\x9d\x05\xcbonz\xf9\x83\xa4&\xd4\x99<z\xd9" +
|
|
|
|
"L\xd2D\xdfM\xef~\xf3\xaa\xef\xfd\xd3\x07U\xf6\xe3" +
|
|
|
|
"\x8cw\xcf\x9c\x8d\xcan\xbe\xe3.b~o\xd1\x0fO" +
|
|
|
|
"L\xcbL\xfbh\xac8>:s\x10\x95W\x89w\xde" +
|
|
|
|
"\xcff\xdeO\x17\xbd\xed\xad\x877\xb4\xfc\xe0\xa3OH" +
|
|
|
|
".\xb1\x0a\xe7\x86.\xefEe\xc7\xe5\x1c\x8b/\xa7X" +
|
|
|
|
"Zr\xf0\xd47\x06v\x1f\xfftL\xe4\x9e\x7f\xc56" +
|
|
|
|
"T\xba\xae\xe0\x8et\x05\xa1\xd5_I{O\xdf\xf5\xdb" +
|
|
|
|
"?\xfb,)\xd5\x9c\xa6\xb7H\xaa\xb6&\x92j\xf3{" +
|
|
|
|
"{:\xef_u\xf0\x8b$\x83\xd6\xf4<1\xac\xe3\x0c" +
|
|
|
|
"Q0\x8e\xe5i\xbb\x9a\xdaQ\xd9\xdfD\xe7\xedkj" +
|
|
|
|
"\x819\x9e[1Mf\xd8\xe5T\xe1\x0f\xc3\x9f\x85\xb9" +
|
|
|
|
"\x05\xadl\x96\x9b\xdb*\xee\x003]\xbd\xa0\xb9\xac\x9b" +
|
|
|
|
"\xb58e\xcbtX\x0eQ\xcd\x8a)\x80\x14\x02\xc8\xda" +
|
|
|
|
" \x80\xbaZD\xd5\x10PF\xac'\xb4\x96u\"\x0e" +
|
|
|
|
"\x88\xa8\xba\x02\xca\x82PO\x88 \xafk\x02P\x0d\x11" +
|
|
|
|
"\xd5\x8d\x02\xa2XOx'W\x1e\x00P7\x8a\xa8n" +
|
|
|
|
"\x17\xd0+3\xbb\xa4\x99\xcc\x84\x8c\xbb\xd0\xb6\xb1\x16\x04" +
|
|
|
|
"\xac\x05\xf4l\xe6\xdaC\xda\x1a\x032,A\x96\x067" +
|
|
|
|
"\xb8X\x07\x02\xd6\x01z\x03V\xc5vV\x98.\xeaF" +
|
|
|
|
"7\xeb\xb3\x99\x83\x038\x01\x04\x9c\x008\x9ex\x1d\x96" +
|
|
|
|
"i\xb2\x82\x9b\xaf\x14\x0a\xccq\x00H\xb2\x89\x91d\xb3" +
|
|
|
|
"\x1e\x06P\xaf\x15Q\xbd)!\xd9|\x92\xecF\x11\xd5" +
|
|
|
|
"V\x01=\x87\xd9\xeb\x99\xbd\xc4\xc2\x82\xe6\xea\x96\xb9L" +
|
|
|
|
"\x13K,\xbav\xc1\xd0\x99\xe9vX\x901\xfb\xf4~" +
|
|
|
|
"\xcc\xc6\xa1\x00\x88\xd9\xf1/\xb6p\xa3\xee\xb8\xba\xd9\xdf" +
|
|
|
|
"\xc3\xe9-9\xcb\xd0\x0bCt\xbbZ\xae\xc9\x19\xcd\xb4" +
|
|
|
|
"\x87|i/\x00\x0a\xb2\xdc\x0e\xd0\xa2\xf7\x9b\x96\xcd\xbc" +
|
|
|
|
"\xa2\xee\x14H(\x10\x0b\xee\x965\x9a\xa1\x99\x05\x16\x1d" +
|
|
|
|
"4a\xf4A\xfe\x01y.\xc7\\-a\xed+s\x9a" +
|
|
|
|
"\xad\x89%G\xad\x8d\xf4\xb1\xb0\x17@] \xa2\x9aK" +
|
|
|
|
"\xe8c\xe9b\x00u\x89\x88\xeam\x09K\xafh\x07P" +
|
|
|
|
"s\"\xaa\xab\x04\xf4,[\xef\xd7\xcd\x0e\x06\xa2\x9d4" +
|
|
|
|
"\x98\xe3\x9aZ\x89\x01@\xa8\xb0-V\x99\x94\xe8`6" +
|
|
|
|
"F\xe9*M\xa5G\x0b\xd0\xc9\x0c\xc3\xba\xd5\xb2\x8d\xe2" +
|
|
|
|
"r\xff\x1c\x8b\xb4\xcdM\x19-\x93\xc6\xb0<7\x0e\xc9" +
|
|
|
|
"\xad\x17\xd8\xdc\x8a\xc3\xfcu\x15\x9b\x1b\xf2\xcan\xe6T" +
|
|
|
|
"\x0c\xd7\x01PS\x91\xf8u\xcd\x00\xeaD\x11\xd5z\x01" +
|
|
|
|
"[l\xce\x80\xd9\x18\xd4\xab\xaez>]WL\x9b\xf5" +
|
|
|
|
"\xeb\x8e\xcbl\x9f|e\x0b)\xbc\xe4$\x0f$\xff\xcb" +
|
|
|
|
"\x8a\xa8N\x17\xd0\xeb\xb7\xb5\x02\xcb1\x1bu\xab\xb8L" +
|
|
|
|
"3\xad\xbc\xc8\x0a\x98\x06\x01\xd3\xe3{\xd2\"M7X" +
|
|
|
|
"\xd1\x97nn\xa1\x91\xffO\xd1[\xeby~\xf8\xf6\xc6" +
|
|
|
|
"\xe1[\x87_xA\xfcn\x8a\xe3\xb7N\xf8\xdc\x1b\x1d" +
|
|
|
|
"\xc0u\xe2g^\x10\xc2\x14\x11\xae\x88\xea]\x14\x11\x95" +
|
|
|
|
"2\xe9\xd4\x01\xd1\xb21\x1b\xa3d\xa0\x1dV\xec'M" +
|
|
|
|
"\x9b\xd0\xc2\x0a\xa4h\xcc\x86\xd9\xdeg\x90\x8a\xd6\x00f" +
|
|
|
|
"\xe3R&Xf\xb3\xf5\xccvX\x0e2\xb6\xb5q\x08" +
|
|
|
|
"\xb3q\xd6\xaf\xd2\xfa\x94\x8b\xd5zh\xe8h\xd5\xf8\xeb" +
|
|
|
|
"mV\xf0!#X\x9ek\xf4\x8d\x96\x08\x12\xd2Q\xab" +
|
|
|
|
"\x88\xea\x92D\x90tQ\x90t\x8a\xa8\xf6$\x82Dm" +
|
|
|
|
"\x8f#\xa7\x0a\xcc~O\xb11\xe2\xea\xc1\xc5\xa3+'" +
|
|
|
|
"\xfc\x8c\\\xa0VD\xb5\x810\x98\xbe2\x97\xa2\x95N" +
|
|
|
|
"\x8b\xaa\xdb\xf3\x9f\xd6A\xff\x06\x88\x9a\x0bv\xb1\x03P" +
|
|
|
|
"m\x88\x0e\xdbC\x87=$\xa2\xfaXB?\xfbm\x00" +
|
|
|
|
"\xf5\x11\x11\xd5\x83\x02b\xa0\x9e\xa7\x0e\x00\xa8\x07ET" +
|
|
|
|
"\x9f\x15P\x16\x05\xdf\xd7\x8e\xce\xa6^HD\xf5\x17\x02" +
|
|
|
|
"\xca)\xb1\x9eJ}\xf9U\x8a\x93_\x88\xa8\xbe.\xa0" +
|
|
|
|
"\x9cN\xd5c\x1a@>\xb9\x06@=!\xa2\xfa\xe6\x97" +
|
|
|
|
"AP\xc1\xb0*\xc5>C\x83F\x9b\x15\xbb\x16Dt" +
|
|
|
|
"\xb3R\xca\xd9l\xbd\x8eV\xc5is]V\x92\xca\xae" +
|
|
|
|
"\x13f\x93\x8c\xab\xf5;8\x050'\"f\xe3\xfa\x10" +
|
|
|
|
"\x90\x88\xd1\x9eh\xb3\xe2Jf;\xbah\x99QB\xd0" +
|
|
|
|
"M\x97\x99\xee\x12\x0d\xa45\xcc\x88\xa8\xe3\x00Fw\xe0" +
|
|
|
|
"\xf6\xe4\xf4A\x04[1\xc8a?\xb9\xddt\xcf\x0b\x94" +
|
|
|
|
"\xb8pv\xecy3\xf0\x0b\"\x93\x1e\xbb\xbac\xdf\x9b" +
|
|
|
|
"!|Nd\xd2\xa4\xda\x1bCtf\xc0u\xcb\x98\x8d" +
|
|
|
|
"\xeb\xc6\xc0\xd8\x1b\xd8\x1a\xc7*\xace\x80\x84tQ\x11" +
|
|
|
|
"\x13|\x1d\x08\x90\x17D\xa3\x88\xd9\xb8\xef\xab\xf2\x14\xf1" +
|
|
|
|
"\xcb\xd2n\x0b%y\xcb\xe6Y-\x0e\x9f\x1bb!\xa2" +
|
|
|
|
"\xe8\xe9MFOk\x10=k\xe2\xfb7\x16\xb4\x8a\xc3" +
|
|
|
|
"F\xd6\x0bm}.\x88\xcc\x8e \xd2\x19\xb0*F\xb1" +
|
|
|
|
"\x9b\x81\xe4\xdaC\x88 \x8e\x0f\x9c\x0b\xac\xce\x84\xe2" +
|
|
|
|
"}7\x1e;\x17F\xa9\xb07\x99\x0a\x03\xf5\xaf \xf5" +
|
|
|
|
"\xf7\x88\xa8\x96\x05\xf4\x0c\x82\x1e\xb3\xd3\x02\xd1q\xa3\xeb" +
|
|
|
|
"\xfa\xc4\x9c\xc5\x9dS\x02\x01%@\xafRv\\\x9bi" +
|
|
|
|
"%\xc0\xc8\xdb\x88\x7f\xcaEd\x98*\xa4\xcbi\x99j" +
|
|
|
|
"\xa8\xfa\x7f\xcf\xe7\x17\x9f\x98\xfd$9\"-\x1fHd" +
|
|
|
|
"\xc9B\xb0\x1a\xf9\xf2\x0e\xcb\x94.\xba\xf4\x0a\x10\xccO" +
|
|
|
|
"\x0cs\x83DOUa\x981g\x11\xc2_)\xa2z" +
|
|
|
|
"]2c\xce!\x15]#\xa2z\xa3\x80\x12\xb3)\xf9" +
|
|
|
|
"E\xed\xbb\x7f\xe8\x16\xc7/31\x1b\xcff\xce\x7f\x9d" +
|
|
|
|
"D\x05\xae[\xe6(7\x1c3\xdb\xdc\x90\xb0kh\xc2" +
|
|
|
|
"\xa5k\x12\xd9f-\x1b\x0a\xad\xd4\xc8J\x9a\x1e\xa3Q" +
|
|
|
|
"`\xdc6\x90\xbe\x15\xf3\x8c[\xa9\x06\x19\xdd\xcf\xe7-" +
|
|
|
|
"\xbe\xb5\xe8\x92\xf5\xd1%\xef\x1c\x06P\xef\x12Q\xbd/" +
|
|
|
|
"q\xc9{\xa9\xf0\xbfOD\xf5\xa1\xc4%w\x93\x12w" +
|
|
|
|
"\x8a\xa8\xee%\xcc\x0fZ\x84=d\xe0\xbd\"\xaaO\x0a" +
|
|
|
|
"\x88)\x1f\xf2\x1f'\xc8\x7fRD\xf5\x88\xc0\x01\xbb\xb3" +
|
|
|
|
"\xad\xc321\xb8\x84\x03\x10\x15\xff\x03L\xb3\xdd5L" +
|
|
|
|
"C\xb7\xcbt\x99\xbd^C#\x84\x84-\xae^bV" +
|
|
|
|
"\xc5\x8d \xa2\xa4m\xe4\xd5\x12\x16;\xfdU\x92\xe6:" +
|
|
|
|
"X\x03\x02\xd6PD:\xcc\xee\xb0Y\x11\xc9\x1a\x9a\x91" +
|
|
|
|
"\xd3Dw\xe0B\x144\x12\xc43c\xa8\x87j\xad\xcd" +
|
|
|
|
"\"\xaa\xdf%(\xc1\xc4\x88H\xbe{\x10\x04\x8e$$" +
|
|
|
|
"\xf3\xba\xf6\xb8\xfa\xe2\x091]\xd5?\xf1\x848\x01@" +
|
|
|
|
"\xdeJ\xda\xd9.\xa2\xbaS\x08\xaf\xd6iA\x8b\x1f\xa1" +
|
|
|
|
"\xd5\xa6\x0e\xfa\x93-\x84\x9a:\x8b\xe5\x0d\xea\x05\x1d-" +
|
|
|
|
"\xb3\x87+\x0acM\x15\xacR\xd9&W\xd6-S\xad" +
|
|
|
|
"h\x86.\xbaC\xd1\xc2quA\x90\xe4\x87\xf2\xf2r" +
|
|
|
|
"#7\x16)\xe3\xc6P\x19\xca\xb7q1@~\x15\x8a" +
|
|
|
|
"\x98\x1f\xc0\xd8]\x14\x86\xed\x00\xf9\xd5D70\xf6\x18" +
|
|
|
|
"E\xc7i\x00\xf9\"\xd1\xcb\x18\xb5\x95J\x09\x9f\x06\xc8" +
|
|
|
|
"\x97\x89\xbc\x19\xe3RA\x19\xe2\xdbo$\xfav\x8c\xab" +
|
|
|
|
"\x05e+\xce\x06\xc8o&\xfaCD\x9f pM*" +
|
|
|
|
"\xbbq\x10 \xff \xd1\x1f!\xba\x94\xaeG\xde8\xa3" +
|
|
|
|
"\x0d\x90\xdfK\xf4'\x89>\xb1\xa1\x1e'\x02(\x8fs" +
|
|
|
|
"\xfacD?D\xf4\x9a\xaf\xd5c\x0d\x80\xf2#\xdc\x06" +
|
|
|
|
"\x90?H\xf4g\x89>\x09\xebq\x12\x80r\x14\x1f\x06" +
|
|
|
|
"\xc8?K\xf4\x9f\x12}\xf2\x84z\x9c\x0c\xa0\xbc\xcc\xef" +
|
|
|
|
"s\x8c\xe8\xc7\x89^\x9b\xaa\xc7Z\x00\xe5gx\x00 " +
|
|
|
|
"\x7f\x9c\xe8'0\xc2\xbb\xaeb\x12v\xc9\xdd\xf4\xb8\xec" +
|
|
|
|
"\x10-'29\x0b\xdaJ\xf4sB\xce\xcaP_\x89" +
|
|
|
|
"\x99x\xfe\x0b\x88\x19@\xaflY\xc6\xb2\x91p~\xbe" +
|
|
|
|
"\xca'p\x17\xc8XfW1\x8a?\xdf\xc9\x96X\xd0" +
|
|
|
|
"X\xd0\x8c\xaer\\\x0b9m\x15\xd7\xaa\x94\xa1\xb1\xa8" +
|
|
|
|
"\xb9\xac\x18%d\xbbb.\xb2\xadR\x0f2\xbb\xa4\x9b" +
|
|
|
|
"\x9a\x01\xd1\x97\xf1|.S\xa9\xe8\xc5h\xefq\x0b\xb8" +
|
|
|
|
"\xc8=\x85j\xf7l,7\xf7h\xfdU#\x80\xd91" +
|
|
|
|
"\xd6G\xd05\xe7\x86\x18\xea3\xc9\x90j\\\xaf\x19\x15" +
|
|
|
|
"v!\x95\xdd\xb8MEw\x8b\xdf\x94\x9c\xaf\xf7\x0c\x07" +
|
|
|
|
"V\xe7/\xcdWT\xa5Q?\xb9\x8d\x9aw\xb4\xc7\xc2" +
|
|
|
|
"F\xb2\xda\xc1\x0c\xa4S\x88\x13Xh\x92\xbe\xa0\xb7\x84" +
|
|
|
|
"F\xda;\xe1\x1c\xd1D1p\x8e\x0b\xd5D?s\xfd" +
|
|
|
|
"_]f\x9fE\xb9^\xd2J\xceW\\\xdd\xcd\x9c\xcc" +
|
|
|
|
"\x85h1\x9e\x11\x9e?\x19w\xf6\xf4\xe4\xe21\x83\xe8" +
|
|
|
|
"#\xf9u\x11x\xb5a7@\xbe\x95\xa2s\x09F:" +
|
|
|
|
"T\xba8\x88t\x12\xb9\x07\xe3\x12VQ9X\xe4\x88" +
|
|
|
|
"\xbe\x0a\xe3&G\xb9\x9d\x07y\x8c\x81\xa96\x1f\xbc\x18" +
|
|
|
|
"\xdf>\xc2:9\x8d>x\x95\xf8\xfe\x06\xd17&\xc1" +
|
|
|
|
"\xab\x82\xc3#\xc0N\x12}\xf0\xda\xcaAg;\xd1w" +
|
|
|
|
"r\xf0J\xf9\xe0\xb5\x03\x9f\x01\xc8\xef$\xfa^\x0e^" +
|
|
|
|
"i\x1f\xbc\xf6\xe0\xf3#\xc0n\xd2\x04\x1f\xbc\x1e\xe7\xfc" +
|
|
|
|
"O\x12\xfd\x08\x07\xafv\x1f\xbc\x0es\xb0;D\xf4c" +
|
|
|
|
"\x04R\x15\xdb\xc8\xbb\xb6n\x02\xf6\xc7\xb1Q(\x7f\x8b" +
|
|
|
|
"\xb1r\x1bd\x0c}=\x8b\x12KQ\xd7\x8c\x05\x15\xcd" +
|
|
|
|
"\x80\xc6\xbc\xab\x15\xd6\xc6u\xba\xe1tjf\xd1\xc1\x01" +
|
|
|
|
"m-\xa3t$%\x13\xb7k8+\x99\xad\xf7\x01\xc6" +
|
|
|
|
"\x95}T\xc8dr\x96U]\xdf\xf0\x02\x91\xd9>\xc2" +
|
|
|
|
"E\xdfJ\xda\xc6\xae\xa2\xc1:0,gD3N\x87" +
|
|
|
|
":}\xb1L\x13\xfd\x1a\xa3Go\x1cY<\x94\x83^" +
|
|
|
|
"!,BzZ\xaa\xaa\x0b\xb6\xb1\xcc\x0an\x87\x85\xa6" +
|
|
|
|
"\xab\x9b\x156j\x83\xc2@\xc5\\\xcb\x8a\x0b\xd1,X" +
|
|
|
|
"E\xdd\xec\x87QM\x8a\xf8e\xd3\x9dD\xd5\xc5\xa3\x19" +
|
|
|
|
"\x13\xafc\xf2\xacf\x108tQ\x0d!7\xc7\xad~" +
|
|
|
|
"K\x81\xafj\xb1\x99\xe6$\xba\xd4qN\x0b\xa6\x91~" +
|
|
|
|
"\x90\xf9m}\x1a zJ\xc2p\x1c/\x1f\xde\x04\x82" +
|
|
|
|
"\xfc\x94\x84\xf1+\x06\x86\x8f\x16\xf2>\x1b\x04y\xb7\x84" +
|
|
|
|
"B\xf4\xc4\x87\xe1\xf3\x9c|\xef0\x08\xf2\xdd\x12\x8a\xd1" +
|
|
|
|
"\xb3\x1b\x86\xb3ny\xa8\x1d\x04\xb9$a*z\x82\xc4" +
|
|
|
|
"pP.kT'\xdd.a:z\xcf\xc3\xf05F" +
|
|
|
|
"^\xba\x0d\x04y\xa1\xe4\x85\xed\x10\xb4\xf8b\xb4\xa2\x17" +
|
|
|
|
"\x02\x064r\xc8hE/\x9c\x0fa\xd86\x01\xb4\xe2" +
|
|
|
|
"\x96\x00\x9e[\xd1\x0b'\xa4\x90)h.k\xa5^\xd3" +
|
|
|
|
"\xff\x88\x01xC+&'\x8f\xe2\x9758c\x17\xca" +
|
|
|
|
"\xedq1\x17\x02\xf0\xd6\xe1\xb8\x96\x8b\x9a\xca\x1dO'" +
|
|
|
|
"\xeb\xe4`6\xb2g[0Y9\x92\x98\x8d\x1c\xa6\xe2" +
|
|
|
|
"\xf9\x88\x88\xea/\x85\xb82\x08}:\x1c\xd6\xa1e\x87" +
|
|
|
|
"]\xee83\xbb\xc0\xf3\x83\x1a\xb6zr\xe7\x15\xad\x01" +
|
|
|
|
"^\xe3\xa2\xbf\x95\x03q:H\x8e\xf3\xa6$\xc6y\x18" +
|
|
|
|
"\xf6\xd7\xd2\x88\xec\x91\x1c\xeeM9O\xb3\x96\xec\x16y" +
|
|
|
|
":Kq\x97\x0c\x1f/1|g\x96er\xad:\xc9" +
|
|
|
|
"\x0b;J\x0cs!T\x99\xec\"\xdb\xean\xd6\xf8\x7f" +
|
|
|
|
"I\xd6c8\x88\x7fN\x86<\xd2\x17(\xdaw01" +
|
|
|
|
"\xa73\xac\xa0#\xcc,K\x16\xf5\xe3\xe8\xca\xbfpX" +
|
|
|
|
"\x82gh1\xed?=\xda\xffhS0\\;\x96(" +
|
|
|
|
"v\x9ek\x0a\x1c\xe8\xa5D\x9f\xf6\xc2b\x00\xf5\x98?" +
|
|
|
|
"q\x0b_rN\x92\xa3\xbe.\xa2\xfav\xc2\xfd~G" +
|
|
|
|
"\x8co\x8a\xa8\xbe\x1b\xe7+\xf9,\xf5,\xef\x8a\xa8\xfe" +
|
|
|
|
"7%\xab\x94\xdf\xb3|L\xfd\xe9G\"vc\xd0?" +
|
|
|
|
"\x87\xcf<\x15;Fo\xc3\xea_\xa2\x9b\xcc\xa1\xb2\xb4" +
|
|
|
|
"j*\x12\xbe\x1d\xa1K\x98X\xb1\x09\xd8G\x02h\xd7" +
|
|
|
|
"\x82D5\x1b\x0d\x89\x90\xd9y\x8a\xe1\":\xd1\xf0\x85" +
|
|
|
|
"\xadg\xa6\xbb@\xef\x07\x899\xf1\x88c\x1c\xd5\xe6\x83" +
|
|
|
|
"@\xf2\xe3(\xa8\x0b\x12]\xfa\x81\xc4\x00+T\xac\xfa" +
|
|
|
|
"|0\x18Z\x9dP\xec\xb7I\x0b\xabDT\x07\x04\x0e" +
|
|
|
|
"6\xd6\x8arQC\x97-\xb2\xd9\xba\x0a\x93\xcc\xc2P" +
|
|
|
|
"\xdc\xadR\xbfVpV`\x99*\xe8E6kYW" +
|
|
|
|
"aI\x86\xf0\xc5\x00$\xdd*\x8ez*\x18\xa3J\xbc" +
|
|
|
|
"\x95\xad\xc9[\x85\xb5\xcc\x1d\xf1\x92R\xf5\xda\xd7\x1d?" +
|
|
|
|
"\x17D\x8f}\xdd\xc9\xc7\xbe\x00\xa2\xd6\x91\xb3\x96ET" +
|
|
|
|
"7' jh8nu\xc7.\x0b~?\x99\xfc+" +
|
|
|
|
"=xQQ,]H\xc1\x18\xfd\x1d\xceW\x9c\xc0_" +
|
|
|
|
"h}\x1f?\xe3^\xe4\xd4\x0a\"\xdc\xc0\xc4\x9fi\xd0" +
|
|
|
|
"!B\xb0\xf9\xff\x06\x00\x00\xff\xff\"\xcf\xdc\xc0"
|
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-11-18 19:56:04 +00:00
|
|
|
0xa353a3556df74984,
|
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-11-18 19:56:04 +00:00
|
|
|
0xd4d18de97bb12de3,
|
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
|
|
|
}
|