using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Hazel.Udp
{
///
/// Extra internal states for SendOption enumeration when using UDP.
///
public enum UdpSendOption : byte
{
///
/// Hello message for initiating communication.
///
Hello = 8,
///
/// A single byte of continued existence
///
Ping = 12,
///
/// Message for discontinuing communication.
///
Disconnect = 9,
///
/// Message acknowledging the receipt of a message.
///
Acknowledgement = 10,
///
/// Message that is part of a larger, fragmented message.
///
Fragment = 11,
}
}