fm

package
v0.0.0-...-a649549 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 14, 2023 License: AGPL-3.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Clt_ResetProgress_Status_name = map[int32]string{
		0: "NOOP",
		1: "started",
		2: "ended",
		3: "failed",
	}
	Clt_ResetProgress_Status_value = map[string]int32{
		"NOOP":    0,
		"started": 1,
		"ended":   2,
		"failed":  3,
	}
)

Enum value maps for Clt_ResetProgress_Status.

View Source
var (
	Clt_CallVerifProgress_Status_name = map[int32]string{
		0: "NO_STATUS",
		1: "success",
		2: "skipped",
		3: "failure",
		4: "done",
	}
	Clt_CallVerifProgress_Status_value = map[string]int32{
		"NO_STATUS": 0,
		"success":   1,
		"skipped":   2,
		"failure":   3,
		"done":      4,
	}
)

Enum value maps for Clt_CallVerifProgress_Status.

View Source
var (
	Clt_CallVerifProgress_Origin_name = map[int32]string{
		0: "NO_ORIGIN",
		1: "built_in",
		2: "after_response",
	}
	Clt_CallVerifProgress_Origin_value = map[string]int32{
		"NO_ORIGIN":      0,
		"built_in":       1,
		"after_response": 2,
	}
)

Enum value maps for Clt_CallVerifProgress_Origin.

View Source
var (
	EndpointJSON_Method_name = map[int32]string{
		0: "UNKNOWN",
		1: "GET",
		2: "HEAD",
		3: "POST",
		4: "PUT",
		5: "PATCH",
		6: "DELETE",
		7: "CONNECT",
		8: "OPTIONS",
		9: "TRACE",
	}
	EndpointJSON_Method_value = map[string]int32{
		"UNKNOWN": 0,
		"GET":     1,
		"HEAD":    2,
		"POST":    3,
		"PUT":     4,
		"PATCH":   5,
		"DELETE":  6,
		"CONNECT": 7,
		"OPTIONS": 8,
		"TRACE":   9,
	}
)

Enum value maps for EndpointJSON_Method.

View Source
var (
	ParamJSON_Kind_name = map[int32]string{
		0: "UNKNOWN",
		1: "body",
		2: "path",
		3: "query",
		4: "header",
		5: "cookie",
	}
	ParamJSON_Kind_value = map[string]int32{
		"UNKNOWN": 0,
		"body":    1,
		"path":    2,
		"query":   3,
		"header":  4,
		"cookie":  5,
	}
)

Enum value maps for ParamJSON_Kind.

View Source
var (
	Schema_JSON_Type_name = map[int32]string{
		0: "UNKNOWN",
		1: "any",
		2: "null",
		3: "boolean",
		4: "integer",
		5: "number",
		6: "array",
		7: "string",
		8: "object",
	}
	Schema_JSON_Type_value = map[string]int32{
		"UNKNOWN": 0,
		"any":     1,
		"null":    2,
		"boolean": 3,
		"integer": 4,
		"number":  5,
		"array":   6,
		"string":  7,
		"object":  8,
	}
)

Enum value maps for Schema_JSON_Type.

View Source
var (
	ErrInvalidLength        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflow          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroup = fmt.Errorf("proto: unexpected end of group")
)
View Source
var File_fuzzymonkey_proto protoreflect.FileDescriptor
View Source
var FuzzyMonkey_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "fm.FuzzyMonkey",
	HandlerType: (*FuzzyMonkeyServer)(nil),
	Methods:     []grpc.MethodDesc{},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "Do",
			Handler:       _FuzzyMonkey_Do_Handler,
			ServerStreams: true,
			ClientStreams: true,
		},
	},
	Metadata: "fuzzymonkey.proto",
}

FuzzyMonkey_ServiceDesc is the grpc.ServiceDesc for FuzzyMonkey service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterFuzzyMonkeyServer

func RegisterFuzzyMonkeyServer(s grpc.ServiceRegistrar, srv FuzzyMonkeyServer)

Types

type BiDier

type BiDier interface {
	Send(ctx context.Context, msg *Clt) (err error)
	Receive(ctx context.Context) (msg *Srv, err error)
	Close()
}

BiDier does bidirectional streaming gRPC

type ChBiDi

type ChBiDi struct {
	// contains filtered or unexported fields
}

ChBiDi wraps a Clt<->Srv bidirectional gRPC channel

func NewChBiDi

func NewChBiDi(ctx context.Context) (*ChBiDi, error)

NewChBiDi dials server & returns a usable ChBiDi

func (*ChBiDi) Close

func (cbd *ChBiDi) Close()

Close ends the connection

func (*ChBiDi) Receive

func (cbd *ChBiDi) Receive(ctx context.Context) (msg *Srv, err error)

Receive returns a Srv message and an error

func (*ChBiDi) Send

func (cbd *ChBiDi) Send(ctx context.Context, msg *Clt) (err error)

Send sends a Clt message, returning an error

type Clt

type Clt struct {

	// Types that are assignable to Msg:
	//
	//	*Clt_Fuzz_
	//	*Clt_ResetProgress_
	//	*Clt_CallRequestRaw_
	//	*Clt_CallResponseRaw_
	//	*Clt_CallVerifProgress_
	Msg isClt_Msg `protobuf_oneof:"msg"`
	// contains filtered or unexported fields
}

func (*Clt) Descriptor deprecated

func (*Clt) Descriptor() ([]byte, []int)

Deprecated: Use Clt.ProtoReflect.Descriptor instead.

func (*Clt) EqualVT

func (this *Clt) EqualVT(that *Clt) bool

func (*Clt) GetCallRequestRaw

func (x *Clt) GetCallRequestRaw() *Clt_CallRequestRaw

func (*Clt) GetCallResponseRaw

func (x *Clt) GetCallResponseRaw() *Clt_CallResponseRaw

func (*Clt) GetCallVerifProgress

func (x *Clt) GetCallVerifProgress() *Clt_CallVerifProgress

func (*Clt) GetFuzz

func (x *Clt) GetFuzz() *Clt_Fuzz

func (*Clt) GetMsg

func (m *Clt) GetMsg() isClt_Msg

func (*Clt) GetResetProgress

func (x *Clt) GetResetProgress() *Clt_ResetProgress

func (*Clt) MarshalToSizedBufferVT

func (m *Clt) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt) MarshalToVT

func (m *Clt) MarshalToVT(dAtA []byte) (int, error)

func (*Clt) MarshalVT

func (m *Clt) MarshalVT() (dAtA []byte, err error)

func (*Clt) ProtoMessage

func (*Clt) ProtoMessage()

func (*Clt) ProtoReflect

func (x *Clt) ProtoReflect() protoreflect.Message

func (*Clt) Reset

func (x *Clt) Reset()

func (*Clt) SizeVT

func (m *Clt) SizeVT() (n int)

func (*Clt) String

func (x *Clt) String() string

func (*Clt) UnmarshalVT

func (m *Clt) UnmarshalVT(dAtA []byte) error

type Clt_CallRequestRaw

type Clt_CallRequestRaw struct {
	Input  *Clt_CallRequestRaw_Input `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"`
	Reason []string                  `protobuf:"bytes,2,rep,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*Clt_CallRequestRaw) Descriptor deprecated

func (*Clt_CallRequestRaw) Descriptor() ([]byte, []int)

Deprecated: Use Clt_CallRequestRaw.ProtoReflect.Descriptor instead.

func (*Clt_CallRequestRaw) EqualVT

func (this *Clt_CallRequestRaw) EqualVT(that *Clt_CallRequestRaw) bool

func (*Clt_CallRequestRaw) GetInput

func (*Clt_CallRequestRaw) GetReason

func (x *Clt_CallRequestRaw) GetReason() []string

func (*Clt_CallRequestRaw) MarshalToSizedBufferVT

func (m *Clt_CallRequestRaw) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw) MarshalToVT

func (m *Clt_CallRequestRaw) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw) MarshalVT

func (m *Clt_CallRequestRaw) MarshalVT() (dAtA []byte, err error)

func (*Clt_CallRequestRaw) ProtoMessage

func (*Clt_CallRequestRaw) ProtoMessage()

func (*Clt_CallRequestRaw) ProtoReflect

func (x *Clt_CallRequestRaw) ProtoReflect() protoreflect.Message

func (*Clt_CallRequestRaw) Reset

func (x *Clt_CallRequestRaw) Reset()

func (*Clt_CallRequestRaw) SizeVT

func (m *Clt_CallRequestRaw) SizeVT() (n int)

func (*Clt_CallRequestRaw) String

func (x *Clt_CallRequestRaw) String() string

func (*Clt_CallRequestRaw) UnmarshalVT

func (m *Clt_CallRequestRaw) UnmarshalVT(dAtA []byte) error

type Clt_CallRequestRaw_

type Clt_CallRequestRaw_ struct {
	// Actual call to SUT
	CallRequestRaw *Clt_CallRequestRaw `protobuf:"bytes,3,opt,name=call_request_raw,json=callRequestRaw,proto3,oneof"`
}

func (*Clt_CallRequestRaw_) EqualVT

func (this *Clt_CallRequestRaw_) EqualVT(thatIface isClt_Msg) bool

func (*Clt_CallRequestRaw_) MarshalToSizedBufferVT

func (m *Clt_CallRequestRaw_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_) MarshalToVT

func (m *Clt_CallRequestRaw_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_) SizeVT

func (m *Clt_CallRequestRaw_) SizeVT() (n int)

type Clt_CallRequestRaw_Input

type Clt_CallRequestRaw_Input struct {

	// Types that are assignable to Input:
	//
	//	*Clt_CallRequestRaw_Input_HttpRequest_
	Input isClt_CallRequestRaw_Input_Input `protobuf_oneof:"input"`
	// contains filtered or unexported fields
}

func (*Clt_CallRequestRaw_Input) Descriptor deprecated

func (*Clt_CallRequestRaw_Input) Descriptor() ([]byte, []int)

Deprecated: Use Clt_CallRequestRaw_Input.ProtoReflect.Descriptor instead.

func (*Clt_CallRequestRaw_Input) EqualVT

func (*Clt_CallRequestRaw_Input) GetHttpRequest

func (*Clt_CallRequestRaw_Input) GetInput

func (m *Clt_CallRequestRaw_Input) GetInput() isClt_CallRequestRaw_Input_Input

func (*Clt_CallRequestRaw_Input) MarshalToSizedBufferVT

func (m *Clt_CallRequestRaw_Input) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_Input) MarshalToVT

func (m *Clt_CallRequestRaw_Input) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_Input) MarshalVT

func (m *Clt_CallRequestRaw_Input) MarshalVT() (dAtA []byte, err error)

func (*Clt_CallRequestRaw_Input) ProtoMessage

func (*Clt_CallRequestRaw_Input) ProtoMessage()

func (*Clt_CallRequestRaw_Input) ProtoReflect

func (x *Clt_CallRequestRaw_Input) ProtoReflect() protoreflect.Message

func (*Clt_CallRequestRaw_Input) Reset

func (x *Clt_CallRequestRaw_Input) Reset()

func (*Clt_CallRequestRaw_Input) SizeVT

func (m *Clt_CallRequestRaw_Input) SizeVT() (n int)

func (*Clt_CallRequestRaw_Input) String

func (x *Clt_CallRequestRaw_Input) String() string

func (*Clt_CallRequestRaw_Input) UnmarshalVT

func (m *Clt_CallRequestRaw_Input) UnmarshalVT(dAtA []byte) error

type Clt_CallRequestRaw_Input_HttpRequest

type Clt_CallRequestRaw_Input_HttpRequest struct {
	Method      string          `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
	Url         string          `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Headers     []*HeaderPair   `protobuf:"bytes,3,rep,name=headers,proto3" json:"headers,omitempty"`
	Body        []byte          `protobuf:"bytes,4,opt,name=body,proto3" json:"body,omitempty"`
	BodyDecoded *structpb.Value `protobuf:"bytes,5,opt,name=body_decoded,json=bodyDecoded,proto3" json:"body_decoded,omitempty"`
	// contains filtered or unexported fields
}

func (*Clt_CallRequestRaw_Input_HttpRequest) Descriptor deprecated

func (*Clt_CallRequestRaw_Input_HttpRequest) Descriptor() ([]byte, []int)

Deprecated: Use Clt_CallRequestRaw_Input_HttpRequest.ProtoReflect.Descriptor instead.

func (*Clt_CallRequestRaw_Input_HttpRequest) EqualVT

func (*Clt_CallRequestRaw_Input_HttpRequest) GetBody

func (*Clt_CallRequestRaw_Input_HttpRequest) GetBodyDecoded

func (*Clt_CallRequestRaw_Input_HttpRequest) GetHeaders

func (*Clt_CallRequestRaw_Input_HttpRequest) GetMethod

func (*Clt_CallRequestRaw_Input_HttpRequest) GetUrl

func (*Clt_CallRequestRaw_Input_HttpRequest) MarshalToSizedBufferVT

func (m *Clt_CallRequestRaw_Input_HttpRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_Input_HttpRequest) MarshalToVT

func (m *Clt_CallRequestRaw_Input_HttpRequest) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_Input_HttpRequest) MarshalVT

func (m *Clt_CallRequestRaw_Input_HttpRequest) MarshalVT() (dAtA []byte, err error)

func (*Clt_CallRequestRaw_Input_HttpRequest) ProtoMessage

func (*Clt_CallRequestRaw_Input_HttpRequest) ProtoMessage()

func (*Clt_CallRequestRaw_Input_HttpRequest) ProtoReflect

func (*Clt_CallRequestRaw_Input_HttpRequest) Reset

func (*Clt_CallRequestRaw_Input_HttpRequest) SizeVT

func (m *Clt_CallRequestRaw_Input_HttpRequest) SizeVT() (n int)

func (*Clt_CallRequestRaw_Input_HttpRequest) String

func (*Clt_CallRequestRaw_Input_HttpRequest) UnmarshalVT

func (m *Clt_CallRequestRaw_Input_HttpRequest) UnmarshalVT(dAtA []byte) error

type Clt_CallRequestRaw_Input_HttpRequest_

type Clt_CallRequestRaw_Input_HttpRequest_ struct {
	HttpRequest *Clt_CallRequestRaw_Input_HttpRequest `protobuf:"bytes,1,opt,name=http_request,json=httpRequest,proto3,oneof"`
}

func (*Clt_CallRequestRaw_Input_HttpRequest_) EqualVT

func (this *Clt_CallRequestRaw_Input_HttpRequest_) EqualVT(thatIface isClt_CallRequestRaw_Input_Input) bool

func (*Clt_CallRequestRaw_Input_HttpRequest_) MarshalToSizedBufferVT

func (m *Clt_CallRequestRaw_Input_HttpRequest_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_Input_HttpRequest_) MarshalToVT

func (m *Clt_CallRequestRaw_Input_HttpRequest_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallRequestRaw_Input_HttpRequest_) SizeVT

type Clt_CallResponseRaw

type Clt_CallResponseRaw struct {
	Output   *Clt_CallResponseRaw_Output `protobuf:"bytes,1,opt,name=output,proto3" json:"output,omitempty"`
	OutputId uint32                      `protobuf:"varint,2,opt,name=outputId,proto3" json:"outputId,omitempty"`
	// contains filtered or unexported fields
}

func (*Clt_CallResponseRaw) Descriptor deprecated

func (*Clt_CallResponseRaw) Descriptor() ([]byte, []int)

Deprecated: Use Clt_CallResponseRaw.ProtoReflect.Descriptor instead.

func (*Clt_CallResponseRaw) EqualVT

func (this *Clt_CallResponseRaw) EqualVT(that *Clt_CallResponseRaw) bool

func (*Clt_CallResponseRaw) GetOutput

func (*Clt_CallResponseRaw) GetOutputId

func (x *Clt_CallResponseRaw) GetOutputId() uint32

func (*Clt_CallResponseRaw) MarshalToSizedBufferVT

func (m *Clt_CallResponseRaw) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw) MarshalToVT

func (m *Clt_CallResponseRaw) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw) MarshalVT

func (m *Clt_CallResponseRaw) MarshalVT() (dAtA []byte, err error)

func (*Clt_CallResponseRaw) ProtoMessage

func (*Clt_CallResponseRaw) ProtoMessage()

func (*Clt_CallResponseRaw) ProtoReflect

func (x *Clt_CallResponseRaw) ProtoReflect() protoreflect.Message

func (*Clt_CallResponseRaw) Reset

func (x *Clt_CallResponseRaw) Reset()

func (*Clt_CallResponseRaw) SizeVT

func (m *Clt_CallResponseRaw) SizeVT() (n int)

func (*Clt_CallResponseRaw) String

func (x *Clt_CallResponseRaw) String() string

func (*Clt_CallResponseRaw) UnmarshalVT

func (m *Clt_CallResponseRaw) UnmarshalVT(dAtA []byte) error

type Clt_CallResponseRaw_

type Clt_CallResponseRaw_ struct {
	// SUT call response
	CallResponseRaw *Clt_CallResponseRaw `protobuf:"bytes,4,opt,name=call_response_raw,json=callResponseRaw,proto3,oneof"`
}

func (*Clt_CallResponseRaw_) EqualVT

func (this *Clt_CallResponseRaw_) EqualVT(thatIface isClt_Msg) bool

func (*Clt_CallResponseRaw_) MarshalToSizedBufferVT

func (m *Clt_CallResponseRaw_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_) MarshalToVT

func (m *Clt_CallResponseRaw_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_) SizeVT

func (m *Clt_CallResponseRaw_) SizeVT() (n int)

type Clt_CallResponseRaw_Output

type Clt_CallResponseRaw_Output struct {

	// Types that are assignable to Output:
	//
	//	*Clt_CallResponseRaw_Output_HttpResponse_
	Output isClt_CallResponseRaw_Output_Output `protobuf_oneof:"output"`
	// contains filtered or unexported fields
}

func (*Clt_CallResponseRaw_Output) Descriptor deprecated

func (*Clt_CallResponseRaw_Output) Descriptor() ([]byte, []int)

Deprecated: Use Clt_CallResponseRaw_Output.ProtoReflect.Descriptor instead.

func (*Clt_CallResponseRaw_Output) EqualVT

func (*Clt_CallResponseRaw_Output) GetHttpResponse

func (*Clt_CallResponseRaw_Output) GetOutput

func (m *Clt_CallResponseRaw_Output) GetOutput() isClt_CallResponseRaw_Output_Output

func (*Clt_CallResponseRaw_Output) MarshalToSizedBufferVT

func (m *Clt_CallResponseRaw_Output) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_Output) MarshalToVT

func (m *Clt_CallResponseRaw_Output) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_Output) MarshalVT

func (m *Clt_CallResponseRaw_Output) MarshalVT() (dAtA []byte, err error)

func (*Clt_CallResponseRaw_Output) ProtoMessage

func (*Clt_CallResponseRaw_Output) ProtoMessage()

func (*Clt_CallResponseRaw_Output) ProtoReflect

func (*Clt_CallResponseRaw_Output) Reset

func (x *Clt_CallResponseRaw_Output) Reset()

func (*Clt_CallResponseRaw_Output) SizeVT

func (m *Clt_CallResponseRaw_Output) SizeVT() (n int)

func (*Clt_CallResponseRaw_Output) String

func (x *Clt_CallResponseRaw_Output) String() string

func (*Clt_CallResponseRaw_Output) UnmarshalVT

func (m *Clt_CallResponseRaw_Output) UnmarshalVT(dAtA []byte) error

type Clt_CallResponseRaw_Output_HttpResponse

type Clt_CallResponseRaw_Output_HttpResponse struct {
	Error       string          `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	StatusCode  uint32          `protobuf:"varint,2,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Reason      string          `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	Headers     []*HeaderPair   `protobuf:"bytes,4,rep,name=headers,proto3" json:"headers,omitempty"`
	Body        []byte          `protobuf:"bytes,5,opt,name=body,proto3" json:"body,omitempty"`
	BodyDecoded *structpb.Value `protobuf:"bytes,6,opt,name=body_decoded,json=bodyDecoded,proto3" json:"body_decoded,omitempty"`
	ElapsedNs   int64           `protobuf:"varint,7,opt,name=elapsed_ns,json=elapsedNs,proto3" json:"elapsed_ns,omitempty"` // TODO: finer timings (name lookup, connection, ...)
	// contains filtered or unexported fields
}

