fstrm-0.6.1-150300.9.5.1<>,T8e*p9|! xUzi;:V$&u=Koⵐ,Zr0_ g FX\AH2Ho#QQ1K獸ڜ% ƋsBs}͞E.3,g{ǃ~@MO ñ.UwSt {:f%%uӺ!)2= ' SLEŝUZue0@$51j5P&H7+gA EBbA\p&h9kPu>>$?d  = $=^b x     ,  \     $ `    @ ( 8 9 : FG H I XY\8 ]h ^b|c%deflu vw x$ yTzCfstrm0.6.1150300.9.5.1Frame Streams implementation in Cfstrm is a C implementation of Frame Streams that includes a 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. Frame Streams is a protocol that allows for the transport of arbitrarily encoded data payload sequences with just 4 bytes per data frame. Frame Streams does not specify an encoding format for frames and can be used with data serialization formats that produces byte sequences, such as Protocol Buffers, XML, JSON, MessagePack, YAML, etc. Frame Streams can be used both as a streaming transport over a reliable byte stream socket (TCP, AF_UNIX, TLS, 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.e*h02-armsrv3[/SUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Development/Libraries/C and C++https://github.com/farsightsec/fstrmlinuxaarch64 ( ..{#A큤A큤e*e*e*e*`kDc\e*\\e*e*e*08f5187f2722466d3a5263ae50bdd131d8825006e196abfc4521bfa7ff1b4ffd59450f15ca74b02012fe33b2ac8160c96e462ddaa1cac1e6cd39d42cd1b90715d9ee1bafdacbfa4ee01af48781ee7c2dbda3e752c3e3b43fd260e3c3d8a0394d03f6d0b9aac91d0cd99d3011a23e955c741118d79cfe22200e41d9add49c8d6266d03e11856f798f251d93936e5c008e2b809f5fe5dfc5d89fd9448bfcd5cef4fb7b6df23d37e4d9f60ea5e7b8a1ac793f1db07915539d2d201949f30f3aff23fb7b6df23d37e4d9f60ea5e7b8a1ac793f1db07915539d2d201949f30f3aff23ab8353fe9d2325154ec57c13cc09c52057b2f70b409a1fd13f8c50fbb415830ba6762cf58d3636a5f725a46ab04287a55184c29dc51f03061decc4ad98b67cf11d523e902169dccc10606c95fbb49b2c564f85b5b1c737548c14cb8384a97966rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootfstrm-0.6.1-150300.9.5.1.src.rpmfstrmfstrm(aarch-64)@@@@@@@@@@    ld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libevent-2.1.so.6()(64bit)libfstrm.so.0()(64bit)libfstrm.so.0(LIBFSTRM_0.2.0)(64bit)libfstrm.so.0(LIBFSTRM_0.4.0)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3aS@^@ZKt@ZJ"U6@Ua@UU&idmueller@suse.commrueckert@suse.dejengelh@inai.deavindra@opensuse.orgmrueckert@suse.dethehejik@suse.commvetter@suse.commrueckert@suse.de- update to 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.- Update to 0.6.0 It 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.) - Changes from 0.5.0 - Change license to modern MIT license for compatibility with GPLv2 software. Contact software@farsightsecurity.com for alternate licensing. - 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. - Changes from 0.4.0 The C implementation of the Frame Streams data transport protocol, fstrm version 0.4.0, was released. It adds TCP support, a new tool, new documentation, and several improvements. - Added manual pages for fstrm_capture and fstrm_dump. - Added new tool, fstrm_replay, for replaying saved Frame Streams data to a socket connection. - Adds TCP support. Add tcp_writer to the core library which implements a bi-directional Frame Streams writer as a TCP socket client. Introduces new developer API: fstrm_tcp_writer_init, fstrm_tcp_writer_options_init, fstrm_tcp_writer_options_destroy, fstrm_tcp_writer_options_set_socket_address, and fstrm_tcp_writer_options_set_socket_port. - fstrm_capture: new options for reading from TCP socket. - fstrm_capture: add "-c" / "--connections" option to limit the number of concurrent connections it will accept. - fstrm_capture: add "-b / --buffer-size" option to set the read buffer size (effectively the maximum frame size) to a value other than the default 256 KiB. - fstrm_capture: skip oversize messages to fix stalled connections caused by messages larger than the read highwater mark of the input buffer. Discarded messages are logged for the purposes of tuning the input buffer size. - fstrm_capture: complete sending of FINISH frame before closing connection. - Various test additions and improvements.- Compact description. Fix RPM groups.- update to 0.3.2 * Accommodate systems without pthread_condattr_setclock - 0.3.1 * Add support for '-' as a filename for stdin/stdout * Destroy condition variable and mutexes in fstrm_iothr_destroy() - 0.3.0 * Output file rotation * Change state properly in fstrm_writer_close() * force output flush on sighup * Build on OS X - cleanup with spec-cleaner - use dist tarball instead of github archive- require the correct version of libevent to make it fail early- fixed group of shared library-- cleanup spec file, remove .la- initial packageh02-armsrv3 1704733358 0.6.1-150300.9.5.10.6.1-150300.9.5.1fstrm_capturefstrm_dumpfstrm_replayfstrmChangeLogREADME.mdfstrmCOPYRIGHTLICENSEfstrm_capture.1.gzfstrm_dump.1.gzfstrm_replay.1.gz/usr/bin//usr/share/doc/packages//usr/share/doc/packages/fstrm//usr/share/licenses//usr/share/licenses/fstrm//usr/share/man/man1/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:32015/SUSE_SLE-15-SP3_Update/947d038d2e63c210a58d4bb9a86470b7-fstrm.SUSE_SLE-15-SP3_Updatedrpmxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=14ff03d96029687bd1772c2ecc8c892454238886, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=85137123cc0587afde3cbf9dbebc6d1e19130e8b, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=58fc81ac4b42b18ad0ab14bbcb30f25a2674097c, for GNU/Linux 3.7.0, strippeddirectoryASCII textASCII text, with very long linestroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)  RR RRRRRRRRRRRRRRRRRRRRRRpg}dQ. utf-8a36d87bf7e64449f2f1d836bdcb676724fe0ca3f5d51d08136d7b088c1b5d314? 7zXZ !t/W0]"k%n[l.cN6`qeljMu^/ԉӝ$dTF8Zx"ۼ~xb)`~]6ݢ68?P!s- ;TA0|ȅaB(jT&J$A׌Up-_~DX uqfTMGEqt6Box6+ŕw"1ӇԢ\bVA:%aBͳsP-Ï#~1' p0Q$΢uC]n[I6#\ lhlVе)c*1: RAUOwG&/CƙCJ"Uy"^m0;˘` `f4q=jh?B?Oի|OJ* |ɨ:y:nh!A8df:EhSl`)>v[8؈t02R"ʅ} ?T\( Kd0[ gCa9QO,$;]z5ĪHnsJO+dƚ,Wyv >Wetj TVs/kO_=5[LiR<@Y.iFTg#r)LTцWcNWom9ک aOb=*g[&}ug(_!4 Ȳ oKFGqw/ܙO[GFa6~uVnT5+(:\2ȫ.?ԨA_%אޣC0zj"WޮrEp[4c>iIg&Uzpla5ɏ}r1UE ]!E\@MY"mlĔ$tҴ ^|S%1'ү fv< UO/'=Y#"> s,'HW7lɝ_LEիa/'⫶J>ʖI.ks3ʄxS}T XuAA i/x~bG!9albZmj#fby:>6JjvsFk(ȃ!T*£:< NJKxTV-Z/CkoT')XOU4JE:+4{KKJgS 4fY0`f9, ⷒo%u(R8Bv(ZATle Q瓁I F.ܪVޢi$s>; [?+ys%yNgq-s?(˟cۘWa>&SMA1Tu6[@P*X *\J9_;hѱ\q ]I"j2y譆e $\?sXn4R^zXg6;wo& at2sfݦKW쬸Vf!{m\/U'vR˞>y#ggMݡ8u8(k.23;*mw7ߋ^nsf!̓Ҝoٛ1'n#pጥkr Ka}94ܖ愷fw`aD2\@\7:zN#MAF}ݣ&RnQ,!S}Kʾs6KY!^d~*Rا|O cVG_>w?hQw8K@)LDp^ݴsrwwhsש[-fKyWq?ټUO0TC 4yBkuQm}u^+_,P =,kdZkYsJ5_2&S<1WufuRM;jhePrRÀ|An"X8n[x_Fb.@KRoBӉ+i[ы-tlV6P+tIz!qkNG hFdG"#v9a*ԺWBi#JS{9V8>x6k`(I<윰`OKհ0 Ds v FJ @<ǁ*2pL]f+p:~˓ج~?@P@%,<}t;$7G/'>.̫ϊ0bU*[83"K|_^\oG%YAEHMqX0:0b3eey] AC.$m3yk hFY㯢@ׁ_tZ)>B@5cJw(|Wў unClKM%_#\)f^un.]BB0ZjQ¯=b#=Eƀ,mQfEh&"bf褶@6ZWn휈u8ea|)s0 #;_.k^DH߸F/ʟR$mT"hL0ךHhear>SJ73ݍ[\'MӓV^WiQypE[K)ѝ:c9j /uܫcmR݃(5a2 Ǧ1IeBˇv0c4|Fs H" \! VW%upm BEcw+ / 䩧y99 10*F^=AEZ}e$_"q犋!dqI/WBʱ1)M,g l"C]zt wO7!/+-913Fnyi n<=XOO0?C>_sY/#T8~B@5ढ़ifYfն(zޥ5bZb|>34wSN=uȟbW5ל}Ü/10qjU.@'z-!U KN{^z5$ٸM_c 3X遦zi/gͭԤLI^U4'/scj]W(bHrU3 cߐZ[ݥtz-'+CAo+Mb{V@6>F;;c@x PhS-+^*VA1wqqzg Z;/vU?@e4({u=az Γwƨ%Ml2BTgΕbؘ}#0[$+eIaO;^~XHXXuRTH 𛨶`=]ȹ,؏ݷ!h"7>4MhlemXYK&|~2G-ͳ#1/^z~I@ {/jyOfYh֤Q4ώ2hPg)Ww>X)]Bg^&Կ{|7pOH[ ۽^қ BQ8?pШ=L4M v|Lmel5_D;\̓ޡݰm]XjRc+7滎ڮ<͌_x[D, RRىK݈@{ҝFf;Wn Po4&윜.d(à" f;SnKQ~:p\U2*) 83ޚkLV>6y $rOWy7+aM@ !5NLT4]D%l|0Ih:fryk3 bZmN |<eUo=y@˟ųf]%koArLݖM;F;5Q9^+v R18{䛐q2ȇ 5-duY;zіWDdetĕH);l#Vv9!}aԃYyВ."RJU]p^UgAS9X=MEY20o:2 )xrU;:l!_6o^R g.Othjd4G6zGO}S}tZlL8ǧ*D A4+ w<*@ ِB-Kk忟NѮ3s/fgʰG:]`m^v2<-;bp"Wsnpx}e- jIG#@q`K8_ZI* :E?EDhvfoa/* 4K9ᱲy$»E'O$q69L;7+uD<'qc.PCF) D>׷t1ٴL 읱LV׺ 5<'FUh>fQ$ /eb8CܲESj/v|bg^NKٵ*0XO.j-$̭vuUj\ Gv#mI~'cpEǗά+\/nz8:ljP8g:O@*5&sOmmyN,[*NWa9~7pOkl nb[i{!Z*Apcc zL[R،dŊTFw:H<u3_5vӂrkk POy x77c0 $ dnf-Σ"dJ Qݰt@]VN2psyce[ڰaUt))Va a^wY_ZVoz|N}@?8mr&Oo?) k! ,7IЍ"ߏd&IZЋ,A^(.k ,\9:#!G@SO 2uo_܆h)iElVA|K&D~g'lHCO;J>z; >y#fCr`KR6"5Wr+2YeOG*LZA8:aYV\T<0\مzE XCWfBS&gLlWﭤxY|do\䅊,+$3 BK<V.w"T偠"[z,ؤ!xypRQ?@1 toT>{f>n2Z~{SgrŃZ'Dq,.=k_&}8>6gZp8z`r1/KI焰fҁFt7I5B'a/њ~*}^&A(oJ:l)Y!*U?`}MBIp өB™ZR/̐^UF%i3N 5d>4NPq٘bwlL^(Bg ]E&웼WcFwhKKHy2bYF nO<-nQSQdQnچd/IIWZq"+&oPMb$<: /ۢ:'$0`?s+O %~er̈́D4cvDKpk0|H~vA$+F~astlKQ;~3ʏ1\8W2$° Z,BFeovJoM}\sxbˣ$-m)FAR9 ;dH(oPMkIՒޟ\rѸUL*頒s}21JLL3''p99YJ+:SڄYlUo64B0]:s'SO:e6aj ;V])ry1ݻP>MU g LRyZ^`}66 imPMW৖ǐ6EJs{~Tu&mXǸU񲪊iЖ*Cg >YQ | w:+b[#I4](d] FbG}4:o ՟g%;S-݅׺\uZ9e/{ Dlj T}g=.R~+r3(msM$ȣ\8GlL{zGrzd:YI2gJ}˒=|jl<-4a%JH4?μY#Z`H@2/G;z:`\ b)np9((Ɲ 7 6ĘOP;hc6Jb"M6YCCn7x37mErÝz?*.NL%#>Rm{ǻJm@D'*wѣ3^wxx>a(˾{ȑbO<UgNjiRĀw#)ҁ%}eotvze#SLu~a+85rdNPKsJc[R{FM2p+V1doZ+ZP2vR`eK"kZF!=ooʀ h=ku,u~$x%!4h 珡$x@܄l6:%͝p ]0~d[bb \:Bt37bҩuiUu0%^d|Rt:7029X іԼLM 1P$5*/zџ-|zLL&bWWD¢=9G+ ˲h,w*FyޣX+<Ҍ d?&`>5X29?z-Îm[l˩x#=c3_g.4KFnU ^%+sJ&/M7 ?=ɌUB+B:IdYv) BHW^m'!$O>O=ͪL2 $ټ_"(QJR |hIBz}F:ytuMGm#QsP٫.6R!2{1e%8ȩ:^ vϚ5*QUH̍uaU JTe#g(ZM&Ftra"#u~ tC}1Z8A,ɭqi~WF.K.A}|4Cf kK?kn@&60{pNY7r [nD㓱K"L7-. !K T%p7)GgS0hYmAIV,:nixW}w1 h ]-w<'W1/^.FK`9{dFdQ G(<&Fj?zv@T0'`ʝlMEʦtU]8\p Ta(pnhT ,Br9 Hܴ byXF&84(!Aj;ap07 CH"`v(pbIEXAeD*Fw:(8rx6:9f½(C\DEs/HCbhb"kjg,xl8)gm'~ۦdZeEru,q | DWmcy46kEяx WO[^s=Onv} Yk)τ^F2! r-DxvcE_\֐TqMUVE"4_uL3*GS9j. TLB&s9uN-`糄LliSQṳc~-E%-)ƞCr@oX2%l ;k$$?e$>K1*j@4 5+X}U?q-&'<~uqM! Y(V,iC##f+Rħ[ IB0@(:Wp˗w#ҮƠj$j6.y0ٌ/ U si];BIGlyԙb׆ AZE{9CJE|&vqJo#O6K30kc--A?g8Z\rr{1UFd%lg"T-|`+0ù(&=o[6Z~W+#Cͧ;3D%:U灰0(%qW!}nǔLLKX J *Bab!1 YZ