File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
PcapDotNet/src/PcapDotNet.Packets/Dhcp Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
namespace PcapDotNet . Packets . Dhcp
8
8
{
9
9
/// <summary>
10
- /// RFCs 2131.
10
+ /// RFC 2131.
11
11
/// <pre>
12
12
/// 1 1 1 1 1 1
13
13
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
@@ -23,13 +23,13 @@ namespace PcapDotNet.Packets.Dhcp
23
23
public enum DhcpFlags : ushort
24
24
{
25
25
/// <summary>
26
- /// RFCs 2131.
26
+ /// RFC 2131.
27
27
/// Response as Unicast.
28
28
/// </summary>
29
29
Unicast = 0 << 15 ,
30
30
31
31
/// <summary>
32
- /// RFCs 2131.
32
+ /// RFC 2131.
33
33
/// Response as Broadcast.
34
34
/// </summary>
35
35
Broadcast = 1 << 15
Original file line number Diff line number Diff line change 7
7
namespace PcapDotNet . Packets . Dhcp
8
8
{
9
9
/// <summary>
10
- /// RFCs 2131.
10
+ /// RFC 2131.
11
11
/// </summary>
12
12
[ System . Diagnostics . CodeAnalysis . SuppressMessage ( "Microsoft.Design" , "CA1008:EnumsShouldHaveZeroValue" ) ]
13
13
public enum DhcpMessageOPCode : byte
You can’t perform that action at this time.
0 commit comments