blob: 4d24f765695235a2fb0587da2bce7c58432c986a [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <cstddef>
#include <cstdint>
namespace ppp {
enum class Protocol {
Ipv4 = 0x0021,
Ipv6 = 0x0057,
Ipv4Control = 0x8021,
Ipv6Control = 0x8057,
LinkControl = 0xc021,
PasswordAuthentication = 0xc023,
LinkQualityReport = 0xc025,
ChallengeHandshakeAuthentication = 0xc223,
};
} // namespace ppp