func (*Clt_CallResponseRaw_Output_HttpResponse) Descriptor deprecated

func (*Clt_CallResponseRaw_Output_HttpResponse) Descriptor() ([]byte, []int)

Deprecated: Use Clt_CallResponseRaw_Output_HttpResponse.ProtoReflect.Descriptor instead.

func (*Clt_CallResponseRaw_Output_HttpResponse) EqualVT

func (*Clt_CallResponseRaw_Output_HttpResponse) GetBody

func (*Clt_CallResponseRaw_Output_HttpResponse) GetBodyDecoded

func (*Clt_CallResponseRaw_Output_HttpResponse) GetElapsedNs

func (*Clt_CallResponseRaw_Output_HttpResponse) GetError

func (*Clt_CallResponseRaw_Output_HttpResponse) GetHeaders

func (*Clt_CallResponseRaw_Output_HttpResponse) GetReason

func (*Clt_CallResponseRaw_Output_HttpResponse) GetStatusCode

func (*Clt_CallResponseRaw_Output_HttpResponse) MarshalToSizedBufferVT

func (m *Clt_CallResponseRaw_Output_HttpResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_Output_HttpResponse) MarshalToVT

func (m *Clt_CallResponseRaw_Output_HttpResponse) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_Output_HttpResponse) MarshalVT

func (m *Clt_CallResponseRaw_Output_HttpResponse) MarshalVT() (dAtA []byte, err error)

func (*Clt_CallResponseRaw_Output_HttpResponse) ProtoMessage

func (*Clt_CallResponseRaw_Output_HttpResponse) ProtoReflect

func (*Clt_CallResponseRaw_Output_HttpResponse) Reset

func (*Clt_CallResponseRaw_Output_HttpResponse) SizeVT

func (*Clt_CallResponseRaw_Output_HttpResponse) String

func (*Clt_CallResponseRaw_Output_HttpResponse) UnmarshalVT

func (m *Clt_CallResponseRaw_Output_HttpResponse) UnmarshalVT(dAtA []byte) error

type Clt_CallResponseRaw_Output_HttpResponse_

type Clt_CallResponseRaw_Output_HttpResponse_ struct {
	HttpResponse *Clt_CallResponseRaw_Output_HttpResponse `protobuf:"bytes,1,opt,name=http_response,json=httpResponse,proto3,oneof"`
}

func (*Clt_CallResponseRaw_Output_HttpResponse_) EqualVT

func (this *Clt_CallResponseRaw_Output_HttpResponse_) EqualVT(thatIface isClt_CallResponseRaw_Output_Output) bool

func (*Clt_CallResponseRaw_Output_HttpResponse_) MarshalToSizedBufferVT

func (m *Clt_CallResponseRaw_Output_HttpResponse_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_Output_HttpResponse_) MarshalToVT

func (m *Clt_CallResponseRaw_Output_HttpResponse_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallResponseRaw_Output_HttpResponse_) SizeVT

type Clt_CallVerifProgress

type Clt_CallVerifProgress struct {
	Name           string                       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Status         Clt_CallVerifProgress_Status `protobuf:"varint,2,opt,name=status,proto3,enum=fm.Clt_CallVerifProgress_Status" json:"status,omitempty"`
	Origin         Clt_CallVerifProgress_Origin `protobuf:"varint,3,opt,name=origin,proto3,enum=fm.Clt_CallVerifProgress_Origin" json:"origin,omitempty"`
	Reason         []string                     `protobuf:"bytes,4,rep,name=reason,proto3" json:"reason,omitempty"`
	ElapsedNs      int64                        `protobuf:"varint,5,opt,name=elapsed_ns,json=elapsedNs,proto3" json:"elapsed_ns,omitempty"`
	ExecutionSteps uint64                       `protobuf:"varint,6,opt,name=execution_steps,json=executionSteps,proto3" json:"execution_steps,omitempty"`
	// contains filtered or unexported fields
}

func (*Clt_CallVerifProgress) Descriptor deprecated

func (*Clt_CallVerifProgress) Descriptor() ([]byte, []int)

Deprecated: Use Clt_CallVerifProgress.ProtoReflect.Descriptor instead.

func (*Clt_CallVerifProgress) EqualVT

func (this *Clt_CallVerifProgress) EqualVT(that *Clt_CallVerifProgress) bool

func (*Clt_CallVerifProgress) GetElapsedNs

func (x *Clt_CallVerifProgress) GetElapsedNs() int64

func (*Clt_CallVerifProgress) GetExecutionSteps

func (x *Clt_CallVerifProgress) GetExecutionSteps() uint64

func (*Clt_CallVerifProgress) GetName

func (x *Clt_CallVerifProgress) GetName() string

func (*Clt_CallVerifProgress) GetOrigin

func (*Clt_CallVerifProgress) GetReason

func (x *Clt_CallVerifProgress) GetReason() []string

func (*Clt_CallVerifProgress) GetStatus

func (*Clt_CallVerifProgress) MarshalToSizedBufferVT

func (m *Clt_CallVerifProgress) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallVerifProgress) MarshalToVT

func (m *Clt_CallVerifProgress) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallVerifProgress) MarshalVT

func (m *Clt_CallVerifProgress) MarshalVT() (dAtA []byte, err error)

func (*Clt_CallVerifProgress) ProtoMessage

func (*Clt_CallVerifProgress) ProtoMessage()

func (*Clt_CallVerifProgress) ProtoReflect

func (x *Clt_CallVerifProgress) ProtoReflect() protoreflect.Message

func (*Clt_CallVerifProgress) Reset

func (x *Clt_CallVerifProgress) Reset()

func (*Clt_CallVerifProgress) SizeVT

func (m *Clt_CallVerifProgress) SizeVT() (n int)

func (*Clt_CallVerifProgress) String

func (x *Clt_CallVerifProgress) String() string

func (*Clt_CallVerifProgress) UnmarshalVT

func (m *Clt_CallVerifProgress) UnmarshalVT(dAtA []byte) error

type Clt_CallVerifProgress_

type Clt_CallVerifProgress_ struct {
	// SUT call verifications
	CallVerifProgress *Clt_CallVerifProgress `protobuf:"bytes,5,opt,name=call_verif_progress,json=callVerifProgress,proto3,oneof"`
}

func (*Clt_CallVerifProgress_) EqualVT

func (this *Clt_CallVerifProgress_) EqualVT(thatIface isClt_Msg) bool

func (*Clt_CallVerifProgress_) MarshalToSizedBufferVT

func (m *Clt_CallVerifProgress_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_CallVerifProgress_) MarshalToVT

func (m *Clt_CallVerifProgress_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_CallVerifProgress_) SizeVT

func (m *Clt_CallVerifProgress_) SizeVT() (n int)

type Clt_CallVerifProgress_Origin

type Clt_CallVerifProgress_Origin int32
const (
	Clt_CallVerifProgress_NO_ORIGIN      Clt_CallVerifProgress_Origin = 0
	Clt_CallVerifProgress_built_in       Clt_CallVerifProgress_Origin = 1
	Clt_CallVerifProgress_after_response Clt_CallVerifProgress_Origin = 2
)

func (Clt_CallVerifProgress_Origin) Descriptor

func (Clt_CallVerifProgress_Origin) Enum

func (Clt_CallVerifProgress_Origin) EnumDescriptor deprecated

func (Clt_CallVerifProgress_Origin) EnumDescriptor() ([]byte, []int)

Deprecated: Use Clt_CallVerifProgress_Origin.Descriptor instead.

func (Clt_CallVerifProgress_Origin) Number

func (Clt_CallVerifProgress_Origin) String

func (Clt_CallVerifProgress_Origin) Type

type Clt_CallVerifProgress_Status

type Clt_CallVerifProgress_Status int32
const (
	Clt_CallVerifProgress_NO_STATUS Clt_CallVerifProgress_Status = 0
	Clt_CallVerifProgress_success   Clt_CallVerifProgress_Status = 1
	Clt_CallVerifProgress_skipped   Clt_CallVerifProgress_Status = 2
	Clt_CallVerifProgress_failure   Clt_CallVerifProgress_Status = 3
	Clt_CallVerifProgress_done      Clt_CallVerifProgress_Status = 4
)

func (Clt_CallVerifProgress_Status) Descriptor

