Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Ip6.cs
1using System;
2using System.Collections.Generic;
3using System.Net.Sockets;
4using System.Threading.Tasks;
5
7{
11 public class Ip6 : Ip
12 {
19 : base(Term, Qualifier)
20 {
21 if (this.address.AddressFamily != AddressFamily.InterNetworkV6)
22 throw new Exception("Expected IP6 address.");
23 }
24 }
25}
This mechanisms tests whether <ip> is contained within a given IP6 network.
Definition: Ip6.cs:12
Ip6(Term Term, SpfQualifier Qualifier)
This mechanisms tests whether <ip> is contained within a given IP6 network.
Definition: Ip6.cs:18
Abstract base class for IP-based SPF mechanisms.
Definition: Ip.cs:12
IPAddress address
IP Address
Definition: Ip.cs:16
SpfQualifier Qualifier
Mechanism qualifier
Definition: Mechanism.cs:36
SpfQualifier
SPF Mechanism qualifier
Definition: Term.cs:12