Path to this page:
./
net/fstrm,
C implementation of the Frame Streams data transport protocol
Branch: CURRENT,
Version: 0.6.1nb1,
Package name: fstrm-0.6.1nb1,
Maintainer: heThis 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.
Required to run:[
devel/libevent]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 132.251 KB
Version history: (Expand)
- (2023-10-25) Updated to version: fstrm-0.6.1nb1
- (2022-09-18) Updated to version: fstrm-0.6.1
- (2020-01-19) Updated to version: fstrm-0.6.0nb3
- (2020-01-02) Updated to version: fstrm-0.6.0nb2
- (2019-12-17) Updated to version: fstrm-0.6.0nb1
- (2019-10-14) Updated to version: fstrm-0.6.0
CVS history: (Expand)
2023-10-25 00:11:51 by Thomas Klausner | Files touched by this commit (2298) |
Log message:
*: bump for openssl 3
|
2022-09-18 14:11:28 by Havard Eidnes | Files touched by this commit (3) | |
Log message:
net/fstrm: update to version 0.6.1.
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-26 13:07:15 by Nia Alarie | Files touched by this commit (958) |
Log message:
net: Replace RMD160 checksums with BLAKE2s checksums
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-07 16:43:07 by Nia Alarie | Files touched by this commit (962) |
Log message:
net: Remove SHA1 hashes for distfiles
|
2020-01-18 22:51:16 by Jonathan Perkin | Files touched by this commit (1836) |
Log message:
*: Recursive revision bump for openssl 1.1.1.
|
2020-01-02 04:31:24 by Leonardo Taccari | Files touched by this commit (2) |
Log message:
fstrm: Add missing patch-libmy_argv.c entry to distinfo
PKGREVISION++
|
2019-12-16 13:52:24 by Havard Eidnes | Files touched by this commit (2) |
Log message:
Fix format / buffer size warnings with newer gcc (7.4.0) by
also leaving room for the terminating 0 character.
Also submitted as https://github.com/farsightsec/fstrm/pull/63
Bump PKGREVISION.
|
2019-10-14 19:47:24 by Havard Eidnes | Files touched by this commit (2) |
Log message:
Update fstrm to version 0.6.0.
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.)
|