func (Clt_CallVerifProgress_Status) Enum

func (Clt_CallVerifProgress_Status) EnumDescriptor deprecated

func (Clt_CallVerifProgress_Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use Clt_CallVerifProgress_Status.Descriptor instead.

func (Clt_CallVerifProgress_Status) Number

func (Clt_CallVerifProgress_Status) String

func (Clt_CallVerifProgress_Status) Type

type Clt_Fuzz

type Clt_Fuzz struct {
	Resetters []*Clt_Fuzz_Resetter `protobuf:"bytes,1,rep,name=resetters,proto3" json:"resetters,omitempty"`
	Models    []*Clt_Fuzz_Model    `protobuf:"bytes,2,rep,name=models,proto3" json:"models,omitempty"`
	Usage     []string             `protobuf:"bytes,3,rep,name=usage,proto3" json:"usage,omitempty"`
	Seed      []byte               `protobuf:"bytes,4,opt,name=seed,proto3" json:"seed,omitempty"`
	Ntensity  uint32               `protobuf:"varint,5,opt,name=ntensity,proto3" json:"ntensity,omitempty"`
	EIDs      map[string]*Uint32S  `` /* 149-byte string literal not displayed */
	Labels    map[string]string    `` /* 153-byte string literal not displayed */
	EnvRead   map[string]string    `` /* 170-byte string literal not displayed */
	UUIDs     []string             `protobuf:"bytes,9,rep,name=UUIDs,proto3" json:"UUIDs,omitempty"`
	Files     map[string]string    `` /* 152-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Clt_Fuzz) Descriptor deprecated

func (*Clt_Fuzz) Descriptor() ([]byte, []int)

Deprecated: Use Clt_Fuzz.ProtoReflect.Descriptor instead.

func (*Clt_Fuzz) EqualVT

func (this *Clt_Fuzz) EqualVT(that *Clt_Fuzz) bool

func (*Clt_Fuzz) GetEIDs

func (x *Clt_Fuzz) GetEIDs() map[string]*Uint32S

func (*Clt_Fuzz) GetEnvRead

func (x *Clt_Fuzz) GetEnvRead() map[string]string

func (*Clt_Fuzz) GetFiles

func (x *Clt_Fuzz) GetFiles() map[string]string

func (*Clt_Fuzz) GetLabels

func (x *Clt_Fuzz) GetLabels() map[string]string

func (*Clt_Fuzz) GetModels

func (x *Clt_Fuzz) GetModels() []*Clt_Fuzz_Model

func (*Clt_Fuzz) GetNtensity

func (x *Clt_Fuzz) GetNtensity() uint32

func (*Clt_Fuzz) GetResetters

func (x *Clt_Fuzz) GetResetters() []*Clt_Fuzz_Resetter

func (*Clt_Fuzz) GetSeed

func (x *Clt_Fuzz) GetSeed() []byte

func (*Clt_Fuzz) GetUUIDs

func (x *Clt_Fuzz) GetUUIDs() []string

func (*Clt_Fuzz) GetUsage

func (x *Clt_Fuzz) GetUsage() []string

func (*Clt_Fuzz) MarshalToSizedBufferVT

func (m *Clt_Fuzz) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz) MarshalToVT

func (m *Clt_Fuzz) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz) MarshalVT

func (m *Clt_Fuzz) MarshalVT() (dAtA []byte, err error)

func (*Clt_Fuzz) ProtoMessage

func (*Clt_Fuzz) ProtoMessage()

func (*Clt_Fuzz) ProtoReflect

func (x *Clt_Fuzz) ProtoReflect() protoreflect.Message

func (*Clt_Fuzz) Reset

func (x *Clt_Fuzz) Reset()

func (*Clt_Fuzz) SizeVT

func (m *Clt_Fuzz) SizeVT() (n int)

func (*Clt_Fuzz) String

func (x *Clt_Fuzz) String() string

func (*Clt_Fuzz) UnmarshalVT

func (m *Clt_Fuzz) UnmarshalVT(dAtA []byte) error

type Clt_Fuzz_

type Clt_Fuzz_ struct {
	// Initiates testing
	Fuzz *Clt_Fuzz `protobuf:"bytes,1,opt,name=fuzz,proto3,oneof"`
}

func (*Clt_Fuzz_) EqualVT

func (this *Clt_Fuzz_) EqualVT(thatIface isClt_Msg) bool

func (*Clt_Fuzz_) MarshalToSizedBufferVT

func (m *Clt_Fuzz_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_) MarshalToVT

func (m *Clt_Fuzz_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_) SizeVT

func (m *Clt_Fuzz_) SizeVT() (n int)

type Clt_Fuzz_Model

type Clt_Fuzz_Model struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Types that are assignable to Model:
	//
	//	*Clt_Fuzz_Model_Openapiv3
	Model isClt_Fuzz_Model_Model `protobuf_oneof:"model"`
	// contains filtered or unexported fields
}

func (*Clt_Fuzz_Model) Descriptor deprecated

func (*Clt_Fuzz_Model) Descriptor() ([]byte, []int)

Deprecated: Use Clt_Fuzz_Model.ProtoReflect.Descriptor instead.

func (*Clt_Fuzz_Model) EqualVT

func (this *Clt_Fuzz_Model) EqualVT(that *Clt_Fuzz_Model) bool

func (*Clt_Fuzz_Model) GetModel

func (m *Clt_Fuzz_Model) GetModel() isClt_Fuzz_Model_Model

func (*Clt_Fuzz_Model) GetName

func (x *Clt_Fuzz_Model) GetName() string

func (*Clt_Fuzz_Model) GetOpenapiv3

func (x *Clt_Fuzz_Model) GetOpenapiv3() *Clt_Fuzz_Model_OpenAPIv3

func (*Clt_Fuzz_Model) MarshalToSizedBufferVT

func (m *Clt_Fuzz_Model) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Model) MarshalToVT

func (m *Clt_Fuzz_Model) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Model) MarshalVT

func (m *Clt_Fuzz_Model) MarshalVT() (dAtA []byte, err error)

func (*Clt_Fuzz_Model) ProtoMessage

func (*Clt_Fuzz_Model) ProtoMessage()

func (*Clt_Fuzz_Model) ProtoReflect

func (x *Clt_Fuzz_Model) ProtoReflect() protoreflect.Message

func (*Clt_Fuzz_Model) Reset

func (x *Clt_Fuzz_Model) Reset()

func (*Clt_Fuzz_Model) SizeVT

func (m *Clt_Fuzz_Model) SizeVT() (n int)

func (*Clt_Fuzz_Model) String

func (x *Clt_Fuzz_Model) String() string

func (*Clt_Fuzz_Model) UnmarshalVT

func (m *Clt_Fuzz_Model) UnmarshalVT(dAtA []byte) error

type Clt_Fuzz_Model_OpenAPIv3

type Clt_Fuzz_Model_OpenAPIv3 struct {

	// File path within current directory pointing to a YAML/JSON spec
	File string `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	// Host superseeds the spec's base URL
	Host string `protobuf:"bytes,2,opt,name=host,proto3" json:"host,omitempty"`
	// HeaderAuthorization is added as bearer token if non-empty
	HeaderAuthorization string `protobuf:"bytes,3,opt,name=header_authorization,json=headerAuthorization,proto3" json:"header_authorization,omitempty"`
	// Spec is the spec pointed at by File
	Spec *SpecIR `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty"`
	// contains filtered or unexported fields
}

func (*Clt_Fuzz_Model_OpenAPIv3) Descriptor deprecated

func (*Clt_Fuzz_Model_OpenAPIv3) Descriptor() ([]byte, []int)

Deprecated: Use Clt_Fuzz_Model_OpenAPIv3.ProtoReflect.Descriptor instead.

func (*Clt_Fuzz_Model_OpenAPIv3) EqualVT

func (*Clt_Fuzz_Model_OpenAPIv3) GetFile

func (x *Clt_Fuzz_Model_OpenAPIv3) GetFile() string

func (*Clt_Fuzz_Model_OpenAPIv3) GetHeaderAuthorization

func (x *Clt_Fuzz_Model_OpenAPIv3) GetHeaderAuthorization() string

func (*Clt_Fuzz_Model_OpenAPIv3) GetHost

func (x *Clt_Fuzz_Model_OpenAPIv3) GetHost() string

func (*Clt_Fuzz_Model_OpenAPIv3) GetSpec

func (x *Clt_Fuzz_Model_OpenAPIv3) GetSpec() *SpecIR

func (*Clt_Fuzz_Model_OpenAPIv3) MarshalToSizedBufferVT

func (m *Clt_Fuzz_Model_OpenAPIv3) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Model_OpenAPIv3) MarshalToVT

func (m *Clt_Fuzz_Model_OpenAPIv3) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Model_OpenAPIv3) MarshalVT

func (m *Clt_Fuzz_Model_OpenAPIv3) MarshalVT() (dAtA []byte, err error)

func (*Clt_Fuzz_Model_OpenAPIv3) ProtoMessage

func (*Clt_Fuzz_Model_OpenAPIv3) ProtoMessage()

func (*Clt_Fuzz_Model_OpenAPIv3) ProtoReflect

func (x *Clt_Fuzz_Model_OpenAPIv3) ProtoReflect() protoreflect.Message

func (*Clt_Fuzz_Model_OpenAPIv3) Reset

func (x *Clt_Fuzz_Model_OpenAPIv3) Reset()

func (*Clt_Fuzz_Model_OpenAPIv3) SizeVT

func (m *Clt_Fuzz_Model_OpenAPIv3) SizeVT() (n int)

func (*Clt_Fuzz_Model_OpenAPIv3) String

func (x *Clt_Fuzz_Model_OpenAPIv3) String() string

func (*Clt_Fuzz_Model_OpenAPIv3) UnmarshalVT

func (m *Clt_Fuzz_Model_OpenAPIv3) UnmarshalVT(dAtA []byte) error

type Clt_Fuzz_Model_Openapiv3

type Clt_Fuzz_Model_Openapiv3 struct {
	Openapiv3 *Clt_Fuzz_Model_OpenAPIv3 `protobuf:"bytes,2,opt,name=openapiv3,proto3,oneof"`
}

func (*Clt_Fuzz_Model_Openapiv3) EqualVT

func (this *Clt_Fuzz_Model_Openapiv3) EqualVT(thatIface isClt_Fuzz_Model_Model) bool

func (*Clt_Fuzz_Model_Openapiv3) MarshalToSizedBufferVT

func (m *Clt_Fuzz_Model_Openapiv3) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Model_Openapiv3) MarshalToVT

func (m *Clt_Fuzz_Model_Openapiv3) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Model_Openapiv3) SizeVT

func (m *Clt_Fuzz_Model_Openapiv3) SizeVT() (n int)

type Clt_Fuzz_Resetter

type Clt_Fuzz_Resetter struct {
	Name     string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Provides []string `protobuf:"bytes,2,rep,name=provides,proto3" json:"provides,omitempty"`
	// Types that are assignable to Resetter:
	//
	//	*Clt_Fuzz_Resetter_Shell_
	Resetter isClt_Fuzz_Resetter_Resetter `protobuf_oneof:"resetter"`
	// contains filtered or unexported fields
}

func (*Clt_Fuzz_Resetter) Descriptor deprecated

func (*Clt_Fuzz_Resetter) Descriptor() ([]byte, []int)

Deprecated: Use Clt_Fuzz_Resetter.ProtoReflect.Descriptor instead.

func (*Clt_Fuzz_Resetter) EqualVT

func (this *Clt_Fuzz_Resetter) EqualVT(that *Clt_Fuzz_Resetter) bool

func (*Clt_Fuzz_Resetter) GetName

func (x *Clt_Fuzz_Resetter) GetName() string

func (*Clt_Fuzz_Resetter) GetProvides

func (x *Clt_Fuzz_Resetter) GetProvides() []string

func (*Clt_Fuzz_Resetter) GetResetter

func (m *Clt_Fuzz_Resetter) GetResetter() isClt_Fuzz_Resetter_Resetter

func (*Clt_Fuzz_Resetter) GetShell

func (*Clt_Fuzz_Resetter) MarshalToSizedBufferVT

func (m *Clt_Fuzz_Resetter) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Resetter) MarshalToVT

func (m *Clt_Fuzz_Resetter) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Resetter) MarshalVT

func (m *Clt_Fuzz_Resetter) MarshalVT() (dAtA []byte, err error)

func (*Clt_Fuzz_Resetter) ProtoMessage

func (*Clt_Fuzz_Resetter) ProtoMessage()

func (*Clt_Fuzz_Resetter) ProtoReflect

func (x *Clt_Fuzz_Resetter) ProtoReflect() protoreflect.Message

func (*Clt_Fuzz_Resetter) Reset

func (x *Clt_Fuzz_Resetter) Reset()

func (*Clt_Fuzz_Resetter) SizeVT

func (m *Clt_Fuzz_Resetter) SizeVT() (n int)

func (*Clt_Fuzz_Resetter) String

func (x *Clt_Fuzz_Resetter) String() string

func (*Clt_Fuzz_Resetter) UnmarshalVT

func (m *Clt_Fuzz_Resetter) UnmarshalVT(dAtA []byte) error

type Clt_Fuzz_Resetter_Shell

type Clt_Fuzz_Resetter_Shell struct {
	Start string `protobuf:"bytes,1,opt,name=start,proto3" json:"start,omitempty"`
	Rst   string `protobuf:"bytes,2,opt,name=rst,proto3" json:"rst,omitempty"`
	Stop  string `protobuf:"bytes,3,opt,name=stop,proto3" json:"stop,omitempty"`
	// contains filtered or unexported fields
}

func (*Clt_Fuzz_Resetter_Shell) Descriptor deprecated

func (*Clt_Fuzz_Resetter_Shell) Descriptor() ([]byte, []int)

Deprecated: Use Clt_Fuzz_Resetter_Shell.ProtoReflect.Descriptor instead.

func (*Clt_Fuzz_Resetter_Shell) EqualVT

func (*Clt_Fuzz_Resetter_Shell) GetRst

func (x *Clt_Fuzz_Resetter_Shell) GetRst() string

func (*Clt_Fuzz_Resetter_Shell) GetStart

func (x *Clt_Fuzz_Resetter_Shell) GetStart() string

func (*Clt_Fuzz_Resetter_Shell) GetStop

func (x *Clt_Fuzz_Resetter_Shell) GetStop() string

func (*Clt_Fuzz_Resetter_Shell) MarshalToSizedBufferVT

func (m *Clt_Fuzz_Resetter_Shell) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Resetter_Shell) MarshalToVT

func (m *Clt_Fuzz_Resetter_Shell) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Resetter_Shell) MarshalVT

func (m *Clt_Fuzz_Resetter_Shell) MarshalVT() (dAtA []byte, err error)

func (*Clt_Fuzz_Resetter_Shell) ProtoMessage

func (*Clt_Fuzz_Resetter_Shell) ProtoMessage()

func (*Clt_Fuzz_Resetter_Shell) ProtoReflect

func (x *Clt_Fuzz_Resetter_Shell) ProtoReflect() protoreflect.Message

func (*Clt_Fuzz_Resetter_Shell) Reset

func (x *Clt_Fuzz_Resetter_Shell) Reset()

func (*Clt_Fuzz_Resetter_Shell) SizeVT

func (m *Clt_Fuzz_Resetter_Shell) SizeVT() (n int)

func (*Clt_Fuzz_Resetter_Shell) String

func (x *Clt_Fuzz_Resetter_Shell) String() string

func (*Clt_Fuzz_Resetter_Shell) UnmarshalVT

func (m *Clt_Fuzz_Resetter_Shell) UnmarshalVT(dAtA []byte) error

type Clt_Fuzz_Resetter_Shell_

type Clt_Fuzz_Resetter_Shell_ struct {
	Shell *Clt_Fuzz_Resetter_Shell `protobuf:"bytes,3,opt,name=shell,proto3,oneof"`
}

func (*Clt_Fuzz_Resetter_Shell_) EqualVT

func (this *Clt_Fuzz_Resetter_Shell_) EqualVT(thatIface isClt_Fuzz_Resetter_Resetter) bool

func (*Clt_Fuzz_Resetter_Shell_) MarshalToSizedBufferVT

func (m *Clt_Fuzz_Resetter_Shell_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Resetter_Shell_) MarshalToVT

func (m *Clt_Fuzz_Resetter_Shell_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_Fuzz_Resetter_Shell_) SizeVT

func (m *Clt_Fuzz_Resetter_Shell_) SizeVT() (n int)

type Clt_ResetProgress

type Clt_ResetProgress struct {
	Status    Clt_ResetProgress_Status `protobuf:"varint,1,opt,name=status,proto3,enum=fm.Clt_ResetProgress_Status" json:"status,omitempty"`
	ElapsedNs int64                    `protobuf:"varint,2,opt,name=elapsed_ns,json=elapsedNs,proto3" json:"elapsed_ns,omitempty"`
	Reason    []string                 `protobuf:"bytes,3,rep,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*Clt_ResetProgress) Descriptor deprecated

func (*Clt_ResetProgress) Descriptor() ([]byte, []int)

Deprecated: Use Clt_ResetProgress.ProtoReflect.Descriptor instead.

func (*Clt_ResetProgress) EqualVT

func (this *Clt_ResetProgress) EqualVT(that *Clt_ResetProgress) bool

func (*Clt_ResetProgress) GetElapsedNs

func (x *Clt_ResetProgress) GetElapsedNs() int64

func (*Clt_ResetProgress) GetReason

func (x *Clt_ResetProgress) GetReason() []string

func (*Clt_ResetProgress) GetStatus

func (*Clt_ResetProgress) MarshalToSizedBufferVT

func (m *Clt_ResetProgress) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_ResetProgress) MarshalToVT

func (m *Clt_ResetProgress) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_ResetProgress) MarshalVT

func (m *Clt_ResetProgress) MarshalVT() (dAtA []byte, err error)

func (*Clt_ResetProgress) ProtoMessage

func (*Clt_ResetProgress) ProtoMessage()

func (*Clt_ResetProgress) ProtoReflect

func (x *Clt_ResetProgress) ProtoReflect() protoreflect.Message

func (*Clt_ResetProgress) Reset

func (x *Clt_ResetProgress) Reset()

func (*Clt_ResetProgress) SizeVT

func (m *Clt_ResetProgress) SizeVT() (n int)

func (*Clt_ResetProgress) String

func (x *Clt_ResetProgress) String() string

func (*Clt_ResetProgress) UnmarshalVT

func (m *Clt_ResetProgress) UnmarshalVT(dAtA []byte) error

type Clt_ResetProgress_

type Clt_ResetProgress_ struct {
	// SUT state resetting
	ResetProgress *Clt_ResetProgress `protobuf:"bytes,2,opt,name=reset_progress,json=resetProgress,proto3,oneof"`
}

func (*Clt_ResetProgress_) EqualVT

func (this *Clt_ResetProgress_) EqualVT(thatIface isClt_Msg) bool

func (*Clt_ResetProgress_) MarshalToSizedBufferVT

func (m *Clt_ResetProgress_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Clt_ResetProgress_) MarshalToVT

func (m *Clt_ResetProgress_) MarshalToVT(dAtA []byte) (int, error)

func (*Clt_ResetProgress_) SizeVT

func (m *Clt_ResetProgress_) SizeVT() (n int)

type Clt_ResetProgress_Status

type Clt_ResetProgress_Status int32
const (
	Clt_ResetProgress_NOOP    Clt_ResetProgress_Status = 0
	Clt_ResetProgress_started Clt_ResetProgress_Status = 1
	Clt_ResetProgress_ended   Clt_ResetProgress_Status = 2
	Clt_ResetProgress_failed  Clt_ResetProgress_Status = 3
)

func (Clt_ResetProgress_Status) Descriptor

func (Clt_ResetProgress_Status) Enum

func (Clt_ResetProgress_Status) EnumDescriptor deprecated

func (Clt_ResetProgress_Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use Clt_ResetProgress_Status.Descriptor instead.

func (Clt_ResetProgress_Status) Number

func (Clt_ResetProgress_Status) String

func (x Clt_ResetProgress_Status) String() string

func (Clt_ResetProgress_Status) Type

type Endpoint

type Endpoint struct {

	// Types that are assignable to Endpoint:
	//
	//	*Endpoint_Json
	Endpoint isEndpoint_Endpoint `protobuf_oneof:"endpoint"`
	// contains filtered or unexported fields
}

func (*Endpoint) Descriptor deprecated

func (*Endpoint) Descriptor() ([]byte, []int)

Deprecated: Use Endpoint.ProtoReflect.Descriptor instead.

func (*Endpoint) EqualVT

func (this *Endpoint) EqualVT(that *Endpoint) bool

func (*Endpoint) GetEndpoint

func (m *Endpoint) GetEndpoint() isEndpoint_Endpoint

func (*Endpoint) GetJson

func (x *Endpoint) GetJson() *EndpointJSON

func (*Endpoint) MarshalToSizedBufferVT

func (m *Endpoint) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Endpoint) MarshalToVT

func (m *Endpoint) MarshalToVT(dAtA []byte) (int, error)

func (*Endpoint) MarshalVT

func (m *Endpoint) MarshalVT() (dAtA []byte, err error)

func (*Endpoint) ProtoMessage

func (*Endpoint) ProtoMessage()

func (*Endpoint) ProtoReflect

func (x *Endpoint) ProtoReflect() protoreflect.Message

func (*Endpoint) Reset

func (x *Endpoint) Reset()

func (*Endpoint) SizeVT

func (m *Endpoint) SizeVT() (n int)

func (*Endpoint) String

func (x *Endpoint) String() string

func (*Endpoint) UnmarshalVT

func (m *Endpoint) UnmarshalVT(dAtA []byte) error

type EndpointJSON

type EndpointJSON struct {
	Method       EndpointJSON_Method `protobuf:"varint,1,opt,name=method,proto3,enum=fm.EndpointJSON_Method" json:"method,omitempty"`
	PathPartials []*PathPartial      `protobuf:"bytes,2,rep,name=path_partials,json=pathPartials,proto3" json:"path_partials,omitempty"`
	Inputs       []*ParamJSON        `protobuf:"bytes,3,rep,name=inputs,proto3" json:"inputs,omitempty"`
	// The uint32 key replaces an enum of 1XX,...,201,204,...,5XX,XXX.
	// The uint32 values are SID
	Outputs map[uint32]uint32 `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*EndpointJSON) Descriptor deprecated

func (*EndpointJSON) Descriptor() ([]byte, []int)

Deprecated: Use EndpointJSON.ProtoReflect.Descriptor instead.

func (*EndpointJSON) EqualVT

func (this *EndpointJSON) EqualVT(that *EndpointJSON) bool

func (*EndpointJSON) GetInputs

func (x *EndpointJSON) GetInputs() []*ParamJSON

func (*EndpointJSON) GetMethod

func (x *EndpointJSON) GetMethod() EndpointJSON_Method

func (*EndpointJSON) GetOutputs

func (x *EndpointJSON) GetOutputs() map[uint32]uint32

func (*EndpointJSON) GetPathPartials

func (x *EndpointJSON) GetPathPartials() []*PathPartial

func (*EndpointJSON) MarshalToSizedBufferVT

func (m *EndpointJSON) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*EndpointJSON) MarshalToVT

func (m *EndpointJSON) MarshalToVT(dAtA []byte) (int, error)

func (*EndpointJSON) MarshalVT

func (m *EndpointJSON) MarshalVT() (dAtA []byte, err error)

func (*EndpointJSON) ProtoMessage

func (*EndpointJSON) ProtoMessage()

func (*EndpointJSON) ProtoReflect

func (x *EndpointJSON) ProtoReflect() protoreflect.Message

func (*EndpointJSON) Reset

func (x *EndpointJSON) Reset()

func (*EndpointJSON) SizeVT

func (m *EndpointJSON) SizeVT() (n int)

func (*EndpointJSON) String

func (x *EndpointJSON) String() string

func (*EndpointJSON) UnmarshalVT

func (m *EndpointJSON) UnmarshalVT(dAtA []byte) error

type EndpointJSON_Method

type EndpointJSON_Method int32
const (
	EndpointJSON_UNKNOWN EndpointJSON_Method = 0
	EndpointJSON_GET     EndpointJSON_Method = 1
	EndpointJSON_HEAD    EndpointJSON_Method = 2
	EndpointJSON_POST    EndpointJSON_Method = 3
	EndpointJSON_PUT     EndpointJSON_Method = 4
	EndpointJSON_PATCH   EndpointJSON_Method = 5
	EndpointJSON_DELETE  EndpointJSON_Method = 6
	EndpointJSON_CONNECT EndpointJSON_Method = 7
	EndpointJSON_OPTIONS EndpointJSON_Method = 8
	EndpointJSON_TRACE   EndpointJSON_Method = 9
)

func (EndpointJSON_Method) Descriptor

func (EndpointJSON_Method) Enum

func (EndpointJSON_Method) EnumDescriptor deprecated

func (EndpointJSON_Method) EnumDescriptor() ([]byte, []int)

Deprecated: Use EndpointJSON_Method.Descriptor instead.

func (EndpointJSON_Method) Number

func (EndpointJSON_Method) String

func (x EndpointJSON_Method) String() string

func (EndpointJSON_Method) Type

type Endpoint_Json

type Endpoint_Json struct {
	Json *EndpointJSON `protobuf:"bytes,1,opt,name=json,proto3,oneof"`
}

func (*Endpoint_Json) EqualVT

func (this *Endpoint_Json) EqualVT(thatIface isEndpoint_Endpoint) bool

func (*Endpoint_Json) MarshalToSizedBufferVT

func (m *Endpoint_Json) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Endpoint_Json) MarshalToVT

func (m *Endpoint_Json) MarshalToVT(dAtA []byte) (int, error)

func (*Endpoint_Json) SizeVT

func (m *Endpoint_Json) SizeVT() (n int)

type FuzzyMonkeyClient

type FuzzyMonkeyClient interface {
	Do(ctx context.Context, opts ...grpc.CallOption) (FuzzyMonkey_DoClient, error)
}

FuzzyMonkeyClient is the client API for FuzzyMonkey service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type FuzzyMonkeyServer

type FuzzyMonkeyServer interface {
	Do(FuzzyMonkey_DoServer) error
	// contains filtered or unexported methods
}

FuzzyMonkeyServer is the server API for FuzzyMonkey service. All implementations must embed UnimplementedFuzzyMonkeyServer for forward compatibility

type FuzzyMonkey_DoClient

type FuzzyMonkey_DoClient interface {
	Send(*Clt) error
	Recv() (*Srv, error)
	grpc.ClientStream
}

type FuzzyMonkey_DoServer

type FuzzyMonkey_DoServer interface {
	Send(*Srv) error
	Recv() (*Clt, error)
	grpc.ServerStream
}

type HeaderPair

type HeaderPair struct {
	Key    string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Values []string `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*HeaderPair) Descriptor deprecated

func (*HeaderPair) Descriptor() ([]byte, []int)

Deprecated: Use HeaderPair.ProtoReflect.Descriptor instead.

func (*HeaderPair) EqualVT

func (this *HeaderPair) EqualVT(that *HeaderPair) bool

func (*HeaderPair) GetKey

func (x *HeaderPair) GetKey() string

func (*HeaderPair) GetValues

func (x *HeaderPair) GetValues() []string

func (*HeaderPair) MarshalToSizedBufferVT

func (m *HeaderPair) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*HeaderPair) MarshalToVT

func (m *HeaderPair) MarshalToVT(dAtA []byte) (int, error)

func (*HeaderPair) MarshalVT

func (m *HeaderPair) MarshalVT() (dAtA []byte, err error)

func (*HeaderPair) ProtoMessage

func (*HeaderPair) ProtoMessage()

func (*HeaderPair) ProtoReflect

func (x *HeaderPair) ProtoReflect() protoreflect.Message

func (*HeaderPair) Reset

func (x *HeaderPair) Reset()

func (*HeaderPair) SizeVT

func (m *HeaderPair) SizeVT() (n int)

func (*HeaderPair) String

func (x *HeaderPair) String() string

func (*HeaderPair) UnmarshalVT

func (m *HeaderPair) UnmarshalVT(dAtA []byte) error

type ParamJSON

type ParamJSON struct {
	IsRequired bool   `protobuf:"varint,1,opt,name=is_required,json=isRequired,proto3" json:"is_required,omitempty"`
	SID        uint32 `protobuf:"varint,2,opt,name=SID,proto3" json:"SID,omitempty"`
	// Note: bodies have an empty name
	Name string         `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Kind ParamJSON_Kind `protobuf:"varint,4,opt,name=kind,proto3,enum=fm.ParamJSON_Kind" json:"kind,omitempty"`
	// contains filtered or unexported fields
}

func (*ParamJSON) Descriptor deprecated

func (*ParamJSON) Descriptor() ([]byte, []int)

Deprecated: Use ParamJSON.ProtoReflect.Descriptor instead.

func (*ParamJSON) EqualVT

func (this *ParamJSON) EqualVT(that *ParamJSON) bool

func (*ParamJSON) GetIsRequired

func (x *ParamJSON) GetIsRequired() bool

func (*ParamJSON) GetKind

func (x *ParamJSON) GetKind() ParamJSON_Kind

func (*ParamJSON) GetName

func (x *ParamJSON) GetName() string

func (*ParamJSON) GetSID

func (x *ParamJSON) GetSID() uint32

func (*ParamJSON) MarshalToSizedBufferVT

func (m *ParamJSON) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ParamJSON) MarshalToVT

func (m *ParamJSON) MarshalToVT(dAtA []byte) (int, error)

func (*ParamJSON) MarshalVT

func (m *ParamJSON) MarshalVT() (dAtA []byte, err error)

func (*ParamJSON) ProtoMessage

func (*ParamJSON) ProtoMessage()

func (*ParamJSON) ProtoReflect

func (x *ParamJSON) ProtoReflect() protoreflect.Message

func (*ParamJSON) Reset

func (x *ParamJSON) Reset()

func (*ParamJSON) SizeVT

func (m *ParamJSON) SizeVT() (n int)

func (*ParamJSON) String

func (x *ParamJSON) String() string

func (*ParamJSON) UnmarshalVT

func (m *ParamJSON) UnmarshalVT(dAtA []byte) error

type ParamJSON_Kind

type ParamJSON_Kind int32
const (
	ParamJSON_UNKNOWN ParamJSON_Kind = 0
	ParamJSON_body    ParamJSON_Kind = 1
	ParamJSON_path    ParamJSON_Kind = 2
	ParamJSON_query   ParamJSON_Kind = 3
	ParamJSON_header  ParamJSON_Kind = 4
	ParamJSON_cookie  ParamJSON_Kind = 5
)

func (ParamJSON_Kind) Descriptor

func (ParamJSON_Kind) Enum

func (x ParamJSON_Kind) Enum() *ParamJSON_Kind

func (ParamJSON_Kind) EnumDescriptor deprecated

func (ParamJSON_Kind) EnumDescriptor() ([]byte, []int)

Deprecated: Use ParamJSON_Kind.Descriptor instead.

func (ParamJSON_Kind) Number

func (ParamJSON_Kind) String

func (x ParamJSON_Kind) String() string

func (ParamJSON_Kind) Type

type PathPartial

type PathPartial struct {

	// Types that are assignable to Pp:
	//
	//	*PathPartial_Part
	//	*PathPartial_Ptr
	Pp isPathPartial_Pp `protobuf_oneof:"pp"`
	// contains filtered or unexported fields
}

func (*PathPartial) Descriptor deprecated

func (*PathPartial) Descriptor() ([]byte, []int)

Deprecated: Use PathPartial.ProtoReflect.Descriptor instead.

func (*PathPartial) EqualVT

func (this *PathPartial) EqualVT(that *PathPartial) bool

func (*PathPartial) GetPart

func (x *PathPartial) GetPart() string

func (*PathPartial) GetPp

func (m *PathPartial) GetPp() isPathPartial_Pp

func (*PathPartial) GetPtr

func (x *PathPartial) GetPtr() string

func (*PathPartial) MarshalToSizedBufferVT

func (m *PathPartial) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*PathPartial) MarshalToVT

func (m *PathPartial) MarshalToVT(dAtA []byte) (int, error)

func (*PathPartial) MarshalVT

func (m *PathPartial) MarshalVT() (dAtA []byte, err error)

func (*PathPartial) ProtoMessage

func (*PathPartial) ProtoMessage()

func (*PathPartial) ProtoReflect

func (x *PathPartial) ProtoReflect() protoreflect.Message

func (*PathPartial) Reset

func (x *PathPartial) Reset()

func (*PathPartial) SizeVT

func (m *PathPartial) SizeVT() (n int)

func (*PathPartial) String

func (x *PathPartial) String() string

func (*PathPartial) UnmarshalVT

func (m *PathPartial) UnmarshalVT(dAtA []byte) error

type PathPartial_Part

type PathPartial_Part struct {
	Part string `protobuf:"bytes,1,opt,name=part,proto3,oneof"`
}

func (*PathPartial_Part) EqualVT

func (this *PathPartial_Part) EqualVT(thatIface isPathPartial_Pp) bool

func (*PathPartial_Part) MarshalToSizedBufferVT

func (m *PathPartial_Part) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*PathPartial_Part) MarshalToVT

func (m *PathPartial_Part) MarshalToVT(dAtA []byte) (int, error)

func (*PathPartial_Part) SizeVT

func (m *PathPartial_Part) SizeVT() (n int)

type PathPartial_Ptr

type PathPartial_Ptr struct {
	Ptr string `protobuf:"bytes,2,opt,name=ptr,proto3,oneof"`
}

func (*PathPartial_Ptr) EqualVT

func (this *PathPartial_Ptr) EqualVT(thatIface isPathPartial_Pp) bool

func (*PathPartial_Ptr) MarshalToSizedBufferVT

func (m *PathPartial_Ptr) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*PathPartial_Ptr) MarshalToVT

func (m *PathPartial_Ptr) MarshalToVT(dAtA []byte) (int, error)

func (*PathPartial_Ptr) SizeVT

func (m *PathPartial_Ptr) SizeVT() (n int)

type RefOrSchemaJSON

type RefOrSchemaJSON struct {

	// Types that are assignable to PtrOrSchema:
	//
	//	*RefOrSchemaJSON_Ptr
	//	*RefOrSchemaJSON_Schema
	PtrOrSchema isRefOrSchemaJSON_PtrOrSchema `protobuf_oneof:"ptr_or_schema"`
	// contains filtered or unexported fields
}

func (*RefOrSchemaJSON) Descriptor deprecated

func (*RefOrSchemaJSON) Descriptor() ([]byte, []int)

Deprecated: Use RefOrSchemaJSON.ProtoReflect.Descriptor instead.

func (*RefOrSchemaJSON) EqualVT

func (this *RefOrSchemaJSON) EqualVT(that *RefOrSchemaJSON) bool

func (*RefOrSchemaJSON) GetPtr

func (x *RefOrSchemaJSON) GetPtr() *SchemaPtr

func (*RefOrSchemaJSON) GetPtrOrSchema

func (m *RefOrSchemaJSON) GetPtrOrSchema() isRefOrSchemaJSON_PtrOrSchema

func (*RefOrSchemaJSON) GetSchema

func (x *RefOrSchemaJSON) GetSchema() *Schema_JSON

func (*RefOrSchemaJSON) MarshalToSizedBufferVT

func (m *RefOrSchemaJSON) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RefOrSchemaJSON) MarshalToVT

func (m *RefOrSchemaJSON) MarshalToVT(dAtA []byte) (int, error)

func (*RefOrSchemaJSON) MarshalVT

func (m *RefOrSchemaJSON) MarshalVT() (dAtA []byte, err error)

func (*RefOrSchemaJSON) ProtoMessage

func (*RefOrSchemaJSON) ProtoMessage()

func (*RefOrSchemaJSON) ProtoReflect

func (x *RefOrSchemaJSON) ProtoReflect() protoreflect.Message

func (*RefOrSchemaJSON) Reset

func (x *RefOrSchemaJSON) Reset()

func (*RefOrSchemaJSON) SizeVT

func (m *RefOrSchemaJSON) SizeVT() (n int)

func (*RefOrSchemaJSON) String

func (x *RefOrSchemaJSON) String() string

func (*RefOrSchemaJSON) UnmarshalVT

func (m *RefOrSchemaJSON) UnmarshalVT(dAtA []byte) error

type RefOrSchemaJSON_Ptr

type RefOrSchemaJSON_Ptr struct {
	// Probably most often from a $ref
	// Only use SchemaPtr here. Everywhere else use SID.
	Ptr *SchemaPtr `protobuf:"bytes,1,opt,name=ptr,proto3,oneof"`
}

func (*RefOrSchemaJSON_Ptr) EqualVT

func (this *RefOrSchemaJSON_Ptr) EqualVT(thatIface isRefOrSchemaJSON_PtrOrSchema) bool

func (*RefOrSchemaJSON_Ptr) MarshalToSizedBufferVT

func (m *RefOrSchemaJSON_Ptr) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RefOrSchemaJSON_Ptr) MarshalToVT

func (m *RefOrSchemaJSON_Ptr) MarshalToVT(dAtA []byte) (int, error)

func (*RefOrSchemaJSON_Ptr) SizeVT

func (m *RefOrSchemaJSON_Ptr) SizeVT() (n int)

type RefOrSchemaJSON_Schema

type RefOrSchemaJSON_Schema struct {
	// Actual schema when not a $ref
	Schema *Schema_JSON `protobuf:"bytes,2,opt,name=schema,proto3,oneof"`
}

func (*RefOrSchemaJSON_Schema) EqualVT

func (this *RefOrSchemaJSON_Schema) EqualVT(thatIface isRefOrSchemaJSON_PtrOrSchema) bool

func (*RefOrSchemaJSON_Schema) MarshalToSizedBufferVT

func (m *RefOrSchemaJSON_Schema) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RefOrSchemaJSON_Schema) MarshalToVT

func (m *RefOrSchemaJSON_Schema) MarshalToVT(dAtA []byte) (int, error)

func (*RefOrSchemaJSON_Schema) SizeVT

func (m *RefOrSchemaJSON_Schema) SizeVT() (n int)

type Schema

type Schema struct {
	// contains filtered or unexported fields
}

func (*Schema) Descriptor deprecated

func (*Schema) Descriptor() ([]byte, []int)

Deprecated: Use Schema.ProtoReflect.Descriptor instead.

func (*Schema) EqualVT

func (this *Schema) EqualVT(that *Schema) bool

func (*Schema) MarshalToSizedBufferVT

func (m *Schema) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Schema) MarshalToVT

func (m *Schema) MarshalToVT(dAtA []byte) (int, error)

func (*Schema) MarshalVT

func (m *Schema) MarshalVT() (dAtA []byte, err error)

func (*Schema) ProtoMessage

func (*Schema) ProtoMessage()

func (*Schema) ProtoReflect

func (x *Schema) ProtoReflect() protoreflect.Message

func (*Schema) Reset

func (x *Schema) Reset()

func (*Schema) SizeVT

func (m *Schema) SizeVT() (n int)

func (*Schema) String

func (x *Schema) String() string

func (*Schema) UnmarshalVT

func (m *Schema) UnmarshalVT(dAtA []byte) error

type SchemaPtr

type SchemaPtr struct {

	// Pointer to actual schema. i.e. key in Schemas message.
	SID uint32 `protobuf:"varint,1,opt,name=SID,proto3" json:"SID,omitempty"`
	// $ref if was ref'd, in canonical/absolute (#/...-like) format.
	Ref string `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*SchemaPtr) Descriptor deprecated

func (*SchemaPtr) Descriptor() ([]byte, []int)

Deprecated: Use SchemaPtr.ProtoReflect.Descriptor instead.

func (*SchemaPtr) EqualVT

func (this *SchemaPtr) EqualVT(that *SchemaPtr) bool

func (*SchemaPtr) GetRef

func (x *SchemaPtr) GetRef() string

func (*SchemaPtr) GetSID

func (x *SchemaPtr) GetSID() uint32

func (*SchemaPtr) MarshalToSizedBufferVT

func (m *SchemaPtr) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*SchemaPtr) MarshalToVT

func (m *SchemaPtr) MarshalToVT(dAtA []byte) (int, error)

func (*SchemaPtr) MarshalVT

func (m *SchemaPtr) MarshalVT() (dAtA []byte, err error)

func (*SchemaPtr) ProtoMessage

func (*SchemaPtr) ProtoMessage()

func (*SchemaPtr) ProtoReflect

func (x *SchemaPtr) ProtoReflect() protoreflect.Message

func (*SchemaPtr) Reset

func (x *SchemaPtr) Reset()

func (*SchemaPtr) SizeVT

func (m *SchemaPtr) SizeVT() (n int)

func (*SchemaPtr) String

func (x *SchemaPtr) String() string

func (*SchemaPtr) UnmarshalVT

func (m *SchemaPtr) UnmarshalVT(dAtA []byte) error

type Schema_JSON

type Schema_JSON struct {
	Types        []Schema_JSON_Type `protobuf:"varint,1,rep,packed,name=types,proto3,enum=fm.Schema_JSON_Type" json:"types,omitempty"`
	Enum         []*structpb.Value  `protobuf:"bytes,2,rep,name=enum,proto3" json:"enum,omitempty"`
	Format       string             `protobuf:"bytes,3,opt,name=format,proto3" json:"format,omitempty"`
	MinLength    uint64             `protobuf:"varint,4,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
	MaxLength    uint64             `protobuf:"varint,5,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
	HasMaxLength bool               `protobuf:"varint,6,opt,name=has_max_length,json=hasMaxLength,proto3" json:"has_max_length,omitempty"`
	Pattern      string             `protobuf:"bytes,7,opt,name=pattern,proto3" json:"pattern,omitempty"`
	// type: number | integer
	Minimum              float64 `protobuf:"fixed64,8,opt,name=minimum,proto3" json:"minimum,omitempty"`
	Maximum              float64 `protobuf:"fixed64,9,opt,name=maximum,proto3" json:"maximum,omitempty"`
	HasMinimum           bool    `protobuf:"varint,10,opt,name=has_minimum,json=hasMinimum,proto3" json:"has_minimum,omitempty"`
	HasMaximum           bool    `protobuf:"varint,11,opt,name=has_maximum,json=hasMaximum,proto3" json:"has_maximum,omitempty"`
	TranslatedMultipleOf float64 `` // default: 0.0, add +1.0 when reading
	/* 126-byte string literal not displayed */
	ExclusiveMinimum bool `protobuf:"varint,13,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
	ExclusiveMaximum bool `protobuf:"varint,14,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
	// type: array
	Items       []uint32 `protobuf:"varint,15,rep,packed,name=items,proto3" json:"items,omitempty"`
	UniqueItems bool     `protobuf:"varint,16,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
	MinItems    uint64   `protobuf:"varint,17,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
	MaxItems    uint64   `protobuf:"varint,18,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
	HasMaxItems bool     `protobuf:"varint,19,opt,name=has_max_items,json=hasMaxItems,proto3" json:"has_max_items,omitempty"` // TODO: additionalItems :: bool | SID
	// type: object
	Properties              map[string]uint32                 `` /* 163-byte string literal not displayed */
	Required                []string                          `protobuf:"bytes,21,rep,name=required,proto3" json:"required,omitempty"`
	MinProperties           uint64                            `protobuf:"varint,22,opt,name=min_properties,json=minProperties,proto3" json:"min_properties,omitempty"`
	MaxProperties           uint64                            `protobuf:"varint,23,opt,name=max_properties,json=maxProperties,proto3" json:"max_properties,omitempty"`
	HasMaxProperties        bool                              `protobuf:"varint,24,opt,name=has_max_properties,json=hasMaxProperties,proto3" json:"has_max_properties,omitempty"`
	AdditionalProperties    *Schema_JSON_AdditionalProperties `protobuf:"bytes,25,opt,name=additional_properties,json=additionalProperties,proto3" json:"additional_properties,omitempty"`
	HasAdditionalProperties bool                              `` // TODO: patternProperties :: SID
	/* 134-byte string literal not displayed */
	AllOf []uint32 `protobuf:"varint,27,rep,packed,name=all_of,json=allOf,proto3" json:"all_of,omitempty"`
	AnyOf []uint32 `protobuf:"varint,28,rep,packed,name=any_of,json=anyOf,proto3" json:"any_of,omitempty"`
	OneOf []uint32 `protobuf:"varint,29,rep,packed,name=one_of,json=oneOf,proto3" json:"one_of,omitempty"`
	Not   uint32   `protobuf:"varint,30,opt,name=not,proto3" json:"not,omitempty"`
	// contains filtered or unexported fields
}

func (*Schema_JSON) Descriptor deprecated

func (*Schema_JSON) Descriptor() ([]byte, []int)

Deprecated: Use Schema_JSON.ProtoReflect.Descriptor instead.

func (*Schema_JSON) EqualVT

func (this *Schema_JSON) EqualVT(that *Schema_JSON) bool

func (*Schema_JSON) GetAdditionalProperties

func (x *Schema_JSON) GetAdditionalProperties() *Schema_JSON_AdditionalProperties

func (*Schema_JSON) GetAllOf

func (x *Schema_JSON) GetAllOf() []uint32

func (*Schema_JSON) GetAnyOf

func (x *Schema_JSON) GetAnyOf() []uint32

func (*Schema_JSON) GetEnum

func (x *Schema_JSON) GetEnum() []*structpb.Value

func (*Schema_JSON) GetExclusiveMaximum

func (x *Schema_JSON) GetExclusiveMaximum() bool

func (*Schema_JSON) GetExclusiveMinimum

func (x *Schema_JSON) GetExclusiveMinimum() bool

func (*Schema_JSON) GetFormat

func (x *Schema_JSON) GetFormat() string

func (*Schema_JSON) GetHasAdditionalProperties

func (x *Schema_JSON) GetHasAdditionalProperties() bool

func (*Schema_JSON) GetHasMaxItems

func (x *Schema_JSON) GetHasMaxItems() bool

func (*Schema_JSON) GetHasMaxLength

func (x *Schema_JSON) GetHasMaxLength() bool

func (*Schema_JSON) GetHasMaxProperties

func (x *Schema_JSON) GetHasMaxProperties() bool

func (*Schema_JSON) GetHasMaximum

func (x *Schema_JSON) GetHasMaximum() bool

func (*Schema_JSON) GetHasMinimum

func (x *Schema_JSON) GetHasMinimum() bool

func (*Schema_JSON) GetItems

func (x *Schema_JSON) GetItems() []uint32

func (*Schema_JSON) GetMaxItems

func (x *Schema_JSON) GetMaxItems() uint64

func (*Schema_JSON) GetMaxLength

func (x *Schema_JSON) GetMaxLength() uint64

func (*Schema_JSON) GetMaxProperties

func (x *Schema_JSON) GetMaxProperties() uint64

func (*Schema_JSON) GetMaximum

func (x *Schema_JSON) GetMaximum() float64

func (*Schema_JSON) GetMinItems

func (x *Schema_JSON) GetMinItems() uint64

func (*Schema_JSON) GetMinLength

func (x *Schema_JSON) GetMinLength() uint64

func (*Schema_JSON) GetMinProperties

func (x *Schema_JSON) GetMinProperties() uint64

func (*Schema_JSON) GetMinimum

func (x *Schema_JSON) GetMinimum() float64

func (*Schema_JSON) GetNot

func (x *Schema_JSON) GetNot() uint32

func (*Schema_JSON) GetOneOf

func (x *Schema_JSON) GetOneOf() []uint32

func (*Schema_JSON) GetPattern

func (x *Schema_JSON) GetPattern() string

func (*Schema_JSON) GetProperties

func (x *Schema_JSON) GetProperties() map[string]uint32

func (*Schema_JSON) GetRequired

func (x *Schema_JSON) GetRequired() []string

func (*Schema_JSON) GetTranslatedMultipleOf

func (x *Schema_JSON) GetTranslatedMultipleOf() float64

func (*Schema_JSON) GetTypes

func (x *Schema_JSON) GetTypes() []Schema_JSON_Type

func (*Schema_JSON) GetUniqueItems

func (x *Schema_JSON) GetUniqueItems() bool

func (*Schema_JSON) MarshalToSizedBufferVT

func (m *Schema_JSON) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Schema_JSON) MarshalToVT

func (m *Schema_JSON) MarshalToVT(dAtA []byte) (int, error)

func (*Schema_JSON) MarshalVT

func (m *Schema_JSON) MarshalVT() (dAtA []byte, err error)

func (*Schema_JSON) ProtoMessage

func (*Schema_JSON) ProtoMessage()

func (*Schema_JSON) ProtoReflect

func (x *Schema_JSON) ProtoReflect() protoreflect.Message

func (*Schema_JSON) Reset

func (x *Schema_JSON) Reset()

func (*Schema_JSON) SizeVT

func (m *Schema_JSON) SizeVT() (n int)

func (*Schema_JSON) String

func (x *Schema_JSON) String() string

func (*Schema_JSON) UnmarshalVT

func (m *Schema_JSON) UnmarshalVT(dAtA []byte) error

type Schema_JSON_AdditionalProperties

type Schema_JSON_AdditionalProperties struct {

	// Types that are assignable to AddProps:
	//
	//	*Schema_JSON_AdditionalProperties_AlwaysSucceed
	//	*Schema_JSON_AdditionalProperties_SID
	AddProps isSchema_JSON_AdditionalProperties_AddProps `protobuf_oneof:"add_props"`
	// contains filtered or unexported fields
}

func (*Schema_JSON_AdditionalProperties) Descriptor deprecated

func (*Schema_JSON_AdditionalProperties) Descriptor() ([]byte, []int)

Deprecated: Use Schema_JSON_AdditionalProperties.ProtoReflect.Descriptor instead.

func (*Schema_JSON_AdditionalProperties) EqualVT

func (*Schema_JSON_AdditionalProperties) GetAddProps

func (m *Schema_JSON_AdditionalProperties) GetAddProps() isSchema_JSON_AdditionalProperties_AddProps

func (*Schema_JSON_AdditionalProperties) GetAlwaysSucceed

func (x *Schema_JSON_AdditionalProperties) GetAlwaysSucceed() bool

func (*Schema_JSON_AdditionalProperties) GetSID

func (*Schema_JSON_AdditionalProperties) MarshalToSizedBufferVT

func (m *Schema_JSON_AdditionalProperties) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Schema_JSON_AdditionalProperties) MarshalToVT

func (m *Schema_JSON_AdditionalProperties) MarshalToVT(dAtA []byte) (int, error)

func (*Schema_JSON_AdditionalProperties) MarshalVT

func (m *Schema_JSON_AdditionalProperties) MarshalVT() (dAtA []byte, err error)

func (*Schema_JSON_AdditionalProperties) ProtoMessage

func (*Schema_JSON_AdditionalProperties) ProtoMessage()

func (*Schema_JSON_AdditionalProperties) ProtoReflect

func (*Schema_JSON_AdditionalProperties) Reset

func (*Schema_JSON_AdditionalProperties) SizeVT

func (m *Schema_JSON_AdditionalProperties) SizeVT() (n int)

func (*Schema_JSON_AdditionalProperties) String

func (*Schema_JSON_AdditionalProperties) UnmarshalVT

func (m *Schema_JSON_AdditionalProperties) UnmarshalVT(dAtA []byte) error

type Schema_JSON_AdditionalProperties_AlwaysSucceed

type Schema_JSON_AdditionalProperties_AlwaysSucceed struct {
	AlwaysSucceed bool `protobuf:"varint,1,opt,name=always_succeed,json=alwaysSucceed,proto3,oneof"` // TODO: simplify: true is equivalent to {}, false is equivalent to {"not": {}}
}

func (*Schema_JSON_AdditionalProperties_AlwaysSucceed) EqualVT

func (this *Schema_JSON_AdditionalProperties_AlwaysSucceed) EqualVT(thatIface isSchema_JSON_AdditionalProperties_AddProps) bool

func (*Schema_JSON_AdditionalProperties_AlwaysSucceed) MarshalToSizedBufferVT

func (m *Schema_JSON_AdditionalProperties_AlwaysSucceed) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Schema_JSON_AdditionalProperties_AlwaysSucceed) MarshalToVT

func (*Schema_JSON_AdditionalProperties_AlwaysSucceed) SizeVT

type Schema_JSON_AdditionalProperties_SID

type Schema_JSON_AdditionalProperties_SID struct {
	SID uint32 `protobuf:"varint,2,opt,name=SID,proto3,oneof"`
}

func (*Schema_JSON_AdditionalProperties_SID) EqualVT

func (this *Schema_JSON_AdditionalProperties_SID) EqualVT(thatIface isSchema_JSON_AdditionalProperties_AddProps) bool

func (*Schema_JSON_AdditionalProperties_SID) MarshalToSizedBufferVT

func (m *Schema_JSON_AdditionalProperties_SID) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Schema_JSON_AdditionalProperties_SID) MarshalToVT

func (m *Schema_JSON_AdditionalProperties_SID) MarshalToVT(dAtA []byte) (int, error)

func (*Schema_JSON_AdditionalProperties_SID) SizeVT

func (m *Schema_JSON_AdditionalProperties_SID) SizeVT() (n int)

type Schema_JSON_Type

type Schema_JSON_Type int32
const (
	Schema_JSON_UNKNOWN Schema_JSON_Type = 0
	Schema_JSON_any     Schema_JSON_Type = 1
	Schema_JSON_null    Schema_JSON_Type = 2
	Schema_JSON_boolean Schema_JSON_Type = 3
	Schema_JSON_integer Schema_JSON_Type = 4
	Schema_JSON_number  Schema_JSON_Type = 5
	Schema_JSON_array   Schema_JSON_Type = 6
	Schema_JSON_string  Schema_JSON_Type = 7
	Schema_JSON_object  Schema_JSON_Type = 8
)

func (Schema_JSON_Type) Descriptor

func (Schema_JSON_Type) Enum

func (Schema_JSON_Type) EnumDescriptor deprecated

func (Schema_JSON_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use Schema_JSON_Type.Descriptor instead.

func (Schema_JSON_Type) Number

func (Schema_JSON_Type) String

func (x Schema_JSON_Type) String() string

func (Schema_JSON_Type) Type

type Schemas

type Schemas struct {

	// All schemas are here.
	// Start at 1. 0 (zero) is reserved for bug finding.
	Json map[uint32]*RefOrSchemaJSON `` /* 150-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Schemas) Descriptor deprecated

func (*Schemas) Descriptor() ([]byte, []int)

Deprecated: Use Schemas.ProtoReflect.Descriptor instead.

func (*Schemas) EqualVT

func (this *Schemas) EqualVT(that *Schemas) bool

func (*Schemas) GetJson

func (x *Schemas) GetJson() map[uint32]*RefOrSchemaJSON

func (*Schemas) MarshalToSizedBufferVT

func (m *Schemas) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Schemas) MarshalToVT

func (m *Schemas) MarshalToVT(dAtA []byte) (int, error)

func (*Schemas) MarshalVT

func (m *Schemas) MarshalVT() (dAtA []byte, err error)

func (*Schemas) ProtoMessage

func (*Schemas) ProtoMessage()

func (*Schemas) ProtoReflect

func (x *Schemas) ProtoReflect() protoreflect.Message

func (*Schemas) Reset

func (x *Schemas) Reset()

func (*Schemas) SizeVT

func (m *Schemas) SizeVT() (n int)

func (*Schemas) String

func (x *Schemas) String() string

func (*Schemas) UnmarshalVT

func (m *Schemas) UnmarshalVT(dAtA []byte) error

type SpecIR

type SpecIR struct {
	Schemas *Schemas `protobuf:"bytes,1,opt,name=schemas,proto3" json:"schemas,omitempty"`
	// All endpoints are here.
	// Start at 1 then increases monotonously. 0 (zero) is reserved for bug
	// finding.
	Endpoints map[uint32]*Endpoint `` /* 160-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SpecIR) Descriptor deprecated

func (*SpecIR) Descriptor() ([]byte, []int)

Deprecated: Use SpecIR.ProtoReflect.Descriptor instead.

func (*SpecIR) EqualVT

func (this *SpecIR) EqualVT(that *SpecIR) bool

func (*SpecIR) GetEndpoints

func (x *SpecIR) GetEndpoints() map[uint32]*Endpoint

func (*SpecIR) GetSchemas

func (x *SpecIR) GetSchemas() *Schemas

func (*SpecIR) MarshalToSizedBufferVT

func (m *SpecIR) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*SpecIR) MarshalToVT

func (m *SpecIR) MarshalToVT(dAtA []byte) (int, error)

func (*SpecIR) MarshalVT

func (m *SpecIR) MarshalVT() (dAtA []byte, err error)

func (*SpecIR) ProtoMessage

func (*SpecIR) ProtoMessage()

func (*SpecIR) ProtoReflect

func (x *SpecIR) ProtoReflect() protoreflect.Message

func (*SpecIR) Reset

func (x *SpecIR) Reset()

func (*SpecIR) SizeVT

func (m *SpecIR) SizeVT() (n int)

func (*SpecIR) String

func (x *SpecIR) String() string

func (*SpecIR) UnmarshalVT

func (m *SpecIR) UnmarshalVT(dAtA []byte) error

type Srv

type Srv struct {
	FuzzingProgress *Srv_FuzzingProgress `protobuf:"bytes,1,opt,name=fuzzing_progress,json=fuzzingProgress,proto3" json:"fuzzing_progress,omitempty"` // Campaign progress
	// Types that are assignable to Msg:
	//
	//	*Srv_FuzzRep_
	//	*Srv_Call_
	//	*Srv_Reset_
	//	*Srv_FuzzingResult_
	Msg isSrv_Msg `protobuf_oneof:"msg"`
	// contains filtered or unexported fields
}

func (*Srv) Descriptor deprecated

func (*Srv) Descriptor() ([]byte, []int)

Deprecated: Use Srv.ProtoReflect.Descriptor instead.

func (*Srv) EqualVT

func (this *Srv) EqualVT(that *Srv) bool

func (*Srv) GetCall

func (x *Srv) GetCall() *Srv_Call

func (*Srv) GetFuzzRep

func (x *Srv) GetFuzzRep() *Srv_FuzzRep

func (*Srv) GetFuzzingProgress

func (x *Srv) GetFuzzingProgress() *Srv_FuzzingProgress

func (*Srv) GetFuzzingResult

func (x *Srv) GetFuzzingResult() *Srv_FuzzingResult

func (*Srv) GetMsg

func (m *Srv) GetMsg() isSrv_Msg

func (*Srv) GetReset_

func (x *Srv) GetReset_() *Srv_Reset

func (*Srv) MarshalToSizedBufferVT

func (m *Srv) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv) MarshalToVT

func (m *Srv) MarshalToVT(dAtA []byte) (int, error)

func (*Srv) MarshalVT

func (m *Srv) MarshalVT() (dAtA []byte, err error)

func (*Srv) ProtoMessage

func (*Srv) ProtoMessage()

func (*Srv) ProtoReflect

func (x *Srv) ProtoReflect() protoreflect.Message

func (*Srv) Reset

func (x *Srv) Reset()

func (*Srv) SizeVT

func (m *Srv) SizeVT() (n int)

func (*Srv) String

func (x *Srv) String() string

func (*Srv) UnmarshalVT

func (m *Srv) UnmarshalVT(dAtA []byte) error

type Srv_Call

type Srv_Call struct {
	Input     *Srv_Call_Input `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"`
	EID       uint32          `protobuf:"varint,2,opt,name=EID,proto3" json:"EID,omitempty"`
	ModelName string          `protobuf:"bytes,3,opt,name=model_name,json=modelName,proto3" json:"model_name,omitempty"`
	// contains filtered or unexported fields
}

func (*Srv_Call) Descriptor deprecated

func (*Srv_Call) Descriptor() ([]byte, []int)

Deprecated: Use Srv_Call.ProtoReflect.Descriptor instead.

func (*Srv_Call) EqualVT

func (this *Srv_Call) EqualVT(that *Srv_Call) bool

func (*Srv_Call) GetEID

func (x *Srv_Call) GetEID() uint32

func (*Srv_Call) GetInput

func (x *Srv_Call) GetInput() *Srv_Call_Input

func (*Srv_Call) GetModelName

func (x *Srv_Call) GetModelName() string

func (*Srv_Call) MarshalToSizedBufferVT

func (m *Srv_Call) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_Call) MarshalToVT

