X-Git-Url: https://git.stg.codes/ssmd.git/blobdiff_plain/3c47eb51fb0eddb876f5b10bd33a4f2bedc3ee87..HEAD:/src/acl.cpp diff --git a/src/acl.cpp b/src/acl.cpp index a882182..f3f6b77 100644 --- a/src/acl.cpp +++ b/src/acl.cpp @@ -7,7 +7,7 @@ #include "oids.h" #include "logger.h" -using GTS::ACL; +using SSMD::ACL; ACL::ACL(unsigned id, unsigned profileId, @@ -106,7 +106,7 @@ void ACL::appendPdu(Pdu & pdu) const pdu += vb;*/ } -std::ostream & GTS::operator<<(std::ostream & stream, const ACL & acl) +std::ostream & SSMD::operator<<(std::ostream & stream, const ACL & acl) { std::string oidValue; // MAC @@ -117,27 +117,27 @@ std::ostream & GTS::operator<<(std::ostream & stream, const ACL & acl) oidValue = swACLEtherRuleDstMacAddress; oidValue += acl.getSuffix(); } - stream << oidValue << ":" << acl._mac << " "; + stream << oidValue << " x " << acl._mac << " "; // Permit rule oidValue = swACLEtherRulePermit; oidValue += acl.getSuffix(); - stream << oidValue << ":" << 2 << " "; + stream << oidValue << " i " << 2 << " "; // Port oidValue = swACLEtherRulePort; oidValue += acl.getSuffix(); - stream << oidValue << ":" << acl._port << " "; + stream << oidValue << " x " << acl._port << " "; // Shape oidValue = swACLEtherRuleRxRate; oidValue += acl.getSuffix(); - stream << oidValue << ":" << acl._shape << " "; + stream << oidValue << " i " << acl._shape << " "; // Create ACL oidValue = swACLEtherRuleRowStatus; oidValue += acl.getSuffix(); - stream << oidValue << ":" << 4; + stream << oidValue << " i " << 4; return stream; }