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/session/connection_closed_with.go

32 lines
799 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package session
import (
"context"
"github.com/hashicorp/boundary/internal/errors"
)
// CloseWith defines the boundary data that is saved in the repo when the
// worker closes a connection between the client and the endpoint.
type CloseWith struct {
ConnectionId string
BytesUp int64
BytesDown int64
ClosedReason ClosedReason
}
func (c CloseWith) validate(ctx context.Context) error {
const op = "session.(CloseWith).validate"
if c.ConnectionId == "" {
return errors.New(ctx, errors.InvalidParameter, op, "missing connection id")
}
if c.ClosedReason.String() == "" {
return errors.New(ctx, errors.InvalidParameter, op, "missing closed reason")
}
// 0 is valid for BytesUp and BytesDown
return nil
}