func (m *Srv_Call) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_Call) MarshalVT

func (m *Srv_Call) MarshalVT() (dAtA []byte, err error)

func (*Srv_Call) ProtoMessage

func (*Srv_Call) ProtoMessage()

func (*Srv_Call) ProtoReflect

func (x *Srv_Call) ProtoReflect() protoreflect.Message

func (*Srv_Call) Reset

func (x *Srv_Call) Reset()

func (*Srv_Call) SizeVT

func (m *Srv_Call) SizeVT() (n int)

func (*Srv_Call) String

func (x *Srv_Call) String() string

func (*Srv_Call) UnmarshalVT

func (m *Srv_Call) UnmarshalVT(dAtA []byte) error

type Srv_Call_

type Srv_Call_ struct {
	// Try call to SUT
	Call *Srv_Call `protobuf:"bytes,3,opt,name=call,proto3,oneof"`
}

func (*Srv_Call_) EqualVT

func (this *Srv_Call_) EqualVT(thatIface isSrv_Msg) bool

func (*Srv_Call_) MarshalToSizedBufferVT

func (m *Srv_Call_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_Call_) MarshalToVT

func (m *Srv_Call_) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_Call_) SizeVT

func (m *Srv_Call_) SizeVT() (n int)

type Srv_Call_Input

