github.com/jlmucb/cloudproxy@v0.0.0-20170830161738-b5aa0b619bc4/go/tao/linux_host_admin_rpc.pb.go (about) 1 // Code generated by protoc-gen-go. 2 // source: linux_host_admin_rpc.proto 3 // DO NOT EDIT! 4 5 package tao 6 7 import proto "github.com/golang/protobuf/proto" 8 import fmt "fmt" 9 import math "math" 10 11 // Reference imports to suppress errors if they are not otherwise used. 12 var _ = proto.Marshal 13 var _ = fmt.Errorf 14 var _ = math.Inf 15 16 type LinuxHostAdminRPCRequest struct { 17 Subprin []byte `protobuf:"bytes,1,opt,name=subprin" json:"subprin,omitempty"` 18 Path *string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"` 19 Args []string `protobuf:"bytes,3,rep,name=args" json:"args,omitempty"` 20 Pid *int32 `protobuf:"varint,4,opt,name=pid" json:"pid,omitempty"` 21 Dir *string `protobuf:"bytes,5,opt,name=dir" json:"dir,omitempty"` 22 ContainerArgs []string `protobuf:"bytes,6,rep,name=container_args" json:"container_args,omitempty"` 23 Stdin *int32 `protobuf:"varint,7,opt,name=stdin" json:"stdin,omitempty"` 24 Stdout *int32 `protobuf:"varint,8,opt,name=stdout" json:"stdout,omitempty"` 25 Stderr *int32 `protobuf:"varint,9,opt,name=stderr" json:"stderr,omitempty"` 26 XXX_unrecognized []byte `json:"-"` 27 } 28 29 func (m *LinuxHostAdminRPCRequest) Reset() { *m = LinuxHostAdminRPCRequest{} } 30 func (m *LinuxHostAdminRPCRequest) String() string { return proto.CompactTextString(m) } 31 func (*LinuxHostAdminRPCRequest) ProtoMessage() {} 32 func (*LinuxHostAdminRPCRequest) Descriptor() ([]byte, []int) { return fileDescriptor6, []int{0} } 33 34 func (m *LinuxHostAdminRPCRequest) GetSubprin() []byte { 35 if m != nil { 36 return m.Subprin 37 } 38 return nil 39 } 40 41 func (m *LinuxHostAdminRPCRequest) GetPath() string { 42 if m != nil && m.Path != nil { 43 return *m.Path 44 } 45 return "" 46 } 47 48 func (m *LinuxHostAdminRPCRequest) GetArgs() []string { 49 if m != nil { 50 return m.Args 51 } 52 return nil 53 } 54 55 func (m *LinuxHostAdminRPCRequest) GetPid() int32 { 56 if m != nil && m.Pid != nil { 57 return *m.Pid 58 } 59 return 0 60 } 61 62 func (m *LinuxHostAdminRPCRequest) GetDir() string { 63 if m != nil && m.Dir != nil { 64 return *m.Dir 65 } 66 return "" 67 } 68 69 func (m *LinuxHostAdminRPCRequest) GetContainerArgs() []string { 70 if m != nil { 71 return m.ContainerArgs 72 } 73 return nil 74 } 75 76 func (m *LinuxHostAdminRPCRequest) GetStdin() int32 { 77 if m != nil && m.Stdin != nil { 78 return *m.Stdin 79 } 80 return 0 81 } 82 83 func (m *LinuxHostAdminRPCRequest) GetStdout() int32 { 84 if m != nil && m.Stdout != nil { 85 return *m.Stdout 86 } 87 return 0 88 } 89 90 func (m *LinuxHostAdminRPCRequest) GetStderr() int32 { 91 if m != nil && m.Stderr != nil { 92 return *m.Stderr 93 } 94 return 0 95 } 96 97 type LinuxHostAdminRPCHostedProgram struct { 98 Subprin []byte `protobuf:"bytes,1,req,name=subprin" json:"subprin,omitempty"` 99 Pid *int32 `protobuf:"varint,2,req,name=pid" json:"pid,omitempty"` 100 XXX_unrecognized []byte `json:"-"` 101 } 102 103 func (m *LinuxHostAdminRPCHostedProgram) Reset() { *m = LinuxHostAdminRPCHostedProgram{} } 104 func (m *LinuxHostAdminRPCHostedProgram) String() string { return proto.CompactTextString(m) } 105 func (*LinuxHostAdminRPCHostedProgram) ProtoMessage() {} 106 func (*LinuxHostAdminRPCHostedProgram) Descriptor() ([]byte, []int) { return fileDescriptor6, []int{1} } 107 108 func (m *LinuxHostAdminRPCHostedProgram) GetSubprin() []byte { 109 if m != nil { 110 return m.Subprin 111 } 112 return nil 113 } 114 115 func (m *LinuxHostAdminRPCHostedProgram) GetPid() int32 { 116 if m != nil && m.Pid != nil { 117 return *m.Pid 118 } 119 return 0 120 } 121 122 type LinuxHostAdminRPCResponse struct { 123 Child []*LinuxHostAdminRPCHostedProgram `protobuf:"bytes,1,rep,name=child" json:"child,omitempty"` 124 Prin []byte `protobuf:"bytes,2,opt,name=prin" json:"prin,omitempty"` 125 Status *int32 `protobuf:"varint,3,opt,name=status" json:"status,omitempty"` 126 XXX_unrecognized []byte `json:"-"` 127 } 128 129 func (m *LinuxHostAdminRPCResponse) Reset() { *m = LinuxHostAdminRPCResponse{} } 130 func (m *LinuxHostAdminRPCResponse) String() string { return proto.CompactTextString(m) } 131 func (*LinuxHostAdminRPCResponse) ProtoMessage() {} 132 func (*LinuxHostAdminRPCResponse) Descriptor() ([]byte, []int) { return fileDescriptor6, []int{2} } 133 134 func (m *LinuxHostAdminRPCResponse) GetChild() []*LinuxHostAdminRPCHostedProgram { 135 if m != nil { 136 return m.Child 137 } 138 return nil 139 } 140 141 func (m *LinuxHostAdminRPCResponse) GetPrin() []byte { 142 if m != nil { 143 return m.Prin 144 } 145 return nil 146 } 147 148 func (m *LinuxHostAdminRPCResponse) GetStatus() int32 { 149 if m != nil && m.Status != nil { 150 return *m.Status 151 } 152 return 0 153 } 154 155 func init() { 156 proto.RegisterType((*LinuxHostAdminRPCRequest)(nil), "tao.LinuxHostAdminRPCRequest") 157 proto.RegisterType((*LinuxHostAdminRPCHostedProgram)(nil), "tao.LinuxHostAdminRPCHostedProgram") 158 proto.RegisterType((*LinuxHostAdminRPCResponse)(nil), "tao.LinuxHostAdminRPCResponse") 159 } 160 161 var fileDescriptor6 = []byte{ 162 // 259 bytes of a gzipped FileDescriptorProto 163 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x90, 0xb1, 0x4e, 0xc3, 0x30, 164 0x14, 0x45, 0x95, 0xb8, 0x6e, 0xe9, 0x6b, 0x29, 0x52, 0x06, 0x64, 0x18, 0x50, 0x15, 0x96, 0x4e, 165 0x19, 0xfa, 0x01, 0x48, 0x88, 0x85, 0x81, 0xa1, 0xea, 0x0f, 0x44, 0x26, 0xb6, 0x1a, 0x4b, 0x8d, 166 0x6d, 0x9e, 0x6d, 0x89, 0x4f, 0xe2, 0x33, 0x79, 0xb6, 0x18, 0x40, 0x20, 0xb1, 0xe5, 0x28, 0xf7, 167 0xe6, 0x9d, 0x5c, 0xb8, 0x3d, 0x1b, 0x9b, 0xde, 0xfb, 0xd1, 0x85, 0xd8, 0x4b, 0x35, 0x19, 0xdb, 168 0xa3, 0x1f, 0x3a, 0x8f, 0x2e, 0xba, 0x86, 0x45, 0xe9, 0xda, 0x8f, 0x0a, 0xc4, 0x4b, 0xce, 0x3c, 169 0x53, 0xe4, 0x31, 0x27, 0x8e, 0x87, 0xa7, 0xa3, 0x7e, 0x4b, 0x3a, 0xc4, 0xe6, 0x0a, 0x16, 0x21, 170 0xbd, 0x7a, 0x34, 0x56, 0x54, 0xdb, 0x6a, 0xb7, 0x6e, 0xd6, 0x30, 0xf3, 0x32, 0x8e, 0xa2, 0x26, 171 0x5a, 0x66, 0x92, 0x78, 0x0a, 0x82, 0x6d, 0x19, 0xd1, 0x0a, 0x98, 0x37, 0x4a, 0xcc, 0xe8, 0x15, 172 0xcf, 0xa0, 0x0c, 0x0a, 0x5e, 0x72, 0xd7, 0xb0, 0x19, 0x9c, 0x8d, 0xd2, 0x58, 0x8d, 0x7d, 0x69, 173 0xcc, 0x4b, 0xe3, 0x12, 0x78, 0x88, 0x8a, 0x3e, 0xbe, 0x28, 0x9d, 0x0d, 0xcc, 0x09, 0x5d, 0x8a, 174 0xe2, 0xe2, 0x1b, 0x6b, 0x44, 0xb1, 0xcc, 0xdc, 0x3e, 0xc0, 0xdd, 0x2f, 0xd3, 0xfc, 0xac, 0xd5, 175 0x01, 0xdd, 0x09, 0xe5, 0xf4, 0xd3, 0xb7, 0x26, 0xdf, 0x2f, 0xa7, 0x9a, 0x80, 0xb7, 0x13, 0xdc, 176 0xfc, 0xf1, 0xa7, 0xc1, 0x3b, 0x1b, 0x74, 0xb3, 0x07, 0x3e, 0x8c, 0xe6, 0xac, 0xa8, 0xc8, 0x76, 177 0xab, 0xfd, 0x7d, 0x47, 0xe3, 0x74, 0xff, 0x9c, 0xcb, 0x6b, 0xe4, 0x5b, 0x75, 0xd9, 0xa6, 0xe8, 178 0xca, 0x98, 0xf2, 0x1e, 0xa4, 0xfb, 0x19, 0x00, 0x00, 0xff, 0xff, 0x5b, 0xb0, 0xde, 0xf2, 0x7b, 179 0x01, 0x00, 0x00, 180 }