You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/bsr/byte_source.go

36 lines
630 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package bsr
// ByteSource identifies whether bytes are flowing from the user to target (client)
// or target to user (server)
type ByteSource uint8
// ByteDirections
const (
UnknownByteSource ByteSource = iota
Client
Server
)
func (d ByteSource) String() string {
switch d {
case Client:
return "client"
case Server:
return "server"
default:
return "unknown bytesource"
}
}
// ValidByteSource checks if a given ByteSource is valid.
func ValidByteSource(d ByteSource) bool {
switch d {
case Client, Server:
return true
}
return false
}