Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.56 KB | None | 0 0
  1. typedef struct FilterConfig_S
  2.  27 {
  3.  28    unsigned int localIpAddr;    ///< the local IP address
  4.  29    unsigned int localMask;      ///< the address mask
  5.  30    bool blockInboundEchoReq;    ///< where to block inbound echo
  6.  31    unsigned int numBlockedInboundTcpPorts;   ///< count of blocked ports
  7.  32    unsigned int* blockedInboundTcpPorts;     ///< array of blocked ports
  8.  33    unsigned int numBlockedIpAddresses;       ///< count of blocked addresses
  9.  34    unsigned int* blockedIpAddresses;         ///< array of blocked addresses
  10.  35 } FilterConfig;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement