cloudFPGA (cF) API  1.0
The documentation of the source code of cloudFPGA (cF)
UdpAppMeta Class Reference

#include <nts.hpp>

Public Member Functions

 UdpAppMeta ()
 
 UdpAppMeta (Ip4Addr srcAddr, Ly4Port srcPort, Ip4Addr dstAddr, Ly4Port dstPort)
 
 UdpAppMeta (SockAddr srcSock, SockAddr dstSock)
 
 UdpAppMeta (SocketPair sockPair)
 

Public Attributes

Ip4Addr ip4SrcAddr
 
Ly4Port udpSrcPort
 
Ip4Addr ip4DstAddr
 
Ly4Port udpDstPort
 

Detailed Description

Definition at line 224 of file nts.hpp.

Constructor & Destructor Documentation

◆ UdpAppMeta() [1/4]

UdpAppMeta::UdpAppMeta ( )
inline

Definition at line 230 of file nts.hpp.

230 {}

◆ UdpAppMeta() [2/4]

UdpAppMeta::UdpAppMeta ( Ip4Addr  srcAddr,
Ly4Port  srcPort,
Ip4Addr  dstAddr,
Ly4Port  dstPort 
)
inline

Definition at line 231 of file nts.hpp.

231  :
232  ip4SrcAddr(srcAddr), udpSrcPort(srcPort), ip4DstAddr(dstAddr), udpDstPort(dstPort) {}
Ly4Port udpDstPort
Definition: nts.hpp:229
Ly4Port udpSrcPort
Definition: nts.hpp:227
Ip4Addr ip4SrcAddr
Definition: nts.hpp:226
Ip4Addr ip4DstAddr
Definition: nts.hpp:228

◆ UdpAppMeta() [3/4]

UdpAppMeta::UdpAppMeta ( SockAddr  srcSock,
SockAddr  dstSock 
)
inline

Definition at line 233 of file nts.hpp.

233  :
234  ip4SrcAddr(srcSock.addr), udpSrcPort(srcSock.port), ip4DstAddr(dstSock.addr), udpDstPort(dstSock.port) {}
Ip4Addr addr
Definition: nts_types.hpp:209
Ly4Port port
Definition: nts_types.hpp:210

◆ UdpAppMeta() [4/4]

UdpAppMeta::UdpAppMeta ( SocketPair  sockPair)
inline

Definition at line 235 of file nts.hpp.

235  :
236  ip4SrcAddr(sockPair.src.addr), udpSrcPort(sockPair.src.port), ip4DstAddr(sockPair.dst.addr), udpDstPort(sockPair.dst.port) {}
SockAddr dst
Definition: nts_types.hpp:249
SockAddr src
Definition: nts_types.hpp:248

Member Data Documentation

◆ ip4DstAddr

Ip4Addr UdpAppMeta::ip4DstAddr

Definition at line 228 of file nts.hpp.

◆ ip4SrcAddr

Ip4Addr UdpAppMeta::ip4SrcAddr

Definition at line 226 of file nts.hpp.

◆ udpDstPort

Ly4Port UdpAppMeta::udpDstPort

Definition at line 229 of file nts.hpp.

◆ udpSrcPort

Ly4Port UdpAppMeta::udpSrcPort

Definition at line 227 of file nts.hpp.


The documentation for this class was generated from the following file: