Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AddressInfo.cs
1
namespace
Waher.Networking.XMPP.P2P
2
{
6
public
class
AddressInfo
7
{
8
private
readonly
string
xmppAddress;
9
private
readonly
string
externalIp;
10
private
readonly
string
localIp;
11
private
readonly
int
externalPort;
12
private
readonly
int
localPort;
13
22
public
AddressInfo
(
string
XmppAddress
,
string
ExternalIp
,
int
ExternalPort
,
string
LocalIp
,
int
LocalPort
)
23
{
24
this.xmppAddress =
XmppAddress
;
25
this.externalIp =
ExternalIp
;
26
this.externalPort =
ExternalPort
;
27
this.localIp =
LocalIp
;
28
this.localPort =
LocalPort
;
29
}
30
34
public
string
XmppAddress
=> this.xmppAddress;
35
39
public
string
ExternalIp
=> this.externalIp;
40
44
public
int
ExternalPort
=> this.externalPort;
45
49
public
string
LocalIp
=> this.localIp;
50
54
public
int
LocalPort
=> this.localPort;
55
}
56
}
Waher.Networking.XMPP.P2P.AddressInfo
Contains information about peer addresses.
Definition:
AddressInfo.cs:7
Waher.Networking.XMPP.P2P.AddressInfo.AddressInfo
AddressInfo(string XmppAddress, string ExternalIp, int ExternalPort, string LocalIp, int LocalPort)
Contains information about peer addresses.
Definition:
AddressInfo.cs:22
Waher.Networking.XMPP.P2P.AddressInfo.LocalPort
int LocalPort
Local Port Number.
Definition:
AddressInfo.cs:54
Waher.Networking.XMPP.P2P.AddressInfo.ExternalPort
int ExternalPort
External Port Number.
Definition:
AddressInfo.cs:44
Waher.Networking.XMPP.P2P.AddressInfo.XmppAddress
string XmppAddress
XMPP Address (Bare JID).
Definition:
AddressInfo.cs:34
Waher.Networking.XMPP.P2P.AddressInfo.ExternalIp
string ExternalIp
External IP Address.
Definition:
AddressInfo.cs:39
Waher.Networking.XMPP.P2P.AddressInfo.LocalIp
string LocalIp
Local IP Address.
Definition:
AddressInfo.cs:49
Waher.Networking.XMPP.P2P
Definition:
AddressInfo.cs:2
IoTGateway
Networking
Waher.Networking.XMPP.P2P
AddressInfo.cs
Generated by
1.9.5