type Srv_Call_Input struct {

	// Types that are assignable to Input:
	//
	//	*Srv_Call_Input_HttpRequest_
	Input isSrv_Call_Input_Input `protobuf_oneof:"input"`
	// contains filtered or unexported fields
}

func (*Srv_Call_Input) Descriptor deprecated

func (*Srv_Call_Input) Descriptor() ([]byte, []int)

Deprecated: Use Srv_Call_Input.ProtoReflect.Descriptor instead.

func (*Srv_Call_Input) EqualVT

func (this *Srv_Call_Input) EqualVT(that *Srv_Call_Input) bool

func (*Srv_Call_Input) GetHttpRequest

func (x *Srv_Call_Input) GetHttpRequest() *Srv_Call_Input_HttpRequest

func (*Srv_Call_Input) GetInput

func (m *Srv_Call_Input) GetInput() isSrv_Call_Input_Input

func (*Srv_Call_Input) MarshalToSizedBufferVT

func (m *Srv_Call_Input) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_Call_Input) MarshalToVT

func (m *Srv_Call_Input) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_Call_Input) MarshalVT

func (m *Srv_Call_Input) MarshalVT() (dAtA []byte, err error)

func (*Srv_Call_Input) ProtoMessage

func (*Srv_Call_Input) ProtoMessage()

