Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pcap-Net
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Pcap-Net
Commits
a1cae0f0
Commit
a1cae0f0
authored
Sep 06, 2014
by
Brickner_cp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IPv6
parent
43ce060f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
IpV6AccessNetworkIdentifierSubOption.cs
...kets/IpV6/Options/IpV6AccessNetworkIdentifierSubOption.cs
+1
-1
IpV6FlowIdentificationSubOptionSimple.cs
...ets/IpV6/Options/IpV6FlowIdentificationSubOptionSimple.cs
+1
-1
IpV6MobilityOptionIpV4Address.cs
...Net.Packets/IpV6/Options/IpV6MobilityOptionIpV4Address.cs
+1
-1
IpV6OptionEndpointIdentification.cs
....Packets/IpV6/Options/IpV6OptionEndpointIdentification.cs
+1
-1
No files found.
PcapDotNet/src/PcapDotNet.Packets/IpV6/Options/IpV6AccessNetworkIdentifierSubOption.cs
View file @
a1cae0f0
...
...
@@ -37,7 +37,7 @@ namespace PcapDotNet.Packets.IpV6
return
Equals
(
other
as
IpV6AccessNetworkIdentifierSubOption
);
}
public
override
int
GetHashCode
()
public
sealed
override
int
GetHashCode
()
{
return
Sequence
.
GetHashCode
(
OptionType
,
GetDataHashCode
());
}
...
...
PcapDotNet/src/PcapDotNet.Packets/IpV6/Options/IpV6FlowIdentificationSubOptionSimple.cs
View file @
a1cae0f0
...
...
@@ -29,7 +29,7 @@ namespace PcapDotNet.Packets.IpV6
return
true
;
}
internal
override
object
GetDataHashCode
()
internal
sealed
override
object
GetDataHashCode
()
{
return
0
;
}
...
...
PcapDotNet/src/PcapDotNet.Packets/IpV6/Options/IpV6MobilityOptionIpV4Address.cs
View file @
a1cae0f0
...
...
@@ -56,7 +56,7 @@ namespace PcapDotNet.Packets.IpV6
return
EqualsData
(
other
as
IpV6MobilityOptionIpV4Address
);
}
internal
override
int
GetDataHashCode
()
internal
sealed
override
int
GetDataHashCode
()
{
return
Address
.
GetHashCode
();
}
...
...
PcapDotNet/src/PcapDotNet.Packets/IpV6/Options/IpV6OptionEndpointIdentification.cs
View file @
a1cae0f0
...
...
@@ -71,7 +71,7 @@ namespace PcapDotNet.Packets.IpV6
return
EqualsData
(
other
as
IpV6OptionEndpointIdentification
);
}
internal
override
int
GetDataHashCode
()
internal
override
int
GetDataHashCode
()
{
return
Sequence
.
GetHashCode
(
SourceEndpointIdentifier
,
DestinationEndpointIdentifier
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment