mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-05 22:56:57 +02:00
This development tool can be used to convert a string representing a termination event logs to its human redable representation. Several string may be converting at a time. To do so, several arguments can be specified on the commeand line or they can be provided on STDIN, using "-" argument. Here is an exemple: > term_events f2x2f4x4 m2m4m1 e2e1 s2s1S1 E1 M1 F1 ### f2x2f4x4 : fd:shutr > xprt:shutr > fd:snd_err > xprt:snd_err ### m2m4m1 : muxc:shutr > muxc:snd_err > muxc:shutw ### e2e1 : se:eos > se:shutw ### s2s1S1 : strm:eos > strm:shutw > STRM:shutw ### E1 : SE:shutw ### M1 : MUXC:shutw ### F1 : FD:shutw The make target "dev/term_events/term_events" must be used to compile it.
61 lines
934 B
Plaintext
61 lines
934 B
Plaintext
# Below we forbid everything and only allow what we know, that's much easier
|
|
# than blocking about 500 different test files and bug report outputs.
|
|
/.*
|
|
/*
|
|
!/.cirrus.yml
|
|
!/.gitattributes
|
|
!/.github
|
|
!/.gitignore
|
|
!/.travis.yml
|
|
!/CHANGELOG
|
|
!/LICENSE
|
|
!/BRANCHES
|
|
!/BSDmakefile
|
|
!/Makefile
|
|
!/README
|
|
!/INSTALL
|
|
!/CONTRIBUTING
|
|
!/MAINTAINERS
|
|
!/SUBVERS
|
|
!/VERDATE
|
|
!/VERSION
|
|
!/addons
|
|
!/admin
|
|
!/dev
|
|
!/doc
|
|
!/ebtree
|
|
!/examples
|
|
!/include
|
|
!/src
|
|
!/tests
|
|
!/debian
|
|
!/scripts
|
|
!/reg-tests
|
|
# Reject some generic files
|
|
*.o
|
|
*.a
|
|
*~
|
|
*.rej
|
|
*.orig
|
|
*.bak
|
|
*.sw[op]
|
|
# And reject some specific files
|
|
/admin/halog/halog
|
|
/admin/dyncookie/dyncookie
|
|
/admin/iprange/ip6range
|
|
/admin/iprange/iprange
|
|
/admin/systemd/haproxy.service
|
|
dev/base64/base64rev-gen
|
|
dev/flags/flags
|
|
dev/poll/poll
|
|
dev/tcploop/tcploop
|
|
dev/haring/haring
|
|
dev/hpack/decode
|
|
dev/hpack/gen-rht
|
|
dev/qpack/decode
|
|
dev/udp/udp-perturb
|
|
/src/dlmalloc.c
|
|
/tests/test_hashes
|
|
doc/lua-api/_build
|
|
dev/term_events/term_events
|