func (*Srv_Call_Input) ProtoReflect

func (x *Srv_Call_Input) ProtoReflect() protoreflect.Message

func (*Srv_Call_Input) Reset

func (x *Srv_Call_Input) Reset()

func (*Srv_Call_Input) SizeVT

func (m *Srv_Call_Input) SizeVT() (n int)

func (*Srv_Call_Input) String

func (x *Srv_Call_Input) String() string

func (*Srv_Call_Input) UnmarshalVT

func (m *Srv_Call_Input) UnmarshalVT(dAtA []byte) error

type Srv_Call_Input_HttpRequest

type Srv_Call_Input_HttpRequest struct {
	Method  string          `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
	Url     string          `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Headers []*HeaderPair   `protobuf:"bytes,3,rep,name=headers,proto3" json:"headers,omitempty"`
	Body    *structpb.Value `protobuf:"bytes,4,opt,name=body,proto3" json:"body,omitempty"`
	// contains filtered or unexported fields
}

func (*Srv_Call_Input_HttpRequest) Descriptor deprecated

func (*Srv_Call_Input_HttpRequest) Descriptor() ([]byte, []int)

Deprecated: Use Srv_Call_Input_HttpRequest.ProtoReflect.Descriptor instead.

func (*Srv_Call_Input_HttpRequest) EqualVT

