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.
26 lines
634 B
26 lines
634 B
// SPDX-License-Identifier: AGPL-3.0-only
|
|
/**
|
|
* Digital Voice Modem - Fixed Network Equipment Core Library
|
|
* AGPLv3 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* @package DVM / Fixed Network Equipment Core Library
|
|
* @license AGPLv3 License (https://opensource.org/licenses/AGPL-3.0)
|
|
*
|
|
* Copyright (C) 2025 Caleb, K4PHP
|
|
*
|
|
*/
|
|
|
|
namespace fnecore.P25.kmm
|
|
{
|
|
/// <summary>
|
|
/// KMM Response Kind
|
|
/// </summary>
|
|
public enum KmmResponseKind
|
|
{
|
|
NONE = 0x00,
|
|
DELAYED = 0x01,
|
|
IMMEDIATE = 0x02
|
|
}
|
|
} // namespace fnecore.P25.kmm
|