summaryrefslogtreecommitdiff
path: root/net/fstrm
AgeCommit message (Collapse)AuthorFilesLines
2022-09-18net/fstrm: update to version 0.6.1.he3-32/+6
pkgsrc changes: * Remove patch integrated upstream. Upstream changes: fstrm (0.6.1) * fstrm_capture: ignore SIGPIPE, which will cause the interrupted connections to generate an EPIPE instead. * Fix truncation in snprintf calls in argument processing. * fstrm_capture: Fix output printf format.
2021-10-26net: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Not committed (merge conflicts...): net/radsecproxy/distinfo The following distfiles could not be fetched (fetched conditionally?): ./net/citrix_ica/distinfo citrix_ica-10.6.115659/en.linuxx86.tar.gz ./net/djbdns/distinfo dnscache-1.05-multiple-ip.patch ./net/djbdns/distinfo djbdns-1.05-test28.diff.xz ./net/djbdns/distinfo djbdns-1.05-ignoreip2.patch ./net/djbdns/distinfo djbdns-1.05-multiip.diff ./net/djbdns/distinfo djbdns-cachestats.patch
2021-10-07net: Remove SHA1 hashes for distfilesnia1-2/+1
2020-01-18*: Recursive revision bump for openssl 1.1.1.jperkin1-2/+2
2020-01-02fstrm: Add missing patch-libmy_argv.c entry to distinfoleot2-3/+4
PKGREVISION++
2019-12-16Fix format / buffer size warnings with newer gcc (7.4.0) byhe2-1/+26
also leaving room for the terminating 0 character. Also submitted as https://github.com/farsightsec/fstrm/pull/63 Bump PKGREVISION.
2019-10-14Update fstrm to version 0.6.0.he2-7/+7
Upstream changes: * This adds a new feature for fstrm_capture. It can perform output file rotation when a SIGUSR1 signal is received by fstrm_capture. (See the --gmtime or --localtime options.) This allows fstrm_capture's output file to be rotated by logrotate or a similar external utility. (Output rotation is suppressed if fstrm_capture is writing to stdout.)
2019-08-02fstrm: SunOS needs libnsl.jperkin1-1/+3
2019-03-12Upgrade to fstrm version 0.5.0.he2-8/+8
Pkgsrc changes: * Update license to "mit", to track upstream. Upstream changes: * Change license to modern MIT license for compatibility with GPLv2 software. * src/fstrm_replay.c: For OpenBSD and Posix portability include netinet/in.h and sys/socket.h to get struct sockaddr_in and the AF_* defines respectively. * Fix various compiler warnings.
2019-03-04The fstrm library needs libevent>=2.0, so say so.he1-1/+3
2019-01-17Add a buildlink3.mk file so this library can be used.he1-0/+14
2019-01-16Import fstrm version 0.4.0.he4-0/+74
This is fstrm, a C implementation of the Frame Streams data transport protocol. Frame Streams is a light weight, binary clean protocol that allows for the transport of arbitrarily encoded data payload sequences with minimal framing overhead -- just four bytes per data frame. Frame Streams does not specify an encoding format for data frames and can be used with any data serialization format that produces byte sequences, such as Protocol Buffers, XML, JSON, MessagePack, YAML, etc. Frame Streams can be used as both a streaming transport over a reliable byte stream socket (TCP sockets, TLS connections, AF_UNIX sockets, etc.) for data in motion as well as a file format for data at rest. A "Content Type" header identifies the type of payload being carried over an individual Frame Stream and allows cooperating programs to determine how to interpret a given sequence of data payloads. fstrm is an optimized C implementation of Frame Streams that includes a fast, lockless circular queue implementation and exposes library interfaces for setting up a dedicated Frame Streams I/O thread and asynchronously submitting data frames for transport from worker threads. It was originally written to facilitate the addition of high speed binary logging to DNS servers written in C using the dnstap log format.