blob: c0c4e2127e823e36352f6ffae31f88ee31fe6a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
namespace Impostor.Hazel.Udp
{
/// <summary>
/// Extra internal states for SendOption enumeration when using UDP.
/// </summary>
public enum UdpSendOption : byte
{
/// <summary>
/// Hello message for initiating communication.
/// </summary>
Hello = 8,
/// <summary>
/// A single byte of continued existence
/// </summary>
Ping = 12,
/// <summary>
/// Message for discontinuing communication.
/// </summary>
Disconnect = 9,
/// <summary>
/// Message acknowledging the receipt of a message.
/// </summary>
Acknowledgement = 10,
/// <summary>
/// Message that is part of a larger, fragmented message.
/// </summary>
Fragment = 11,
}
}
|