chromium/remoting/host/host_utmp_logger.cc

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

#include "remoting/host/host_utmp_logger.h"

#include <pty.h>
#include <unistd.h>
#include <utempter.h>

#include "remoting/base/logging.h"
#include "remoting/host/host_status_monitor.h"

namespace remoting {

namespace {

// Name to pass to utempter_add_record as ut_host.
constexpr char kApplicationName[] =;

}  // namespace

HostUTMPLogger::HostUTMPLogger(scoped_refptr<HostStatusMonitor> monitor)
    :{}

HostUTMPLogger::~HostUTMPLogger() {}

void HostUTMPLogger::OnClientConnected(const std::string& signaling_id) {}

void HostUTMPLogger::OnClientDisconnected(const std::string& signaling_id) {}

}  // namespace remoting