func (*Srv_Call_Input_HttpRequest) GetBody

func (*Srv_Call_Input_HttpRequest) GetHeaders

func (x *Srv_Call_Input_HttpRequest) GetHeaders() []*HeaderPair

func (*Srv_Call_Input_HttpRequest) GetMethod

func (x *Srv_Call_Input_HttpRequest) GetMethod() string

func (*Srv_Call_Input_HttpRequest) GetUrl

func (x *Srv_Call_Input_HttpRequest) GetUrl() string

func (*Srv_Call_Input_HttpRequest) MarshalToSizedBufferVT

func (m *Srv_Call_Input_HttpRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_Call_Input_HttpRequest) MarshalToVT

func (m *Srv_Call_Input_HttpRequest) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_Call_Input_HttpRequest) MarshalVT

func (m *Srv_Call_Input_HttpRequest) MarshalVT() (dAtA []byte, err error)

func (*Srv_Call_Input_HttpRequest) ProtoMessage

func (*Srv_Call_Input_HttpRequest) ProtoMessage()

func (*Srv_Call_Input_HttpRequest) ProtoReflect

func (*Srv_Call_Input_HttpRequest) Reset

func (x *Srv_Call_Input_HttpRequest) Reset()

func (*Srv_Call_Input_HttpRequest) SizeVT

func (m *Srv_Call_Input_HttpRequest) SizeVT() (n int)

func (*Srv_Call_Input_HttpRequest) String

func (x *Srv_Call_Input_HttpRequest) String() string

func (*Srv_Call_Input_HttpRequest) UnmarshalVT

func (m *Srv_Call_Input_HttpRequest) UnmarshalVT(dAtA []byte) error

type Srv_Call_Input_HttpRequest_

type Srv_Call_Input_HttpRequest_ struct {
	HttpRequest *Srv_Call_Input_HttpRequest `protobuf:"bytes,1,opt,name=http_request,json=httpRequest,proto3,oneof"`
}

func (*Srv_Call_Input_HttpRequest_) EqualVT

func (this *Srv_Call_Input_HttpRequest_) EqualVT(thatIface isSrv_Call_Input_Input) bool

func (*Srv_Call_Input_HttpRequest_) MarshalToSizedBufferVT

func (m *Srv_Call_Input_HttpRequest_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_Call_Input_HttpRequest_) MarshalToVT

func (m *Srv_Call_Input_HttpRequest_) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_Call_Input_HttpRequest_) SizeVT

func (m *Srv_Call_Input_HttpRequest_) SizeVT() (n int)

type Srv_FuzzRep

