chromium/remoting/proto/session_authz_service.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_PROTO_SESSION_AUTHZ_SERVICE_H_
#define REMOTING_PROTO_SESSION_AUTHZ_SERVICE_H_

#include <optional>
#include <string>

#include "base/time/time.h"
#include "remoting/base/session_policies.h"

// This file defines structs for the SessionAuthzService. For official builds,
// these structs are populated by code in //remoting/internal. For unofficial
// builds, they are populated by code in internal_stubs.h.
namespace remoting::internal {

struct GenerateHostTokenRequestStruct {};

struct GenerateHostTokenResponseStruct {};

struct VerifySessionTokenRequestStruct {};

struct VerifySessionTokenResponseStruct {};

struct ReauthorizeHostRequestStruct {};

struct ReauthorizeHostResponseStruct {};

}  // namespace remoting::internal

#endif  // REMOTING_PROTO_SESSION_AUTHZ_SERVICE_H_