aboutsummaryrefslogtreecommitdiff
path: root/dns/packetq
Commit message (Collapse)AuthorAgeFilesLines
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Update maintainer email addressDanilo G. Baio2018-04-241-2/+2
| | | | | | | | | | Ownership of the former email address confirmed by email PR: 227620 Submitted by: Leo Vandewoestijne Notes: svn path=/head/; revision=468167
* dns/packetq: Update to 1.4.1Yuri Victorovich2018-03-062-7/+6
| | | | | | | | | | | | | Port changes: * Changed to DISTVERSION * Grouped USExx PR: 226368 Submitted by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer) Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=463692
* dns/packetq: require C++11 toolchain (on powerpc*, mips*, sparc*)Jan Beich2017-12-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cc1plus: error: unrecognized command line option "-std=c++0x" In file included from dns.cpp:22: In file included from ./dns.h:31: In file included from ./packet_handler.h:33: In file included from ./sql.h:43: ./variant.h:297:34: error: expected '(' for function-style cast or type construction return std::hash<bool>()(m_val.m_bool); ~~~~^ ./variant.h:297:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash<bool>()(m_val.m_bool); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:297:36: error: expected expression return std::hash<bool>()(m_val.m_bool); ^ ./variant.h:299:33: error: expected '(' for function-style cast or type construction return std::hash<int>()(m_val.m_int); ~~~^ ./variant.h:299:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash<int>()(m_val.m_int); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:299:35: error: expected expression return std::hash<int>()(m_val.m_int); ^ ./variant.h:301:35: error: expected '(' for function-style cast or type construction return std::hash<float>()(m_val.m_float); ~~~~~^ ./variant.h:301:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash<float>()(m_val.m_float); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:301:37: error: expected expression return std::hash<float>()(m_val.m_float); ^ In file included from dns.cpp:22: In file included from ./dns.h:31: In file included from ./packet_handler.h:33: ./sql.h:1766:8: error: explicit specialization of non-template struct 'hash' struct hash<std::vector<packetq::Variant> > { ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 10 errors generated. Reported by: pkg-fallout (mips64) Notes: svn path=/head/; revision=456077
* dns/packetq: Update to 1.4.0Danilo G. Baio2017-07-192-4/+4
| | | | | | | | | | Changes: https://github.com/DNS-OARC/PacketQ/releases/tag/v1.4.0 PR: 220834 Submitted by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer) Notes: svn path=/head/; revision=446182
* Update to 1.3.1Sunpoet Po-Chuan Hsieh2017-06-022-4/+4
| | | | | | | | | Changes: https://github.com/DNS-OARC/PacketQ/blob/develop/CHANGES PR: 219730 Submitted by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer) Notes: svn path=/head/; revision=442445
* Add packetq 1.3.0Sunpoet Po-Chuan Hsieh2017-05-253-0/+37
packetq is a command line tool to run SQL queries directly on PCAP files, the results can be outputted as JSON (default), formatted/compact CSV and XML. It also contain a very simplistic web-server in order to inspect PCAP files remotely. PacketQ was known as DNS2db but renamed in 2011. WWW: https://www.dns-oarc.net/tools/packetq PR: 219504 Submitted by: Leo Vandewoestijne <freebsd@dns-lab.com> Notes: svn path=/head/; revision=441736