type Srv_FuzzRep struct {
	MaxTestsCount             uint32 `protobuf:"varint,1,opt,name=max_tests_count,json=maxTestsCount,proto3" json:"max_tests_count,omitempty"` // Maximum amount of tests that will be performed
	Seed                      []byte `protobuf:"bytes,2,opt,name=seed,proto3" json:"seed,omitempty"`                                           // Seed in use for the campaign
	Token                     string `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"`
	MaxExecutionStepsPerCheck uint64 `` // for Starlark SetMaxExecutionSteps
	/* 143-byte string literal not displayed */
	MaxExecutionMsPerCheck uint32 `` /* 134-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Srv_FuzzRep) Descriptor deprecated

func (*Srv_FuzzRep) Descriptor() ([]byte, []int)

Deprecated: Use Srv_FuzzRep.ProtoReflect.Descriptor instead.

func (*Srv_FuzzRep) EqualVT

func (this *Srv_FuzzRep) EqualVT(that *Srv_FuzzRep) bool

func (*Srv_FuzzRep) GetMaxExecutionMsPerCheck

func (x *Srv_FuzzRep) GetMaxExecutionMsPerCheck() uint32

func (*Srv_FuzzRep) GetMaxExecutionStepsPerCheck

func (x *Srv_FuzzRep) GetMaxExecutionStepsPerCheck() uint64

func (*Srv_FuzzRep) GetMaxTestsCount

func (x *Srv_FuzzRep) GetMaxTestsCount() uint32

func (*Srv_FuzzRep) GetSeed

func (x *Srv_FuzzRep) GetSeed() []byte

func (*Srv_FuzzRep) GetToken

func (x *Srv_FuzzRep) GetToken() string

func (*Srv_FuzzRep) MarshalToSizedBufferVT

func (m *Srv_FuzzRep) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_FuzzRep) MarshalToVT

func (m *Srv_FuzzRep) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_FuzzRep) MarshalVT

func (m *Srv_FuzzRep) MarshalVT() (dAtA []byte, err error)

func (*Srv_FuzzRep) ProtoMessage

func (*Srv_FuzzRep) ProtoMessage()

func (*Srv_FuzzRep) ProtoReflect

func (x *Srv_FuzzRep) ProtoReflect() protoreflect.Message

func (*Srv_FuzzRep) Reset

func (x *Srv_FuzzRep) Reset()

func (*Srv_FuzzRep) SizeVT

func (m *Srv_FuzzRep) SizeVT() (n int)

func (*Srv_FuzzRep) String

func (x *Srv_FuzzRep) String() string

func (*Srv_FuzzRep) UnmarshalVT

func (m *Srv_FuzzRep) UnmarshalVT(dAtA []byte) error

type Srv_FuzzRep_

type Srv_FuzzRep_ struct {
	// Response to initial message
	FuzzRep *Srv_FuzzRep `protobuf:"bytes,2,opt,name=fuzz_rep,json=fuzzRep,proto3,oneof"`
}

func (*Srv_FuzzRep_) EqualVT

func (this *Srv_FuzzRep_) EqualVT(thatIface isSrv_Msg) bool

func (*Srv_FuzzRep_) MarshalToSizedBufferVT

func (m *Srv_FuzzRep_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_FuzzRep_) MarshalToVT

func (m *Srv_FuzzRep_) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_FuzzRep_) SizeVT

func (m *Srv_FuzzRep_) SizeVT() (n int)

type Srv_FuzzingProgress

type Srv_FuzzingProgress struct {
	Failure           bool   `protobuf:"varint,1,opt,name=failure,proto3" json:"failure,omitempty"`
	Success           bool   `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
	LastCallSuccess   bool   `protobuf:"varint,3,opt,name=last_call_success,json=lastCallSuccess,proto3" json:"last_call_success,omitempty"`
	LastCheckFailure  bool   `protobuf:"varint,4,opt,name=last_check_failure,json=lastCheckFailure,proto3" json:"last_check_failure,omitempty"`
	LastCheckSuccess  bool   `protobuf:"varint,5,opt,name=last_check_success,json=lastCheckSuccess,proto3" json:"last_check_success,omitempty"`
	TotalTestsCount   uint32 `protobuf:"varint,6,opt,name=total_tests_count,json=totalTestsCount,proto3" json:"total_tests_count,omitempty"`
	TotalCallsCount   uint32 `protobuf:"varint,7,opt,name=total_calls_count,json=totalCallsCount,proto3" json:"total_calls_count,omitempty"`
	TotalChecksCount  uint32 `protobuf:"varint,8,opt,name=total_checks_count,json=totalChecksCount,proto3" json:"total_checks_count,omitempty"`
	TestCallsCount    uint32 `protobuf:"varint,9,opt,name=test_calls_count,json=testCallsCount,proto3" json:"test_calls_count,omitempty"`
	CallChecksCount   uint32 `protobuf:"varint,10,opt,name=call_checks_count,json=callChecksCount,proto3" json:"call_checks_count,omitempty"`
	CallChecksSkipped uint32 `protobuf:"varint,11,opt,name=call_checks_skipped,json=callChecksSkipped,proto3" json:"call_checks_skipped,omitempty"`
	// contains filtered or unexported fields
}

func (*Srv_FuzzingProgress) Descriptor deprecated

func (*Srv_FuzzingProgress) Descriptor() ([]byte, []int)

Deprecated: Use Srv_FuzzingProgress.ProtoReflect.Descriptor instead.

func (*Srv_FuzzingProgress) EqualVT

func (this *Srv_FuzzingProgress) EqualVT(that *Srv_FuzzingProgress) bool

func (*Srv_FuzzingProgress) GetCallChecksCount

func (x *Srv_FuzzingProgress) GetCallChecksCount() uint32

func (*Srv_FuzzingProgress) GetCallChecksSkipped

func (x *Srv_FuzzingProgress) GetCallChecksSkipped() uint32

func (*Srv_FuzzingProgress) GetFailure

func (x *Srv_FuzzingProgress) GetFailure() bool

func (*Srv_FuzzingProgress) GetLastCallSuccess

func (x *Srv_FuzzingProgress) GetLastCallSuccess() bool

func (*Srv_FuzzingProgress) GetLastCheckFailure

func (x *Srv_FuzzingProgress) GetLastCheckFailure() bool

func (*Srv_FuzzingProgress) GetLastCheckSuccess

func (x *Srv_FuzzingProgress) GetLastCheckSuccess() bool

func (*Srv_FuzzingProgress) GetSuccess

func (x *Srv_FuzzingProgress) GetSuccess() bool

func (*Srv_FuzzingProgress) GetTestCallsCount

func (x *Srv_FuzzingProgress) GetTestCallsCount() uint32

func (*Srv_FuzzingProgress) GetTotalCallsCount

func (x *Srv_FuzzingProgress) GetTotalCallsCount() uint32

func (*Srv_FuzzingProgress) GetTotalChecksCount

func (x *Srv_FuzzingProgress) GetTotalChecksCount() uint32

func (*Srv_FuzzingProgress) GetTotalTestsCount

func (x *Srv_FuzzingProgress) GetTotalTestsCount() uint32

func (*Srv_FuzzingProgress) MarshalToSizedBufferVT

func (m *Srv_FuzzingProgress) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_FuzzingProgress) MarshalToVT

func (m *Srv_FuzzingProgress) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_FuzzingProgress) MarshalVT

func (m *Srv_FuzzingProgress) MarshalVT() (dAtA []byte, err error)

func (*Srv_FuzzingProgress) ProtoMessage

func (*Srv_FuzzingProgress) ProtoMessage()

func (*Srv_FuzzingProgress) ProtoReflect

func (x *Srv_FuzzingProgress) ProtoReflect() protoreflect.Message

func (*Srv_FuzzingProgress) Reset

func (x *Srv_FuzzingProgress) Reset()

func (*Srv_FuzzingProgress) SizeVT

func (m *Srv_FuzzingProgress) SizeVT() (n int)

func (*Srv_FuzzingProgress) String

func (x *Srv_FuzzingProgress) String() string

func (*Srv_FuzzingProgress) UnmarshalVT

func (m *Srv_FuzzingProgress) UnmarshalVT(dAtA []byte) error

type Srv_FuzzingResult

type Srv_FuzzingResult struct {
	SeedUsed       []byte                                  `protobuf:"bytes,1,opt,name=seed_used,json=seedUsed,proto3" json:"seed_used,omitempty"` // Seed used on campaign
	WasShrinking   bool                                    `protobuf:"varint,2,opt,name=was_shrinking,json=wasShrinking,proto3" json:"was_shrinking,omitempty"`
	NextSeed       []byte                                  `protobuf:"bytes,3,opt,name=next_seed,json=nextSeed,proto3" json:"next_seed,omitempty"` // Seed suggested for next run
	WillNowShrink  bool                                    `protobuf:"varint,4,opt,name=will_now_shrink,json=willNowShrink,proto3" json:"will_now_shrink,omitempty"`
	SuggestedSeed  []byte                                  `protobuf:"bytes,5,opt,name=suggested_seed,json=suggestedSeed,proto3" json:"suggested_seed,omitempty"`
	Counterexample []*Srv_FuzzingResult_CounterexampleItem `protobuf:"bytes,6,rep,name=counterexample,proto3" json:"counterexample,omitempty"`
	// contains filtered or unexported fields
}

func (*Srv_FuzzingResult) Descriptor deprecated

func (*Srv_FuzzingResult) Descriptor() ([]byte, []int)

Deprecated: Use Srv_FuzzingResult.ProtoReflect.Descriptor instead.

func (*Srv_FuzzingResult) EqualVT

func (this *Srv_FuzzingResult) EqualVT(that *Srv_FuzzingResult) bool

func (*Srv_FuzzingResult) GetCounterexample

func (x *Srv_FuzzingResult) GetCounterexample() []*Srv_FuzzingResult_CounterexampleItem

func (*Srv_FuzzingResult) GetNextSeed

func (x *Srv_FuzzingResult) GetNextSeed() []byte

func (*Srv_FuzzingResult) GetSeedUsed

func (x *Srv_FuzzingResult) GetSeedUsed() []byte

func (*Srv_FuzzingResult) GetSuggestedSeed

func (x *Srv_FuzzingResult) GetSuggestedSeed() []byte

func (*Srv_FuzzingResult) GetWasShrinking

func (x *Srv_FuzzingResult) GetWasShrinking() bool

func (*Srv_FuzzingResult) GetWillNowShrink

func (x *Srv_FuzzingResult) GetWillNowShrink() bool

func (*Srv_FuzzingResult) MarshalToSizedBufferVT

func (m *Srv_FuzzingResult) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_FuzzingResult) MarshalToVT

func (m *Srv_FuzzingResult) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_FuzzingResult) MarshalVT

func (m *Srv_FuzzingResult) MarshalVT() (dAtA []byte, err error)

func (*Srv_FuzzingResult) ProtoMessage

func (*Srv_FuzzingResult) ProtoMessage()

func (*Srv_FuzzingResult) ProtoReflect

func (x *Srv_FuzzingResult) ProtoReflect() protoreflect.Message

func (*Srv_FuzzingResult) Reset

func (x *Srv_FuzzingResult) Reset()

func (*Srv_FuzzingResult) SizeVT

func (m *Srv_FuzzingResult) SizeVT() (n int)

func (*Srv_FuzzingResult) String

func (x *Srv_FuzzingResult) String() string

func (*Srv_FuzzingResult) UnmarshalVT

func (m *Srv_FuzzingResult) UnmarshalVT(dAtA []byte) error

type Srv_FuzzingResult_

type Srv_FuzzingResult_ struct {
	// Result of testing campaign
	FuzzingResult *Srv_FuzzingResult `protobuf:"bytes,5,opt,name=fuzzing_result,json=fuzzingResult,proto3,oneof"`
}

func (*Srv_FuzzingResult_) EqualVT

func (this *Srv_FuzzingResult_) EqualVT(thatIface isSrv_Msg) bool

func (*Srv_FuzzingResult_) MarshalToSizedBufferVT

func (m *Srv_FuzzingResult_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_FuzzingResult_) MarshalToVT

func (m *Srv_FuzzingResult_) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_FuzzingResult_) SizeVT

func (m *Srv_FuzzingResult_) SizeVT() (n int)

type Srv_FuzzingResult_CounterexampleItem

type Srv_FuzzingResult_CounterexampleItem struct {
	CallRequest  *Clt_CallRequestRaw_Input   `protobuf:"bytes,1,opt,name=call_request,json=callRequest,proto3" json:"call_request,omitempty"`
	CallResponse *Clt_CallResponseRaw_Output `protobuf:"bytes,2,opt,name=call_response,json=callResponse,proto3" json:"call_response,omitempty"`
	// contains filtered or unexported fields
}

func (*Srv_FuzzingResult_CounterexampleItem) CLIString

func (ceI *Srv_FuzzingResult_CounterexampleItem) CLIString() (s string)

CLIString is used to display quick data on a CounterexampleItem

func (*Srv_FuzzingResult_CounterexampleItem) Descriptor deprecated

func (*Srv_FuzzingResult_CounterexampleItem) Descriptor() ([]byte, []int)

Deprecated: Use Srv_FuzzingResult_CounterexampleItem.ProtoReflect.Descriptor instead.

func (*Srv_FuzzingResult_CounterexampleItem) EqualVT

func (*Srv_FuzzingResult_CounterexampleItem) GetCallRequest

func (*Srv_FuzzingResult_CounterexampleItem) GetCallResponse

func (*Srv_FuzzingResult_CounterexampleItem) MarshalToSizedBufferVT

func (m *Srv_FuzzingResult_CounterexampleItem) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_FuzzingResult_CounterexampleItem) MarshalToVT

func (m *Srv_FuzzingResult_CounterexampleItem) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_FuzzingResult_CounterexampleItem) MarshalVT

func (m *Srv_FuzzingResult_CounterexampleItem) MarshalVT() (dAtA []byte, err error)

func (*Srv_FuzzingResult_CounterexampleItem) ProtoMessage

func (*Srv_FuzzingResult_CounterexampleItem) ProtoMessage()

func (*Srv_FuzzingResult_CounterexampleItem) ProtoReflect

func (*Srv_FuzzingResult_CounterexampleItem) Reset

func (*Srv_FuzzingResult_CounterexampleItem) SizeVT

func (m *Srv_FuzzingResult_CounterexampleItem) SizeVT() (n int)

func (*Srv_FuzzingResult_CounterexampleItem) String

func (*Srv_FuzzingResult_CounterexampleItem) UnmarshalVT

func (m *Srv_FuzzingResult_CounterexampleItem) UnmarshalVT(dAtA []byte) error

type Srv_Reset

type Srv_Reset struct {
	// contains filtered or unexported fields
}

func (*Srv_Reset) Descriptor deprecated

func (*Srv_Reset) Descriptor() ([]byte, []int)

Deprecated: Use Srv_Reset.ProtoReflect.Descriptor instead.

func (*Srv_Reset) EqualVT

func (this *Srv_Reset) EqualVT(that *Srv_Reset) bool

func (*Srv_Reset) MarshalToSizedBufferVT

func (m *Srv_Reset) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_Reset) MarshalToVT

func (m *Srv_Reset) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_Reset) MarshalVT

func (m *Srv_Reset) MarshalVT() (dAtA []byte, err error)

func (*Srv_Reset) ProtoMessage

func (*Srv_Reset) ProtoMessage()

func (*Srv_Reset) ProtoReflect

func (x *Srv_Reset) ProtoReflect() protoreflect.Message

func (*Srv_Reset) Reset

func (x *Srv_Reset) Reset()

func (*Srv_Reset) SizeVT

func (m *Srv_Reset) SizeVT() (n int)

func (*Srv_Reset) String

func (x *Srv_Reset) String() string

func (*Srv_Reset) UnmarshalVT

func (m *Srv_Reset) UnmarshalVT(dAtA []byte) error

type Srv_Reset_

type Srv_Reset_ struct {
	// Reset SUT state
	Reset_ *Srv_Reset `protobuf:"bytes,4,opt,name=reset,proto3,oneof"`
}

func (*Srv_Reset_) EqualVT

func (this *Srv_Reset_) EqualVT(thatIface isSrv_Msg) bool

func (*Srv_Reset_) MarshalToSizedBufferVT

func (m *Srv_Reset_) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Srv_Reset_) MarshalToVT

func (m *Srv_Reset_) MarshalToVT(dAtA []byte) (int, error)

func (*Srv_Reset_) SizeVT

func (m *Srv_Reset_) SizeVT() (n int)

type Uint32S

type Uint32S struct {
	Values []uint32 `protobuf:"varint,1,rep,packed,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*Uint32S) Descriptor deprecated

func (*Uint32S) Descriptor() ([]byte, []int)

Deprecated: Use Uint32S.ProtoReflect.Descriptor instead.

func (*Uint32S) EqualVT

func (this *Uint32S) EqualVT(that *Uint32S) bool

func (*Uint32S) GetValues

func (x *Uint32S) GetValues() []uint32

func (*Uint32S) MarshalToSizedBufferVT

func (m *Uint32S) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Uint32S) MarshalToVT

func (m *Uint32S) MarshalToVT(dAtA []byte) (int, error)

func (*Uint32S) MarshalVT

func (m *Uint32S) MarshalVT() (dAtA []byte, err error)

func (*Uint32S) ProtoMessage

func (*Uint32S) ProtoMessage()

func (*Uint32S) ProtoReflect

func (x *Uint32S) ProtoReflect() protoreflect.Message

func (*Uint32S) Reset

func (x *Uint32S) Reset()

func (*Uint32S) SizeVT

func (m *Uint32S) SizeVT() (n int)

func (*Uint32S) String

func (x *Uint32S) String() string

func (*Uint32S) UnmarshalVT

func (m *Uint32S) UnmarshalVT(dAtA []byte) error

type UnimplementedFuzzyMonkeyServer

type UnimplementedFuzzyMonkeyServer struct {
}

UnimplementedFuzzyMonkeyServer must be embedded to have forward compatible implementations.

func (UnimplementedFuzzyMonkeyServer) Do

type UnsafeFuzzyMonkeyServer

type UnsafeFuzzyMonkeyServer interface {
	// contains filtered or unexported methods
}

UnsafeFuzzyMonkeyServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to FuzzyMonkeyServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL