diff --git a/client/llb/exec.go b/client/llb/exec.go index ade992780eef0..743c82db7af3a 100644 --- a/client/llb/exec.go +++ b/client/llb/exec.go @@ -17,6 +17,7 @@ type Meta struct { Env EnvList Cwd string User string + Hostname string ProxyEnv *ProxyEnv ExtraHosts []HostIP Network pb.NetMode @@ -155,10 +156,11 @@ func (e *ExecOp) Marshal(c *Constraints) (digest.Digest, []byte, *pb.OpMetadata, } meta := &pb.Meta{ - Args: e.meta.Args, - Env: e.meta.Env.ToArray(), - Cwd: e.meta.Cwd, - User: e.meta.User, + Args: e.meta.Args, + Env: e.meta.Env.ToArray(), + Cwd: e.meta.Cwd, + User: e.meta.User, + Hostname: e.meta.Hostname, } if len(e.meta.ExtraHosts) > 0 { hosts := make([]*pb.HostIP, len(e.meta.ExtraHosts)) diff --git a/client/llb/meta.go b/client/llb/meta.go index 54b14c4c4257d..7a1ed5e3cca2d 100644 --- a/client/llb/meta.go +++ b/client/llb/meta.go @@ -18,6 +18,7 @@ var ( keyDir = contextKeyT("llb.exec.dir") keyEnv = contextKeyT("llb.exec.env") keyUser = contextKeyT("llb.exec.user") + keyHostname = contextKeyT("llb.exec.hostname") keyExtraHost = contextKeyT("llb.exec.extrahost") keyPlatform = contextKeyT("llb.platform") keyNetwork = contextKeyT("llb.network") @@ -99,6 +100,20 @@ func getUser(s State) string { return "" } +func hostname(str string) StateOption { + return func(s State) State { + return s.WithValue(keyHostname, str) + } +} + +func getHostname(s State) string { + v := s.Value(keyHostname) + if v != nil { + return v.(string) + } + return "" +} + func args(args ...string) StateOption { return func(s State) State { return s.WithValue(keyArgs, args) diff --git a/client/llb/state.go b/client/llb/state.go index ba8845e08692a..20762fb971668 100644 --- a/client/llb/state.go +++ b/client/llb/state.go @@ -211,6 +211,7 @@ func (s State) Run(ro ...RunOption) ExecState { Cwd: getDir(ei.State), Env: getEnv(ei.State), User: getUser(ei.State), + Hostname: getHostname(ei.State), ProxyEnv: ei.ProxyEnv, ExtraHosts: getExtraHosts(ei.State), Network: getNetwork(ei.State), @@ -278,6 +279,14 @@ func (s State) User(v string) State { return user(v)(s) } +func (s State) Hostname(v string) State { + return hostname(v)(s) +} + +func (s State) GetHostname() string { + return getHostname(s) +} + func (s State) Platform(p specs.Platform) State { return platform(p)(s) } diff --git a/executor/containerdexecutor/executor.go b/executor/containerdexecutor/executor.go index 2ca4a5850f093..b0baac5640e22 100644 --- a/executor/containerdexecutor/executor.go +++ b/executor/containerdexecutor/executor.go @@ -56,7 +56,7 @@ func (w containerdExecutor) Exec(ctx context.Context, meta executor.Meta, root c return err } - hostsFile, clean, err := oci.GetHostsFile(ctx, w.root, meta.ExtraHosts, nil) + hostsFile, clean, err := oci.GetHostsFile(ctx, w.root, meta.ExtraHosts, nil, meta.Hostname) if err != nil { return err } diff --git a/executor/executor.go b/executor/executor.go index df6d7920e54ff..bdb5bc6e18e9f 100644 --- a/executor/executor.go +++ b/executor/executor.go @@ -14,6 +14,7 @@ type Meta struct { Env []string User string Cwd string + Hostname string Tty bool ReadonlyRootFS bool ExtraHosts []HostIP diff --git a/executor/oci/hosts.go b/executor/oci/hosts.go index 3b3f86db79cbe..d90385b6030f5 100644 --- a/executor/oci/hosts.go +++ b/executor/oci/hosts.go @@ -7,6 +7,7 @@ import ( "io/ioutil" "os" "path/filepath" + "strings" "github.com/docker/docker/pkg/idtools" "github.com/moby/buildkit/executor" @@ -18,10 +19,10 @@ const hostsContent = ` ::1 localhost ip6-localhost ip6-loopback ` -func GetHostsFile(ctx context.Context, stateDir string, extraHosts []executor.HostIP, idmap *idtools.IdentityMapping) (string, func(), error) { +func GetHostsFile(ctx context.Context, stateDir string, extraHosts []executor.HostIP, idmap *idtools.IdentityMapping, hostname string) (string, func(), error) { if len(extraHosts) == 0 { _, err := g.Do(ctx, stateDir, func(ctx context.Context) (interface{}, error) { - _, _, err := makeHostsFile(stateDir, nil, idmap) + _, _, err := makeHostsFile(stateDir, nil, idmap, hostname) return nil, err }) if err != nil { @@ -29,10 +30,10 @@ func GetHostsFile(ctx context.Context, stateDir string, extraHosts []executor.Ho } return filepath.Join(stateDir, "hosts"), func() {}, nil } - return makeHostsFile(stateDir, extraHosts, idmap) + return makeHostsFile(stateDir, extraHosts, idmap, hostname) } -func makeHostsFile(stateDir string, extraHosts []executor.HostIP, idmap *idtools.IdentityMapping) (string, func(), error) { +func makeHostsFile(stateDir string, extraHosts []executor.HostIP, idmap *idtools.IdentityMapping, hostname string) (string, func(), error) { p := filepath.Join(stateDir, "hosts") if len(extraHosts) != 0 { p += "." + identity.NewID() @@ -47,7 +48,11 @@ func makeHostsFile(stateDir string, extraHosts []executor.HostIP, idmap *idtools b := &bytes.Buffer{} - if _, err := b.Write([]byte(hostsContent)); err != nil { + var hosts = hostsContent + if hostname != "" { + hosts = strings.Replace(hosts, "buildkitsandbox", hostname, 1) + } + if _, err := b.Write([]byte(hosts)); err != nil { return "", nil, err } diff --git a/executor/oci/spec_unix.go b/executor/oci/spec_unix.go index 5fe8d09e37346..4d0d8522c87fe 100644 --- a/executor/oci/spec_unix.go +++ b/executor/oci/spec_unix.go @@ -65,7 +65,11 @@ func GenerateSpec(ctx context.Context, meta executor.Meta, mounts []executor.Mou s.Process.Cwd = meta.Cwd s.Process.Rlimits = nil // reset open files limit s.Process.NoNewPrivileges = false // reset nonewprivileges + s.Hostname = "buildkitsandbox" + if meta.Hostname != "" { + s.Hostname = meta.Hostname + } s.Mounts, err = GetMounts(ctx, withProcessMode(processMode), diff --git a/executor/runcexecutor/executor.go b/executor/runcexecutor/executor.go index 26e432e61f6bd..4c8bccd7aa7ed 100644 --- a/executor/runcexecutor/executor.go +++ b/executor/runcexecutor/executor.go @@ -142,7 +142,7 @@ func (w *runcExecutor) Exec(ctx context.Context, meta executor.Meta, root cache. return err } - hostsFile, clean, err := oci.GetHostsFile(ctx, w.root, meta.ExtraHosts, w.idmap) + hostsFile, clean, err := oci.GetHostsFile(ctx, w.root, meta.ExtraHosts, w.idmap, meta.Hostname) if err != nil { return err } diff --git a/frontend/dockerfile/dockerfile2llb/convert.go b/frontend/dockerfile/dockerfile2llb/convert.go index 2077eb8a5150f..e76074ab2fff4 100644 --- a/frontend/dockerfile/dockerfile2llb/convert.go +++ b/frontend/dockerfile/dockerfile2llb/convert.go @@ -315,6 +315,9 @@ func Dockerfile2LLB(ctx context.Context, dt []byte, opt ConvertOpt) (*llb.State, k, v := parseKeyValue(env) d.state = d.state.AddEnv(k, v) } + if val, ok := opt.BuildArgs["HOSTNAME"]; ok { + d.state = d.state.Hostname(val) + } if d.image.Config.WorkingDir != "" { if err = dispatchWorkdir(d, &instructions.WorkdirCommand{Path: d.image.Config.WorkingDir}, false, nil); err != nil { return nil, nil, err diff --git a/solver/llbsolver/ops/exec.go b/solver/llbsolver/ops/exec.go index 324b442d6bc5e..39f1992acc984 100644 --- a/solver/llbsolver/ops/exec.go +++ b/solver/llbsolver/ops/exec.go @@ -693,6 +693,7 @@ func (e *execOp) Exec(ctx context.Context, inputs []solver.Result) ([]solver.Res Env: e.op.Meta.Env, Cwd: e.op.Meta.Cwd, User: e.op.Meta.User, + Hostname: e.op.Meta.Hostname, ReadonlyRootFS: readonlyRootFS, ExtraHosts: extraHosts, NetMode: e.op.Network, diff --git a/solver/pb/ops.pb.go b/solver/pb/ops.pb.go index dbb0f21f3b1de..5d9243947d7b8 100644 --- a/solver/pb/ops.pb.go +++ b/solver/pb/ops.pb.go @@ -54,7 +54,7 @@ func (x NetMode) String() string { return proto.EnumName(NetMode_name, int32(x)) } func (NetMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{0} + return fileDescriptor_ops_0b387df4eb2619c7, []int{0} } type SecurityMode int32 @@ -77,7 +77,7 @@ func (x SecurityMode) String() string { return proto.EnumName(SecurityMode_name, int32(x)) } func (SecurityMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{1} + return fileDescriptor_ops_0b387df4eb2619c7, []int{1} } // MountType defines a type of a mount from a supported set @@ -110,7 +110,7 @@ func (x MountType) String() string { return proto.EnumName(MountType_name, int32(x)) } func (MountType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{2} + return fileDescriptor_ops_0b387df4eb2619c7, []int{2} } // CacheSharingOpt defines different sharing modes for cache mount @@ -140,7 +140,7 @@ func (x CacheSharingOpt) String() string { return proto.EnumName(CacheSharingOpt_name, int32(x)) } func (CacheSharingOpt) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{3} + return fileDescriptor_ops_0b387df4eb2619c7, []int{3} } // Op represents a vertex of the LLB DAG. @@ -161,7 +161,7 @@ func (m *Op) Reset() { *m = Op{} } func (m *Op) String() string { return proto.CompactTextString(m) } func (*Op) ProtoMessage() {} func (*Op) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{0} + return fileDescriptor_ops_0b387df4eb2619c7, []int{0} } func (m *Op) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -391,7 +391,7 @@ func (m *Platform) Reset() { *m = Platform{} } func (m *Platform) String() string { return proto.CompactTextString(m) } func (*Platform) ProtoMessage() {} func (*Platform) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{1} + return fileDescriptor_ops_0b387df4eb2619c7, []int{1} } func (m *Platform) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -463,7 +463,7 @@ func (m *Input) Reset() { *m = Input{} } func (m *Input) String() string { return proto.CompactTextString(m) } func (*Input) ProtoMessage() {} func (*Input) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{2} + return fileDescriptor_ops_0b387df4eb2619c7, []int{2} } func (m *Input) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -500,7 +500,7 @@ func (m *ExecOp) Reset() { *m = ExecOp{} } func (m *ExecOp) String() string { return proto.CompactTextString(m) } func (*ExecOp) ProtoMessage() {} func (*ExecOp) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{3} + return fileDescriptor_ops_0b387df4eb2619c7, []int{3} } func (m *ExecOp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -563,13 +563,14 @@ type Meta struct { User string `protobuf:"bytes,4,opt,name=user,proto3" json:"user,omitempty"` ProxyEnv *ProxyEnv `protobuf:"bytes,5,opt,name=proxy_env,json=proxyEnv,proto3" json:"proxy_env,omitempty"` ExtraHosts []*HostIP `protobuf:"bytes,6,rep,name=extraHosts,proto3" json:"extraHosts,omitempty"` + Hostname string `protobuf:"bytes,7,opt,name=hostname,proto3" json:"hostname,omitempty"` } func (m *Meta) Reset() { *m = Meta{} } func (m *Meta) String() string { return proto.CompactTextString(m) } func (*Meta) ProtoMessage() {} func (*Meta) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{4} + return fileDescriptor_ops_0b387df4eb2619c7, []int{4} } func (m *Meta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -636,6 +637,13 @@ func (m *Meta) GetExtraHosts() []*HostIP { return nil } +func (m *Meta) GetHostname() string { + if m != nil { + return m.Hostname + } + return "" +} + // Mount specifies how to mount an input Op as a filesystem. type Mount struct { Input InputIndex `protobuf:"varint,1,opt,name=input,proto3,customtype=InputIndex" json:"input"` @@ -653,7 +661,7 @@ func (m *Mount) Reset() { *m = Mount{} } func (m *Mount) String() string { return proto.CompactTextString(m) } func (*Mount) ProtoMessage() {} func (*Mount) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{5} + return fileDescriptor_ops_0b387df4eb2619c7, []int{5} } func (m *Mount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -739,7 +747,7 @@ func (m *CacheOpt) Reset() { *m = CacheOpt{} } func (m *CacheOpt) String() string { return proto.CompactTextString(m) } func (*CacheOpt) ProtoMessage() {} func (*CacheOpt) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{6} + return fileDescriptor_ops_0b387df4eb2619c7, []int{6} } func (m *CacheOpt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -797,7 +805,7 @@ func (m *SecretOpt) Reset() { *m = SecretOpt{} } func (m *SecretOpt) String() string { return proto.CompactTextString(m) } func (*SecretOpt) ProtoMessage() {} func (*SecretOpt) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{7} + return fileDescriptor_ops_0b387df4eb2619c7, []int{7} } func (m *SecretOpt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -876,7 +884,7 @@ func (m *SSHOpt) Reset() { *m = SSHOpt{} } func (m *SSHOpt) String() string { return proto.CompactTextString(m) } func (*SSHOpt) ProtoMessage() {} func (*SSHOpt) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{8} + return fileDescriptor_ops_0b387df4eb2619c7, []int{8} } func (m *SSHOpt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -949,7 +957,7 @@ func (m *SourceOp) Reset() { *m = SourceOp{} } func (m *SourceOp) String() string { return proto.CompactTextString(m) } func (*SourceOp) ProtoMessage() {} func (*SourceOp) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{9} + return fileDescriptor_ops_0b387df4eb2619c7, []int{9} } func (m *SourceOp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1001,7 +1009,7 @@ func (m *BuildOp) Reset() { *m = BuildOp{} } func (m *BuildOp) String() string { return proto.CompactTextString(m) } func (*BuildOp) ProtoMessage() {} func (*BuildOp) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{10} + return fileDescriptor_ops_0b387df4eb2619c7, []int{10} } func (m *BuildOp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1056,7 +1064,7 @@ func (m *BuildInput) Reset() { *m = BuildInput{} } func (m *BuildInput) String() string { return proto.CompactTextString(m) } func (*BuildInput) ProtoMessage() {} func (*BuildInput) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{11} + return fileDescriptor_ops_0b387df4eb2619c7, []int{11} } func (m *BuildInput) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1097,7 +1105,7 @@ func (m *OpMetadata) Reset() { *m = OpMetadata{} } func (m *OpMetadata) String() string { return proto.CompactTextString(m) } func (*OpMetadata) ProtoMessage() {} func (*OpMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{12} + return fileDescriptor_ops_0b387df4eb2619c7, []int{12} } func (m *OpMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1158,7 +1166,7 @@ func (m *ExportCache) Reset() { *m = ExportCache{} } func (m *ExportCache) String() string { return proto.CompactTextString(m) } func (*ExportCache) ProtoMessage() {} func (*ExportCache) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{13} + return fileDescriptor_ops_0b387df4eb2619c7, []int{13} } func (m *ExportCache) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1201,7 +1209,7 @@ func (m *ProxyEnv) Reset() { *m = ProxyEnv{} } func (m *ProxyEnv) String() string { return proto.CompactTextString(m) } func (*ProxyEnv) ProtoMessage() {} func (*ProxyEnv) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{14} + return fileDescriptor_ops_0b387df4eb2619c7, []int{14} } func (m *ProxyEnv) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1263,7 +1271,7 @@ func (m *WorkerConstraints) Reset() { *m = WorkerConstraints{} } func (m *WorkerConstraints) String() string { return proto.CompactTextString(m) } func (*WorkerConstraints) ProtoMessage() {} func (*WorkerConstraints) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{15} + return fileDescriptor_ops_0b387df4eb2619c7, []int{15} } func (m *WorkerConstraints) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1308,7 +1316,7 @@ func (m *Definition) Reset() { *m = Definition{} } func (m *Definition) String() string { return proto.CompactTextString(m) } func (*Definition) ProtoMessage() {} func (*Definition) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{16} + return fileDescriptor_ops_0b387df4eb2619c7, []int{16} } func (m *Definition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1356,7 +1364,7 @@ func (m *HostIP) Reset() { *m = HostIP{} } func (m *HostIP) String() string { return proto.CompactTextString(m) } func (*HostIP) ProtoMessage() {} func (*HostIP) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{17} + return fileDescriptor_ops_0b387df4eb2619c7, []int{17} } func (m *HostIP) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1403,7 +1411,7 @@ func (m *FileOp) Reset() { *m = FileOp{} } func (m *FileOp) String() string { return proto.CompactTextString(m) } func (*FileOp) ProtoMessage() {} func (*FileOp) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{18} + return fileDescriptor_ops_0b387df4eb2619c7, []int{18} } func (m *FileOp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1451,7 +1459,7 @@ func (m *FileAction) Reset() { *m = FileAction{} } func (m *FileAction) String() string { return proto.CompactTextString(m) } func (*FileAction) ProtoMessage() {} func (*FileAction) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{19} + return fileDescriptor_ops_0b387df4eb2619c7, []int{19} } func (m *FileAction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1676,7 +1684,7 @@ func (m *FileActionCopy) Reset() { *m = FileActionCopy{} } func (m *FileActionCopy) String() string { return proto.CompactTextString(m) } func (*FileActionCopy) ProtoMessage() {} func (*FileActionCopy) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{20} + return fileDescriptor_ops_0b387df4eb2619c7, []int{20} } func (m *FileActionCopy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1795,7 +1803,7 @@ func (m *FileActionMkFile) Reset() { *m = FileActionMkFile{} } func (m *FileActionMkFile) String() string { return proto.CompactTextString(m) } func (*FileActionMkFile) ProtoMessage() {} func (*FileActionMkFile) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{21} + return fileDescriptor_ops_0b387df4eb2619c7, []int{21} } func (m *FileActionMkFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1872,7 +1880,7 @@ func (m *FileActionMkDir) Reset() { *m = FileActionMkDir{} } func (m *FileActionMkDir) String() string { return proto.CompactTextString(m) } func (*FileActionMkDir) ProtoMessage() {} func (*FileActionMkDir) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{22} + return fileDescriptor_ops_0b387df4eb2619c7, []int{22} } func (m *FileActionMkDir) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1945,7 +1953,7 @@ func (m *FileActionRm) Reset() { *m = FileActionRm{} } func (m *FileActionRm) String() string { return proto.CompactTextString(m) } func (*FileActionRm) ProtoMessage() {} func (*FileActionRm) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{23} + return fileDescriptor_ops_0b387df4eb2619c7, []int{23} } func (m *FileActionRm) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2000,7 +2008,7 @@ func (m *ChownOpt) Reset() { *m = ChownOpt{} } func (m *ChownOpt) String() string { return proto.CompactTextString(m) } func (*ChownOpt) ProtoMessage() {} func (*ChownOpt) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{24} + return fileDescriptor_ops_0b387df4eb2619c7, []int{24} } func (m *ChownOpt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2050,7 +2058,7 @@ func (m *UserOpt) Reset() { *m = UserOpt{} } func (m *UserOpt) String() string { return proto.CompactTextString(m) } func (*UserOpt) ProtoMessage() {} func (*UserOpt) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{25} + return fileDescriptor_ops_0b387df4eb2619c7, []int{25} } func (m *UserOpt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2190,7 +2198,7 @@ func (m *NamedUserOpt) Reset() { *m = NamedUserOpt{} } func (m *NamedUserOpt) String() string { return proto.CompactTextString(m) } func (*NamedUserOpt) ProtoMessage() {} func (*NamedUserOpt) Descriptor() ([]byte, []int) { - return fileDescriptor_ops_0b9d2e829935306b, []int{26} + return fileDescriptor_ops_0b387df4eb2619c7, []int{26} } func (m *NamedUserOpt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2589,6 +2597,12 @@ func (m *Meta) MarshalTo(dAtA []byte) (int, error) { i += n } } + if len(m.Hostname) > 0 { + dAtA[i] = 0x3a + i++ + i = encodeVarintOps(dAtA, i, uint64(len(m.Hostname))) + i += copy(dAtA[i:], m.Hostname) + } return i, nil } @@ -3931,6 +3945,10 @@ func (m *Meta) Size() (n int) { n += 1 + l + sovOps(uint64(l)) } } + l = len(m.Hostname) + if l > 0 { + n += 1 + l + sovOps(uint64(l)) + } return n } @@ -5445,6 +5463,35 @@ func (m *Meta) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Hostname", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOps + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthOps + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Hostname = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOps(dAtA[iNdEx:]) @@ -9230,132 +9277,133 @@ var ( ErrIntOverflowOps = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("ops.proto", fileDescriptor_ops_0b9d2e829935306b) } - -var fileDescriptor_ops_0b9d2e829935306b = []byte{ - // 1978 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x5f, 0x6f, 0x1b, 0xc7, - 0x11, 0xd7, 0x1d, 0xff, 0xde, 0x50, 0x92, 0xd9, 0x8d, 0x93, 0xb2, 0xaa, 0x2b, 0x29, 0x97, 0x34, - 0x90, 0x65, 0x5b, 0x02, 0x14, 0x20, 0x09, 0xf2, 0x50, 0x54, 0xfc, 0x63, 0x88, 0x49, 0x2c, 0x0a, - 0x4b, 0xdb, 0xe9, 0x9b, 0x71, 0xbc, 0x5b, 0x52, 0x07, 0xf2, 0x6e, 0x0f, 0x7b, 0x4b, 0x5b, 0x7c, - 0xe9, 0x83, 0x3f, 0x41, 0x80, 0x02, 0x7d, 0x6b, 0x81, 0xbe, 0x14, 0xe8, 0x87, 0xe8, 0x7b, 0x1e, - 0x83, 0xa2, 0x0f, 0x69, 0x1f, 0xd2, 0xc2, 0xfe, 0x22, 0xc5, 0xec, 0xee, 0xf1, 0x8e, 0xb4, 0x02, - 0xdb, 0x68, 0xd1, 0x27, 0xce, 0xcd, 0xfc, 0x76, 0x76, 0x76, 0x66, 0x76, 0x66, 0x96, 0xe0, 0xf0, - 0x24, 0x3d, 0x4a, 0x04, 0x97, 0x9c, 0xd8, 0xc9, 0x68, 0xe7, 0xde, 0x24, 0x94, 0x97, 0xf3, 0xd1, - 0x91, 0xcf, 0xa3, 0xe3, 0x09, 0x9f, 0xf0, 0x63, 0x25, 0x1a, 0xcd, 0xc7, 0xea, 0x4b, 0x7d, 0x28, - 0x4a, 0x2f, 0x71, 0xff, 0x64, 0x83, 0x3d, 0x48, 0xc8, 0xfb, 0x50, 0x0d, 0xe3, 0x64, 0x2e, 0xd3, - 0x96, 0xb5, 0x5f, 0x3a, 0x68, 0x9c, 0x38, 0x47, 0xc9, 0xe8, 0xa8, 0x8f, 0x1c, 0x6a, 0x04, 0x64, - 0x1f, 0xca, 0xec, 0x8a, 0xf9, 0x2d, 0x7b, 0xdf, 0x3a, 0x68, 0x9c, 0x00, 0x02, 0x7a, 0x57, 0xcc, - 0x1f, 0x24, 0x67, 0x1b, 0x54, 0x49, 0xc8, 0x47, 0x50, 0x4d, 0xf9, 0x5c, 0xf8, 0xac, 0x55, 0x52, - 0x98, 0x4d, 0xc4, 0x0c, 0x15, 0x47, 0xa1, 0x8c, 0x14, 0x35, 0x8d, 0xc3, 0x19, 0x6b, 0x95, 0x73, - 0x4d, 0xf7, 0xc3, 0x99, 0xc6, 0x28, 0x09, 0xf9, 0x00, 0x2a, 0xa3, 0x79, 0x38, 0x0b, 0x5a, 0x15, - 0x05, 0x69, 0x20, 0xa4, 0x8d, 0x0c, 0x85, 0xd1, 0x32, 0x72, 0x00, 0xf5, 0x64, 0xe6, 0xc9, 0x31, - 0x17, 0x51, 0x0b, 0xf2, 0x0d, 0x2f, 0x0c, 0x8f, 0x2e, 0xa5, 0xe4, 0x53, 0x68, 0xf8, 0x3c, 0x4e, - 0xa5, 0xf0, 0xc2, 0x58, 0xa6, 0xad, 0x86, 0x02, 0xbf, 0x8b, 0xe0, 0xaf, 0xb9, 0x98, 0x32, 0xd1, - 0xc9, 0x85, 0xb4, 0x88, 0x6c, 0x97, 0xc1, 0xe6, 0x89, 0xfb, 0x7b, 0x0b, 0xea, 0x99, 0x56, 0xe2, - 0xc2, 0xe6, 0xa9, 0xf0, 0x2f, 0x43, 0xc9, 0x7c, 0x39, 0x17, 0xac, 0x65, 0xed, 0x5b, 0x07, 0x0e, - 0x5d, 0xe1, 0x91, 0x6d, 0xb0, 0x07, 0x43, 0xe5, 0x28, 0x87, 0xda, 0x83, 0x21, 0x69, 0x41, 0xed, - 0xb1, 0x27, 0x42, 0x2f, 0x96, 0xca, 0x33, 0x0e, 0xcd, 0x3e, 0xc9, 0x2d, 0x70, 0x06, 0xc3, 0xc7, - 0x4c, 0xa4, 0x21, 0x8f, 0x95, 0x3f, 0x1c, 0x9a, 0x33, 0xc8, 0x2e, 0xc0, 0x60, 0x78, 0x9f, 0x79, - 0xa8, 0x34, 0x6d, 0x55, 0xf6, 0x4b, 0x07, 0x0e, 0x2d, 0x70, 0xdc, 0xdf, 0x42, 0x45, 0xc5, 0x88, - 0x7c, 0x01, 0xd5, 0x20, 0x9c, 0xb0, 0x54, 0x6a, 0x73, 0xda, 0x27, 0xdf, 0xfe, 0xb0, 0xb7, 0xf1, - 0xcf, 0x1f, 0xf6, 0x0e, 0x0b, 0xc9, 0xc0, 0x13, 0x16, 0xfb, 0x3c, 0x96, 0x5e, 0x18, 0x33, 0x91, - 0x1e, 0x4f, 0xf8, 0x3d, 0xbd, 0xe4, 0xa8, 0xab, 0x7e, 0xa8, 0xd1, 0x40, 0x6e, 0x43, 0x25, 0x8c, - 0x03, 0x76, 0xa5, 0xec, 0x2f, 0xb5, 0xdf, 0x31, 0xaa, 0x1a, 0x83, 0xb9, 0x4c, 0xe6, 0xb2, 0x8f, - 0x22, 0xaa, 0x11, 0xee, 0x1f, 0x2d, 0xa8, 0xea, 0x1c, 0x20, 0xb7, 0xa0, 0x1c, 0x31, 0xe9, 0xa9, - 0xfd, 0x1b, 0x27, 0x75, 0xf4, 0xed, 0x03, 0x26, 0x3d, 0xaa, 0xb8, 0x98, 0x5e, 0x11, 0x9f, 0xa3, - 0xef, 0xed, 0x3c, 0xbd, 0x1e, 0x20, 0x87, 0x1a, 0x01, 0xf9, 0x25, 0xd4, 0x62, 0x26, 0x9f, 0x71, - 0x31, 0x55, 0x3e, 0xda, 0xd6, 0x41, 0x3f, 0x67, 0xf2, 0x01, 0x0f, 0x18, 0xcd, 0x64, 0xe4, 0x2e, - 0xd4, 0x53, 0xe6, 0xcf, 0x45, 0x28, 0x17, 0xca, 0x5f, 0xdb, 0x27, 0x4d, 0x95, 0x65, 0x86, 0xa7, - 0xc0, 0x4b, 0x84, 0xfb, 0x17, 0x0b, 0xca, 0x68, 0x06, 0x21, 0x50, 0xf6, 0xc4, 0x44, 0x67, 0xb7, - 0x43, 0x15, 0x4d, 0x9a, 0x50, 0x62, 0xf1, 0x53, 0x65, 0x91, 0x43, 0x91, 0x44, 0x8e, 0xff, 0x2c, - 0x30, 0x31, 0x42, 0x12, 0xd7, 0xcd, 0x53, 0x26, 0x4c, 0x68, 0x14, 0x4d, 0x6e, 0x83, 0x93, 0x08, - 0x7e, 0xb5, 0x78, 0x82, 0xab, 0x2b, 0x85, 0xc4, 0x43, 0x66, 0x2f, 0x7e, 0x4a, 0xeb, 0x89, 0xa1, - 0xc8, 0x21, 0x00, 0xbb, 0x92, 0xc2, 0x3b, 0xe3, 0xa9, 0x4c, 0x5b, 0x55, 0x75, 0x76, 0x95, 0xef, - 0xc8, 0xe8, 0x5f, 0xd0, 0x82, 0xd4, 0xfd, 0x9b, 0x0d, 0x15, 0xe5, 0x12, 0x72, 0x80, 0x11, 0x48, - 0xe6, 0x3a, 0x98, 0xa5, 0x36, 0x31, 0x11, 0x00, 0x15, 0xeb, 0x65, 0x00, 0x30, 0xee, 0x3b, 0xe8, - 0x8d, 0x19, 0xf3, 0x25, 0x17, 0x26, 0xdd, 0x96, 0xdf, 0x68, 0x7a, 0x80, 0x19, 0xa1, 0x4f, 0xa3, - 0x68, 0x72, 0x07, 0xaa, 0x5c, 0x85, 0x51, 0x1d, 0xe8, 0x47, 0x82, 0x6b, 0x20, 0xa8, 0x5c, 0x30, - 0x2f, 0xe0, 0xf1, 0x6c, 0xa1, 0x8e, 0x59, 0xa7, 0xcb, 0x6f, 0x72, 0x07, 0x1c, 0x15, 0xb7, 0x87, - 0x8b, 0x84, 0xb5, 0xaa, 0x2a, 0x0e, 0x5b, 0xcb, 0x98, 0x22, 0x93, 0xe6, 0x72, 0xbc, 0xa8, 0xbe, - 0xe7, 0x5f, 0xb2, 0x41, 0x22, 0x5b, 0x37, 0x73, 0x7f, 0x75, 0x0c, 0x8f, 0x2e, 0xa5, 0xa8, 0x36, - 0x65, 0xbe, 0x60, 0x12, 0xa1, 0xef, 0x2a, 0xe8, 0x96, 0x09, 0xaf, 0x66, 0xd2, 0x5c, 0x4e, 0x5c, - 0xa8, 0x0e, 0x87, 0x67, 0x88, 0x7c, 0x2f, 0x2f, 0x24, 0x9a, 0x43, 0x8d, 0xc4, 0xed, 0x43, 0x3d, - 0xdb, 0x06, 0x6f, 0x65, 0xbf, 0x6b, 0xee, 0xab, 0xdd, 0xef, 0x92, 0x7b, 0x50, 0x4b, 0x2f, 0x3d, - 0x11, 0xc6, 0x13, 0xe5, 0xbb, 0xed, 0x93, 0x77, 0x96, 0x56, 0x0d, 0x35, 0x1f, 0x35, 0x65, 0x18, - 0x97, 0x83, 0xb3, 0x34, 0xe3, 0x15, 0x5d, 0x4d, 0x28, 0xcd, 0xc3, 0x40, 0xe9, 0xd9, 0xa2, 0x48, - 0x22, 0x67, 0x12, 0xea, 0x5c, 0xda, 0xa2, 0x48, 0x62, 0x40, 0x22, 0x1e, 0xe8, 0xb2, 0xb7, 0x45, - 0x15, 0x8d, 0x3e, 0xe6, 0x89, 0x0c, 0x79, 0xec, 0xcd, 0x32, 0x1f, 0x67, 0xdf, 0xee, 0x2c, 0x3b, - 0xdf, 0xff, 0x65, 0xb7, 0xdf, 0x59, 0x50, 0xcf, 0x6a, 0x35, 0x16, 0x9e, 0x30, 0x60, 0xb1, 0x0c, - 0xc7, 0x21, 0x13, 0x66, 0xe3, 0x02, 0x87, 0xdc, 0x83, 0x8a, 0x27, 0xa5, 0xc8, 0xae, 0xf3, 0x4f, - 0x8b, 0x85, 0xfe, 0xe8, 0x14, 0x25, 0xbd, 0x58, 0x8a, 0x05, 0xd5, 0xa8, 0x9d, 0xcf, 0x00, 0x72, - 0x26, 0xda, 0x3a, 0x65, 0x0b, 0xa3, 0x15, 0x49, 0x72, 0x13, 0x2a, 0x4f, 0xbd, 0xd9, 0x9c, 0x99, - 0x1c, 0xd6, 0x1f, 0x9f, 0xdb, 0x9f, 0x59, 0xee, 0x5f, 0x6d, 0xa8, 0x99, 0xc2, 0x4f, 0xee, 0x42, - 0x4d, 0x15, 0x7e, 0x63, 0xd1, 0xf5, 0x17, 0x23, 0x83, 0x90, 0xe3, 0x65, 0x47, 0x2b, 0xd8, 0x68, - 0x54, 0xe9, 0xce, 0x66, 0x6c, 0xcc, 0xfb, 0x5b, 0x29, 0x60, 0x63, 0xd3, 0xba, 0xb6, 0x11, 0xdd, - 0x65, 0xe3, 0x30, 0x0e, 0xd1, 0x3f, 0x14, 0x45, 0xe4, 0x6e, 0x76, 0xea, 0xb2, 0xd2, 0xf8, 0x5e, - 0x51, 0xe3, 0xab, 0x87, 0xee, 0x43, 0xa3, 0xb0, 0xcd, 0x35, 0xa7, 0xfe, 0xb0, 0x78, 0x6a, 0xb3, - 0xa5, 0x52, 0xa7, 0xfb, 0x6e, 0xee, 0x85, 0xff, 0xc2, 0x7f, 0x9f, 0x00, 0xe4, 0x2a, 0xdf, 0xbc, - 0xb0, 0xb8, 0xcf, 0x4b, 0x00, 0x83, 0x04, 0x4b, 0x67, 0xe0, 0xa9, 0xfa, 0xbd, 0x19, 0x4e, 0x62, - 0x2e, 0xd8, 0x13, 0x75, 0x55, 0xd5, 0xfa, 0x3a, 0x6d, 0x68, 0x9e, 0xba, 0x31, 0xe4, 0x14, 0x1a, - 0x01, 0x4b, 0x7d, 0x11, 0xaa, 0x84, 0x32, 0x4e, 0xdf, 0xc3, 0x33, 0xe5, 0x7a, 0x8e, 0xba, 0x39, - 0x42, 0xfb, 0xaa, 0xb8, 0x86, 0x9c, 0xc0, 0x26, 0xbb, 0x4a, 0xb8, 0x90, 0x66, 0x17, 0x3d, 0x1f, - 0xdc, 0xd0, 0x93, 0x06, 0xf2, 0xd5, 0x4e, 0xb4, 0xc1, 0xf2, 0x0f, 0xe2, 0x41, 0xd9, 0xf7, 0x12, - 0xdd, 0x1c, 0x1b, 0x27, 0xad, 0xb5, 0xfd, 0x3a, 0x5e, 0xa2, 0x9d, 0xd6, 0xfe, 0x18, 0xcf, 0xfa, - 0xfc, 0x5f, 0x7b, 0x77, 0x0a, 0x1d, 0x31, 0xe2, 0xa3, 0xc5, 0xb1, 0xca, 0x97, 0x69, 0x28, 0x8f, - 0xe7, 0x32, 0x9c, 0x1d, 0x7b, 0x49, 0x88, 0xea, 0x70, 0x61, 0xbf, 0x4b, 0x95, 0xea, 0x9d, 0x5f, - 0x41, 0x73, 0xdd, 0xee, 0xb7, 0x89, 0xc1, 0xce, 0xa7, 0xe0, 0x2c, 0xed, 0x78, 0xdd, 0xc2, 0x7a, - 0x31, 0x78, 0x1f, 0x40, 0xa3, 0x70, 0x6e, 0x04, 0x3e, 0x56, 0x40, 0xed, 0x7d, 0xfd, 0xe1, 0x3e, - 0xc7, 0xe1, 0x24, 0xeb, 0x37, 0xbf, 0x00, 0xb8, 0x94, 0x32, 0x79, 0xa2, 0x1a, 0x90, 0xd9, 0xc4, - 0x41, 0x8e, 0x42, 0x90, 0x3d, 0x68, 0xe0, 0x47, 0x6a, 0xe4, 0xda, 0x52, 0xb5, 0x22, 0xd5, 0x80, - 0x9f, 0x83, 0x33, 0x5e, 0x2e, 0xd7, 0x8d, 0xa3, 0x3e, 0xce, 0x56, 0xff, 0x0c, 0xea, 0x31, 0x37, - 0x32, 0xdd, 0x0f, 0x6b, 0x31, 0x57, 0x22, 0xf7, 0x0e, 0xfc, 0xe4, 0x95, 0x49, 0x8a, 0xbc, 0x07, - 0xd5, 0x71, 0x38, 0x93, 0xea, 0xba, 0x62, 0x8b, 0x35, 0x5f, 0xee, 0x3f, 0x2c, 0x80, 0xfc, 0x6a, - 0xa1, 0x47, 0xf0, 0xde, 0x21, 0x66, 0x53, 0xdf, 0xb3, 0x19, 0xd4, 0x23, 0x13, 0x41, 0x93, 0x47, - 0xb7, 0x56, 0xaf, 0xe3, 0x51, 0x16, 0x60, 0x1d, 0xdb, 0x13, 0x13, 0xdb, 0xb7, 0x99, 0x76, 0x96, - 0x3b, 0xec, 0x7c, 0x09, 0x5b, 0x2b, 0xea, 0xde, 0xf0, 0xa6, 0xe6, 0x59, 0x56, 0x0c, 0xd9, 0x5d, - 0xa8, 0xea, 0xd6, 0x8e, 0xf5, 0x17, 0x29, 0xa3, 0x46, 0xd1, 0xaa, 0x8e, 0x5f, 0x64, 0x73, 0x61, - 0xff, 0xc2, 0x3d, 0x81, 0xaa, 0x1e, 0x7c, 0xc9, 0x01, 0xd4, 0x3c, 0x1f, 0x8f, 0x96, 0x95, 0xab, - 0xed, 0x6c, 0x2a, 0x3e, 0x55, 0x6c, 0x9a, 0x89, 0xdd, 0xbf, 0xdb, 0x00, 0x39, 0xff, 0x2d, 0x66, - 0x85, 0xcf, 0x61, 0x3b, 0x65, 0x3e, 0x8f, 0x03, 0x4f, 0x2c, 0x94, 0xd4, 0x0c, 0x78, 0xd7, 0x2d, - 0x59, 0x43, 0x16, 0xe6, 0x86, 0xd2, 0xeb, 0xe7, 0x86, 0x03, 0x28, 0xfb, 0x3c, 0x59, 0x98, 0xeb, - 0x4b, 0x56, 0x0f, 0xd2, 0xe1, 0xc9, 0x02, 0xc7, 0x7c, 0x44, 0x90, 0x23, 0xa8, 0x46, 0x53, 0xf5, - 0x14, 0xd0, 0x63, 0xd4, 0xcd, 0x55, 0xec, 0x83, 0x29, 0xd2, 0xf8, 0x70, 0xd0, 0x28, 0x72, 0x07, - 0x2a, 0xd1, 0x34, 0x08, 0x85, 0x9a, 0x38, 0x1a, 0xba, 0x5f, 0x17, 0xe1, 0xdd, 0x50, 0xe0, 0xf3, - 0x40, 0x61, 0x88, 0x0b, 0xb6, 0x88, 0x5a, 0x35, 0x85, 0x6c, 0xae, 0x79, 0x33, 0x3a, 0xdb, 0xa0, - 0xb6, 0x88, 0xda, 0x75, 0xa8, 0x6a, 0xbf, 0xba, 0x7f, 0x2e, 0xc1, 0xf6, 0xaa, 0x95, 0x98, 0x07, - 0xa9, 0xf0, 0xb3, 0x3c, 0x48, 0x85, 0xbf, 0x1c, 0xa9, 0xec, 0xc2, 0x48, 0xe5, 0x42, 0x85, 0x3f, - 0x8b, 0x99, 0x28, 0xbe, 0x79, 0x3a, 0x97, 0xfc, 0x59, 0x8c, 0xc3, 0x83, 0x16, 0xad, 0xf4, 0xe2, - 0x8a, 0xe9, 0xc5, 0x1f, 0xc2, 0xd6, 0x98, 0xcf, 0x66, 0xfc, 0xd9, 0x70, 0x11, 0xcd, 0xc2, 0x78, - 0x6a, 0x1a, 0xf2, 0x2a, 0x93, 0x1c, 0xc0, 0x8d, 0x20, 0x14, 0x68, 0x4e, 0x87, 0xc7, 0x92, 0xc5, - 0x6a, 0x8a, 0x44, 0xdc, 0x3a, 0x9b, 0x7c, 0x01, 0xfb, 0x9e, 0x94, 0x2c, 0x4a, 0xe4, 0xa3, 0x38, - 0xf1, 0xfc, 0x69, 0x97, 0xfb, 0xea, 0x3e, 0x46, 0x89, 0x27, 0xc3, 0x51, 0x38, 0xc3, 0x81, 0xb9, - 0xa6, 0x96, 0xbe, 0x16, 0x47, 0x3e, 0x82, 0x6d, 0x5f, 0x30, 0x4f, 0xb2, 0x2e, 0x4b, 0xe5, 0x85, - 0x27, 0x2f, 0x5b, 0x75, 0xb5, 0x72, 0x8d, 0x8b, 0x67, 0xf0, 0xd0, 0xda, 0xaf, 0xc3, 0x59, 0xe0, - 0x7b, 0x22, 0x68, 0x39, 0xfa, 0x0c, 0x2b, 0x4c, 0x72, 0x04, 0x44, 0x31, 0x7a, 0x51, 0x22, 0x17, - 0x4b, 0x28, 0x28, 0xe8, 0x35, 0x12, 0x7c, 0x13, 0xc9, 0x30, 0x62, 0xa9, 0xf4, 0xa2, 0x44, 0xbd, - 0xd5, 0x4a, 0x34, 0x67, 0xb8, 0xdf, 0x58, 0xd0, 0x5c, 0x4f, 0x11, 0x74, 0x70, 0x82, 0x66, 0x9a, - 0xcb, 0x86, 0xf4, 0xd2, 0xe9, 0x76, 0xc1, 0xe9, 0x18, 0x40, 0xac, 0x2a, 0x18, 0xab, 0x4d, 0xaa, - 0xe8, 0x3c, 0x80, 0xe5, 0x1f, 0x0f, 0xe0, 0x8a, 0x49, 0x95, 0x75, 0x93, 0xfe, 0x60, 0xc1, 0x8d, - 0xb5, 0x34, 0x7c, 0x63, 0x8b, 0xf6, 0xa1, 0x11, 0x79, 0x53, 0x76, 0xe1, 0x09, 0x15, 0xdc, 0x92, +func init() { proto.RegisterFile("ops.proto", fileDescriptor_ops_0b387df4eb2619c7) } + +var fileDescriptor_ops_0b387df4eb2619c7 = []byte{ + // 1992 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x4f, 0x6f, 0x1b, 0xc7, + 0x15, 0xd7, 0x2e, 0xff, 0xee, 0xa3, 0x24, 0xb3, 0x13, 0x27, 0x65, 0x55, 0x57, 0x52, 0x36, 0x69, + 0x20, 0xcb, 0xb6, 0x04, 0x28, 0x40, 0x12, 0xe4, 0x50, 0x54, 0xfc, 0x63, 0x88, 0x49, 0x4c, 0x0a, + 0x43, 0xdb, 0xe9, 0xcd, 0x58, 0xee, 0x0e, 0xa9, 0x05, 0xb9, 0x3b, 0x8b, 0xd9, 0xa1, 0x2d, 0x5e, + 0x7a, 0xf0, 0x27, 0x08, 0x50, 0xa0, 0xb7, 0x16, 0xe8, 0xa5, 0xdf, 0xa2, 0xc7, 0x02, 0x39, 0x06, + 0x45, 0x0f, 0x69, 0x0f, 0x69, 0x61, 0x7f, 0x91, 0xe2, 0xcd, 0xcc, 0x72, 0x97, 0xb2, 0x02, 0xdb, + 0x68, 0xd1, 0x13, 0xdf, 0xbe, 0xf7, 0x9b, 0x37, 0x6f, 0xde, 0x9f, 0x79, 0x6f, 0x08, 0x0e, 0x4f, + 0xd2, 0xa3, 0x44, 0x70, 0xc9, 0x89, 0x9d, 0x8c, 0x77, 0xee, 0x4d, 0x43, 0x79, 0xb1, 0x18, 0x1f, + 0xf9, 0x3c, 0x3a, 0x9e, 0xf2, 0x29, 0x3f, 0x56, 0xa2, 0xf1, 0x62, 0xa2, 0xbe, 0xd4, 0x87, 0xa2, + 0xf4, 0x12, 0xf7, 0x4f, 0x36, 0xd8, 0xc3, 0x84, 0xbc, 0x0f, 0xd5, 0x30, 0x4e, 0x16, 0x32, 0x6d, + 0x59, 0xfb, 0xa5, 0x83, 0xc6, 0x89, 0x73, 0x94, 0x8c, 0x8f, 0xfa, 0xc8, 0xa1, 0x46, 0x40, 0xf6, + 0xa1, 0xcc, 0x2e, 0x99, 0xdf, 0xb2, 0xf7, 0xad, 0x83, 0xc6, 0x09, 0x20, 0xa0, 0x77, 0xc9, 0xfc, + 0x61, 0x72, 0xb6, 0x41, 0x95, 0x84, 0x7c, 0x04, 0xd5, 0x94, 0x2f, 0x84, 0xcf, 0x5a, 0x25, 0x85, + 0xd9, 0x44, 0xcc, 0x48, 0x71, 0x14, 0xca, 0x48, 0x51, 0xd3, 0x24, 0x9c, 0xb3, 0x56, 0x39, 0xd7, + 0x74, 0x3f, 0x9c, 0x6b, 0x8c, 0x92, 0x90, 0x0f, 0xa0, 0x32, 0x5e, 0x84, 0xf3, 0xa0, 0x55, 0x51, + 0x90, 0x06, 0x42, 0xda, 0xc8, 0x50, 0x18, 0x2d, 0x23, 0x07, 0x50, 0x4f, 0xe6, 0x9e, 0x9c, 0x70, + 0x11, 0xb5, 0x20, 0xdf, 0xf0, 0xdc, 0xf0, 0xe8, 0x4a, 0x4a, 0x3e, 0x85, 0x86, 0xcf, 0xe3, 0x54, + 0x0a, 0x2f, 0x8c, 0x65, 0xda, 0x6a, 0x28, 0xf0, 0xbb, 0x08, 0xfe, 0x9a, 0x8b, 0x19, 0x13, 0x9d, + 0x5c, 0x48, 0x8b, 0xc8, 0x76, 0x19, 0x6c, 0x9e, 0xb8, 0xbf, 0xb7, 0xa0, 0x9e, 0x69, 0x25, 0x2e, + 0x6c, 0x9e, 0x0a, 0xff, 0x22, 0x94, 0xcc, 0x97, 0x0b, 0xc1, 0x5a, 0xd6, 0xbe, 0x75, 0xe0, 0xd0, + 0x35, 0x1e, 0xd9, 0x06, 0x7b, 0x38, 0x52, 0x8e, 0x72, 0xa8, 0x3d, 0x1c, 0x91, 0x16, 0xd4, 0x1e, + 0x7b, 0x22, 0xf4, 0x62, 0xa9, 0x3c, 0xe3, 0xd0, 0xec, 0x93, 0xdc, 0x02, 0x67, 0x38, 0x7a, 0xcc, + 0x44, 0x1a, 0xf2, 0x58, 0xf9, 0xc3, 0xa1, 0x39, 0x83, 0xec, 0x02, 0x0c, 0x47, 0xf7, 0x99, 0x87, + 0x4a, 0xd3, 0x56, 0x65, 0xbf, 0x74, 0xe0, 0xd0, 0x02, 0xc7, 0xfd, 0x2d, 0x54, 0x54, 0x8c, 0xc8, + 0x17, 0x50, 0x0d, 0xc2, 0x29, 0x4b, 0xa5, 0x36, 0xa7, 0x7d, 0xf2, 0xed, 0x0f, 0x7b, 0x1b, 0xff, + 0xfc, 0x61, 0xef, 0xb0, 0x90, 0x0c, 0x3c, 0x61, 0xb1, 0xcf, 0x63, 0xe9, 0x85, 0x31, 0x13, 0xe9, + 0xf1, 0x94, 0xdf, 0xd3, 0x4b, 0x8e, 0xba, 0xea, 0x87, 0x1a, 0x0d, 0xe4, 0x36, 0x54, 0xc2, 0x38, + 0x60, 0x97, 0xca, 0xfe, 0x52, 0xfb, 0x1d, 0xa3, 0xaa, 0x31, 0x5c, 0xc8, 0x64, 0x21, 0xfb, 0x28, + 0xa2, 0x1a, 0xe1, 0xfe, 0xd1, 0x82, 0xaa, 0xce, 0x01, 0x72, 0x0b, 0xca, 0x11, 0x93, 0x9e, 0xda, + 0xbf, 0x71, 0x52, 0x47, 0xdf, 0x3e, 0x60, 0xd2, 0xa3, 0x8a, 0x8b, 0xe9, 0x15, 0xf1, 0x05, 0xfa, + 0xde, 0xce, 0xd3, 0xeb, 0x01, 0x72, 0xa8, 0x11, 0x90, 0x5f, 0x42, 0x2d, 0x66, 0xf2, 0x19, 0x17, + 0x33, 0xe5, 0xa3, 0x6d, 0x1d, 0xf4, 0x01, 0x93, 0x0f, 0x78, 0xc0, 0x68, 0x26, 0x23, 0x77, 0xa1, + 0x9e, 0x32, 0x7f, 0x21, 0x42, 0xb9, 0x54, 0xfe, 0xda, 0x3e, 0x69, 0xaa, 0x2c, 0x33, 0x3c, 0x05, + 0x5e, 0x21, 0xdc, 0xbf, 0x5a, 0x50, 0x46, 0x33, 0x08, 0x81, 0xb2, 0x27, 0xa6, 0x3a, 0xbb, 0x1d, + 0xaa, 0x68, 0xd2, 0x84, 0x12, 0x8b, 0x9f, 0x2a, 0x8b, 0x1c, 0x8a, 0x24, 0x72, 0xfc, 0x67, 0x81, + 0x89, 0x11, 0x92, 0xb8, 0x6e, 0x91, 0x32, 0x61, 0x42, 0xa3, 0x68, 0x72, 0x1b, 0x9c, 0x44, 0xf0, + 0xcb, 0xe5, 0x13, 0x5c, 0x5d, 0x29, 0x24, 0x1e, 0x32, 0x7b, 0xf1, 0x53, 0x5a, 0x4f, 0x0c, 0x45, + 0x0e, 0x01, 0xd8, 0xa5, 0x14, 0xde, 0x19, 0x4f, 0x65, 0xda, 0xaa, 0xaa, 0xb3, 0xab, 0x7c, 0x47, + 0x46, 0xff, 0x9c, 0x16, 0xa4, 0x64, 0x07, 0xea, 0x17, 0x3c, 0x95, 0xb1, 0x17, 0xb1, 0x56, 0x4d, + 0x6d, 0xb7, 0xfa, 0x76, 0xff, 0x66, 0x43, 0x45, 0xb9, 0x8b, 0x1c, 0x60, 0x74, 0x92, 0x85, 0x0e, + 0x74, 0xa9, 0x4d, 0x4c, 0x74, 0x40, 0xe5, 0xc1, 0x2a, 0x38, 0x98, 0x13, 0x3b, 0xe8, 0xa9, 0x39, + 0xf3, 0x25, 0x17, 0x26, 0x15, 0x57, 0xdf, 0x78, 0xac, 0x00, 0xb3, 0x45, 0x9f, 0x54, 0xd1, 0xe4, + 0x0e, 0x54, 0xb9, 0x0a, 0xb1, 0x3a, 0xec, 0x8f, 0x04, 0xde, 0x40, 0x50, 0xb9, 0x60, 0x5e, 0xc0, + 0xe3, 0xf9, 0x52, 0xb9, 0xa0, 0x4e, 0x57, 0xdf, 0xe4, 0x0e, 0x38, 0x2a, 0xa6, 0x0f, 0x97, 0x09, + 0x6b, 0x55, 0x55, 0x8c, 0xb6, 0x56, 0xf1, 0x46, 0x26, 0xcd, 0xe5, 0x58, 0xc4, 0xbe, 0xe7, 0x5f, + 0xb0, 0x61, 0x22, 0x5b, 0x37, 0x73, 0x5f, 0x76, 0x0c, 0x8f, 0xae, 0xa4, 0xa8, 0x36, 0x65, 0xbe, + 0x60, 0x12, 0xa1, 0xef, 0x2a, 0xe8, 0x96, 0x09, 0xbd, 0x66, 0xd2, 0x5c, 0x4e, 0x5c, 0xa8, 0x8e, + 0x46, 0x67, 0x88, 0x7c, 0x2f, 0xbf, 0x64, 0x34, 0x87, 0x1a, 0x89, 0xdb, 0x87, 0x7a, 0xb6, 0x0d, + 0x56, 0x6c, 0xbf, 0x6b, 0x6a, 0xd9, 0xee, 0x77, 0xc9, 0x3d, 0xa8, 0xa5, 0x17, 0x9e, 0x08, 0xe3, + 0xa9, 0xf2, 0xdd, 0xf6, 0xc9, 0x3b, 0x2b, 0xab, 0x46, 0x9a, 0x8f, 0x9a, 0x32, 0x8c, 0xcb, 0xc1, + 0x59, 0x99, 0xf1, 0x8a, 0xae, 0x26, 0x94, 0x16, 0x61, 0xa0, 0xf4, 0x6c, 0x51, 0x24, 0x91, 0x33, + 0x0d, 0x75, 0x9e, 0x6d, 0x51, 0x24, 0x31, 0x20, 0x11, 0x0f, 0xf4, 0x95, 0xb8, 0x45, 0x15, 0x8d, + 0x3e, 0xe6, 0x89, 0x0c, 0x79, 0xec, 0xcd, 0x33, 0x1f, 0x67, 0xdf, 0xee, 0x3c, 0x3b, 0xdf, 0xff, + 0x65, 0xb7, 0xdf, 0x59, 0x50, 0xcf, 0xee, 0x71, 0xbc, 0x94, 0xc2, 0x80, 0xc5, 0x32, 0x9c, 0x84, + 0x4c, 0x98, 0x8d, 0x0b, 0x1c, 0x72, 0x0f, 0x2a, 0x9e, 0x94, 0x22, 0x2b, 0xf5, 0x9f, 0x16, 0x9b, + 0xc0, 0xd1, 0x29, 0x4a, 0x7a, 0xb1, 0x14, 0x4b, 0xaa, 0x51, 0x3b, 0x9f, 0x01, 0xe4, 0x4c, 0xb4, + 0x75, 0xc6, 0x96, 0x46, 0x2b, 0x92, 0xe4, 0x26, 0x54, 0x9e, 0x7a, 0xf3, 0x05, 0x33, 0x39, 0xac, + 0x3f, 0x3e, 0xb7, 0x3f, 0xb3, 0xdc, 0xbf, 0xd8, 0x50, 0x33, 0x4d, 0x81, 0xdc, 0x85, 0x9a, 0x6a, + 0x0a, 0xc6, 0xa2, 0xeb, 0x0b, 0x23, 0x83, 0x90, 0xe3, 0x55, 0xb7, 0x2b, 0xd8, 0x68, 0x54, 0xe9, + 0xae, 0x67, 0x6c, 0xcc, 0x7b, 0x5f, 0x29, 0x60, 0x13, 0xd3, 0xd6, 0xb6, 0x11, 0xdd, 0x65, 0x93, + 0x30, 0x0e, 0xd1, 0x3f, 0x14, 0x45, 0xe4, 0x6e, 0x76, 0xea, 0xb2, 0xd2, 0xf8, 0x5e, 0x51, 0xe3, + 0xab, 0x87, 0xee, 0x43, 0xa3, 0xb0, 0xcd, 0x35, 0xa7, 0xfe, 0xb0, 0x78, 0x6a, 0xb3, 0xa5, 0x52, + 0xa7, 0x7b, 0x72, 0xee, 0x85, 0xff, 0xc2, 0x7f, 0x9f, 0x00, 0xe4, 0x2a, 0xdf, 0xfc, 0x62, 0x71, + 0x9f, 0x97, 0x00, 0x86, 0x09, 0x5e, 0xab, 0x81, 0xa7, 0xee, 0xf6, 0xcd, 0x70, 0x1a, 0x73, 0xc1, + 0x9e, 0xa8, 0x52, 0x55, 0xeb, 0xeb, 0xb4, 0xa1, 0x79, 0xaa, 0x62, 0xc8, 0x29, 0x34, 0x02, 0x96, + 0xfa, 0x22, 0x54, 0x09, 0x65, 0x9c, 0xbe, 0x87, 0x67, 0xca, 0xf5, 0x1c, 0x75, 0x73, 0x84, 0xf6, + 0x55, 0x71, 0x0d, 0x39, 0x81, 0x4d, 0x76, 0x99, 0x70, 0x21, 0xcd, 0x2e, 0x7a, 0x76, 0xb8, 0xa1, + 0xa7, 0x10, 0xe4, 0xab, 0x9d, 0x68, 0x83, 0xe5, 0x1f, 0xc4, 0x83, 0xb2, 0xef, 0x25, 0xba, 0x71, + 0x36, 0x4e, 0x5a, 0x57, 0xf6, 0xeb, 0x78, 0x89, 0x76, 0x5a, 0xfb, 0x63, 0x3c, 0xeb, 0xf3, 0x7f, + 0xed, 0xdd, 0x29, 0x74, 0xcb, 0x88, 0x8f, 0x97, 0xc7, 0x2a, 0x5f, 0x66, 0xa1, 0x3c, 0x5e, 0xc8, + 0x70, 0x7e, 0xec, 0x25, 0x21, 0xaa, 0xc3, 0x85, 0xfd, 0x2e, 0x55, 0xaa, 0x77, 0x7e, 0x05, 0xcd, + 0xab, 0x76, 0xbf, 0x4d, 0x0c, 0x76, 0x3e, 0x05, 0x67, 0x65, 0xc7, 0xeb, 0x16, 0xd6, 0x8b, 0xc1, + 0xfb, 0x00, 0x1a, 0x85, 0x73, 0x23, 0xf0, 0xb1, 0x02, 0x6a, 0xef, 0xeb, 0x0f, 0xf7, 0x39, 0x0e, + 0x2e, 0x59, 0x2f, 0xfa, 0x05, 0xc0, 0x85, 0x94, 0xc9, 0x13, 0xd5, 0x9c, 0xcc, 0x26, 0x0e, 0x72, + 0x14, 0x82, 0xec, 0x41, 0x03, 0x3f, 0x52, 0x23, 0xd7, 0x96, 0xaa, 0x15, 0xa9, 0x06, 0xfc, 0x1c, + 0x9c, 0xc9, 0x6a, 0xb9, 0x6e, 0x1c, 0xf5, 0x49, 0xb6, 0xfa, 0x67, 0x50, 0x8f, 0xb9, 0x91, 0xe9, + 0x5e, 0x59, 0x8b, 0xb9, 0x12, 0xb9, 0x77, 0xe0, 0x27, 0xaf, 0x4c, 0x59, 0xe4, 0x3d, 0xa8, 0x4e, + 0xc2, 0xb9, 0x54, 0xe5, 0x8a, 0xed, 0xd7, 0x7c, 0xb9, 0xff, 0xb0, 0x00, 0xf2, 0xd2, 0x42, 0x8f, + 0x60, 0xdd, 0x21, 0x66, 0x53, 0xd7, 0xd9, 0x1c, 0xea, 0x91, 0x89, 0xa0, 0xc9, 0xa3, 0x5b, 0xeb, + 0xe5, 0x78, 0x94, 0x05, 0x58, 0xc7, 0xf6, 0xc4, 0xc4, 0xf6, 0x6d, 0x26, 0xa1, 0xd5, 0x0e, 0x3b, + 0x5f, 0xc2, 0xd6, 0x9a, 0xba, 0x37, 0xac, 0xd4, 0x3c, 0xcb, 0x8a, 0x21, 0xbb, 0x0b, 0x55, 0xdd, + 0xf6, 0xf1, 0xfe, 0x45, 0xca, 0xa8, 0x51, 0xb4, 0xba, 0xc7, 0xcf, 0xb3, 0x99, 0xb1, 0x7f, 0xee, + 0x9e, 0x40, 0x55, 0x0f, 0xc5, 0xe4, 0x00, 0x6a, 0x9e, 0x8f, 0x47, 0xcb, 0xae, 0xab, 0xed, 0x6c, + 0x62, 0x3e, 0x55, 0x6c, 0x9a, 0x89, 0xdd, 0xbf, 0xdb, 0x00, 0x39, 0xff, 0x2d, 0x66, 0x85, 0xcf, + 0x61, 0x3b, 0x65, 0x3e, 0x8f, 0x03, 0x4f, 0x2c, 0x95, 0xd4, 0x0c, 0x7f, 0xd7, 0x2d, 0xb9, 0x82, + 0x2c, 0xcc, 0x0d, 0xa5, 0xd7, 0xcf, 0x0d, 0x07, 0x50, 0xf6, 0x79, 0xb2, 0x34, 0xe5, 0x4b, 0xd6, + 0x0f, 0xd2, 0xe1, 0xc9, 0x12, 0x9f, 0x00, 0x88, 0x20, 0x47, 0x50, 0x8d, 0x66, 0xea, 0x99, 0xa0, + 0x47, 0xac, 0x9b, 0xeb, 0xd8, 0x07, 0x33, 0xa4, 0xf1, 0x51, 0xa1, 0x51, 0xe4, 0x0e, 0x54, 0xa2, + 0x59, 0x10, 0x0a, 0x35, 0x71, 0x34, 0x74, 0xbf, 0x2e, 0xc2, 0xbb, 0xa1, 0xc0, 0xa7, 0x83, 0xc2, + 0x10, 0x17, 0x6c, 0x11, 0xa9, 0x29, 0xab, 0xa1, 0xe7, 0xc7, 0x82, 0x37, 0xa3, 0xb3, 0x0d, 0x6a, + 0x8b, 0xa8, 0x5d, 0x87, 0xaa, 0xf6, 0xab, 0xfb, 0xe7, 0x12, 0x6c, 0xaf, 0x5b, 0x89, 0x79, 0x90, + 0x0a, 0x3f, 0xcb, 0x83, 0x54, 0xf8, 0xab, 0x91, 0xca, 0x2e, 0x8c, 0x54, 0x2e, 0x54, 0xf8, 0xb3, + 0x98, 0x89, 0xe2, 0x7b, 0xa8, 0x73, 0xc1, 0x9f, 0xc5, 0x38, 0x3c, 0x68, 0xd1, 0x5a, 0x2f, 0xae, + 0x98, 0x5e, 0xfc, 0x21, 0x6c, 0x4d, 0xf8, 0x7c, 0xce, 0x9f, 0x8d, 0x96, 0xd1, 0x3c, 0x8c, 0x67, + 0xa6, 0x21, 0xaf, 0x33, 0xc9, 0x01, 0xdc, 0x08, 0x42, 0x81, 0xe6, 0x74, 0x78, 0x2c, 0x59, 0xac, + 0x26, 0x4c, 0xc4, 0x5d, 0x65, 0x93, 0x2f, 0x60, 0xdf, 0x93, 0x92, 0x45, 0x89, 0x7c, 0x14, 0x27, + 0x9e, 0x3f, 0xeb, 0x72, 0x5f, 0xd5, 0x63, 0x94, 0x78, 0x32, 0x1c, 0x87, 0x73, 0x1c, 0xa6, 0x6b, + 0x6a, 0xe9, 0x6b, 0x71, 0xe4, 0x23, 0xd8, 0xf6, 0x05, 0xf3, 0x24, 0xeb, 0xb2, 0x54, 0x9e, 0x7b, + 0xf2, 0xa2, 0x55, 0x57, 0x2b, 0xaf, 0x70, 0xf1, 0x0c, 0x1e, 0x5a, 0xfb, 0x75, 0x38, 0x0f, 0x7c, + 0x4f, 0x04, 0x2d, 0x47, 0x9f, 0x61, 0x8d, 0x49, 0x8e, 0x80, 0x28, 0x46, 0x2f, 0x4a, 0xe4, 0x72, + 0x05, 0x05, 0x05, 0xbd, 0x46, 0x82, 0xef, 0x25, 0x19, 0x46, 0x2c, 0x95, 0x5e, 0x94, 0xa8, 0x77, + 0x5c, 0x89, 0xe6, 0x0c, 0xf7, 0x1b, 0x0b, 0x9a, 0x57, 0x53, 0x04, 0x1d, 0x9c, 0xa0, 0x99, 0xa6, + 0xd8, 0x90, 0x5e, 0x39, 0xdd, 0x2e, 0x38, 0x1d, 0x03, 0x88, 0xb7, 0x0a, 0xc6, 0x6a, 0x93, 0x2a, + 0x3a, 0x0f, 0x60, 0xf9, 0xc7, 0x03, 0xb8, 0x66, 0x52, 0xe5, 0xaa, 0x49, 0x7f, 0xb0, 0xe0, 0xc6, + 0x95, 0x34, 0x7c, 0x63, 0x8b, 0xf6, 0xa1, 0x11, 0x79, 0x33, 0x76, 0xee, 0x09, 0x15, 0xdc, 0x92, 0x6e, 0xac, 0x05, 0xd6, 0xff, 0xc0, 0xbe, 0x18, 0x36, 0x8b, 0xb9, 0x7f, 0xad, 0x6d, 0x59, 0x28, - 0xcf, 0xb9, 0xbc, 0xcf, 0xe7, 0x71, 0x60, 0xba, 0xd1, 0x2a, 0xf3, 0xd5, 0x80, 0x97, 0xae, 0x09, - 0xb8, 0x7b, 0x0e, 0xf5, 0xcc, 0x40, 0xb2, 0x67, 0x1e, 0x50, 0x56, 0xfe, 0x90, 0x7f, 0x94, 0x32, - 0x81, 0xb6, 0xeb, 0xd7, 0xd4, 0xfb, 0x50, 0x99, 0x08, 0x3e, 0x4f, 0x4c, 0x6d, 0x5d, 0x41, 0x68, - 0x89, 0x3b, 0x84, 0x9a, 0xe1, 0x90, 0x43, 0xa8, 0x8e, 0x16, 0xe7, 0x5e, 0xc4, 0x8c, 0x42, 0x75, - 0xb1, 0xf1, 0x3b, 0x30, 0x08, 0xac, 0x16, 0x1a, 0x41, 0x6e, 0x42, 0x79, 0xb4, 0xe8, 0x77, 0xf5, - 0x98, 0x8c, 0x35, 0x07, 0xbf, 0xda, 0x55, 0x6d, 0x90, 0xfb, 0x15, 0x6c, 0x16, 0xd7, 0xa1, 0x53, - 0xe2, 0x4c, 0xaf, 0x43, 0x15, 0x9d, 0x17, 0x57, 0xfb, 0x35, 0xc5, 0xf5, 0xf0, 0x00, 0x6a, 0xe6, - 0xa9, 0x4a, 0x1c, 0xa8, 0x3c, 0x3a, 0x1f, 0xf6, 0x1e, 0x36, 0x37, 0x48, 0x1d, 0xca, 0x67, 0x83, - 0xe1, 0xc3, 0xa6, 0x85, 0xd4, 0xf9, 0xe0, 0xbc, 0xd7, 0xb4, 0x0f, 0x6f, 0xc3, 0x66, 0xf1, 0xb1, - 0x4a, 0x1a, 0x50, 0x1b, 0x9e, 0x9e, 0x77, 0xdb, 0x83, 0xdf, 0x34, 0x37, 0xc8, 0x26, 0xd4, 0xfb, - 0xe7, 0xc3, 0x5e, 0xe7, 0x11, 0xed, 0x35, 0xad, 0xc3, 0x5f, 0x83, 0xb3, 0x7c, 0x4f, 0xa1, 0x86, - 0x76, 0xff, 0xbc, 0xdb, 0xdc, 0x20, 0x00, 0xd5, 0x61, 0xaf, 0x43, 0x7b, 0xa8, 0xb7, 0x06, 0xa5, - 0xe1, 0xf0, 0xac, 0x69, 0xe3, 0xae, 0x9d, 0xd3, 0xce, 0x59, 0xaf, 0x59, 0x42, 0xf2, 0xe1, 0x83, - 0x8b, 0xfb, 0xc3, 0x66, 0xf9, 0xf0, 0x13, 0xb8, 0xb1, 0xf6, 0x9e, 0x51, 0xab, 0xcf, 0x4e, 0x69, - 0x0f, 0x35, 0x35, 0xa0, 0x76, 0x41, 0xfb, 0x8f, 0x4f, 0x1f, 0xf6, 0x9a, 0x16, 0x0a, 0xbe, 0x1a, - 0x74, 0xbe, 0xec, 0x75, 0x9b, 0x76, 0xfb, 0xd6, 0xb7, 0x2f, 0x76, 0xad, 0xef, 0x5e, 0xec, 0x5a, - 0xdf, 0xbf, 0xd8, 0xb5, 0xfe, 0xfd, 0x62, 0xd7, 0xfa, 0xe6, 0xe5, 0xee, 0xc6, 0x77, 0x2f, 0x77, - 0x37, 0xbe, 0x7f, 0xb9, 0xbb, 0x31, 0xaa, 0xaa, 0xbf, 0x8e, 0x3e, 0xfe, 0x4f, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x87, 0x95, 0x80, 0x20, 0x7a, 0x12, 0x00, 0x00, + 0x07, 0x5c, 0xde, 0xe7, 0x8b, 0x38, 0x30, 0xdd, 0x68, 0x9d, 0xf9, 0x6a, 0xc0, 0x4b, 0xd7, 0x04, + 0xdc, 0x1d, 0x40, 0x3d, 0x33, 0x90, 0xec, 0x99, 0xc7, 0x95, 0x95, 0x3f, 0xf2, 0x1f, 0xa5, 0x4c, + 0xa0, 0xed, 0xfa, 0xa5, 0xf5, 0x3e, 0x54, 0xa6, 0x82, 0x2f, 0x12, 0x73, 0xb7, 0xae, 0x21, 0xb4, + 0xc4, 0x1d, 0x41, 0xcd, 0x70, 0xc8, 0x21, 0x54, 0xc7, 0xcb, 0x01, 0x3e, 0x9f, 0xac, 0xbc, 0xb0, + 0xf1, 0x3b, 0x30, 0x08, 0xbc, 0x2d, 0x34, 0x82, 0xdc, 0x84, 0xf2, 0x78, 0xd9, 0xef, 0xea, 0x31, + 0x19, 0xef, 0x1c, 0xfc, 0x6a, 0x57, 0xb5, 0x41, 0xee, 0x57, 0xb0, 0x59, 0x5c, 0x87, 0x4e, 0x89, + 0x33, 0xbd, 0x0e, 0x55, 0x74, 0x7e, 0xb9, 0xda, 0xaf, 0xb9, 0x5c, 0x0f, 0x0f, 0xa0, 0x66, 0x9e, + 0xb1, 0xc4, 0x81, 0xca, 0xa3, 0xc1, 0xa8, 0xf7, 0xb0, 0xb9, 0x41, 0xea, 0x50, 0x3e, 0x1b, 0x8e, + 0x1e, 0x36, 0x2d, 0xa4, 0x06, 0xc3, 0x41, 0xaf, 0x69, 0x1f, 0xde, 0x86, 0xcd, 0xe2, 0x43, 0x96, + 0x34, 0xa0, 0x36, 0x3a, 0x1d, 0x74, 0xdb, 0xc3, 0xdf, 0x34, 0x37, 0xc8, 0x26, 0xd4, 0xfb, 0x83, + 0x51, 0xaf, 0xf3, 0x88, 0xf6, 0x9a, 0xd6, 0xe1, 0xaf, 0xc1, 0x59, 0xbd, 0xa7, 0x50, 0x43, 0xbb, + 0x3f, 0xe8, 0x36, 0x37, 0x08, 0x40, 0x75, 0xd4, 0xeb, 0xd0, 0x1e, 0xea, 0xad, 0x41, 0x69, 0x34, + 0x3a, 0x6b, 0xda, 0xb8, 0x6b, 0xe7, 0xb4, 0x73, 0xd6, 0x6b, 0x96, 0x90, 0x7c, 0xf8, 0xe0, 0xfc, + 0xfe, 0xa8, 0x59, 0x3e, 0xfc, 0x04, 0x6e, 0x5c, 0x79, 0xcf, 0xa8, 0xd5, 0x67, 0xa7, 0xb4, 0x87, + 0x9a, 0x1a, 0x50, 0x3b, 0xa7, 0xfd, 0xc7, 0xa7, 0x0f, 0x7b, 0x4d, 0x0b, 0x05, 0x5f, 0x0d, 0x3b, + 0x5f, 0xf6, 0xba, 0x4d, 0xbb, 0x7d, 0xeb, 0xdb, 0x17, 0xbb, 0xd6, 0x77, 0x2f, 0x76, 0xad, 0xef, + 0x5f, 0xec, 0x5a, 0xff, 0x7e, 0xb1, 0x6b, 0x7d, 0xf3, 0x72, 0x77, 0xe3, 0xbb, 0x97, 0xbb, 0x1b, + 0xdf, 0xbf, 0xdc, 0xdd, 0x18, 0x57, 0xd5, 0xdf, 0x4a, 0x1f, 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, + 0xb9, 0xf3, 0xd6, 0x61, 0x96, 0x12, 0x00, 0x00, } diff --git a/solver/pb/ops.proto b/solver/pb/ops.proto index a24aad12c4c8f..1e0cc7165a838 100644 --- a/solver/pb/ops.proto +++ b/solver/pb/ops.proto @@ -57,6 +57,7 @@ message Meta { string user = 4; ProxyEnv proxy_env = 5; repeated HostIP extraHosts = 6; + string hostname = 7; } enum NetMode {