├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile.am ├── Makefile.am.inc ├── README.md ├── TODO ├── acconfig.h ├── atomicio.c ├── bwstat.c ├── bwstat.h ├── cleanup.c ├── cleanup.h ├── client.c ├── client.h ├── compat └── sys │ ├── queue.h │ └── tree.h ├── conf.c ├── conf.h ├── config.h.in ├── configure.in ├── daemon.c ├── err.c ├── getopt.c ├── m4 └── ax_pthread.m4 ├── message.h ├── print.c ├── print.h ├── setenv.c ├── stamp-h.in ├── strlcat.c ├── strlcpy.c ├── strsep.c ├── trickle-overload.c ├── trickle.1 ├── trickle.c ├── trickle.h ├── tricklectl.c ├── trickled.8 ├── trickled.c ├── trickled.conf.5 ├── trickledu.c ├── trickledu.h ├── util.c ├── util.h ├── xdr.c └── xdr.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.am.inc: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign no-dependencies 2 | 3 | DISTCLEANFILES = *~ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/TODO -------------------------------------------------------------------------------- /acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/acconfig.h -------------------------------------------------------------------------------- /atomicio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/atomicio.c -------------------------------------------------------------------------------- /bwstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/bwstat.c -------------------------------------------------------------------------------- /bwstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/bwstat.h -------------------------------------------------------------------------------- /cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/cleanup.c -------------------------------------------------------------------------------- /cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/cleanup.h -------------------------------------------------------------------------------- /client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/client.c -------------------------------------------------------------------------------- /client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/client.h -------------------------------------------------------------------------------- /compat/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/compat/sys/queue.h -------------------------------------------------------------------------------- /compat/sys/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/compat/sys/tree.h -------------------------------------------------------------------------------- /conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/conf.c -------------------------------------------------------------------------------- /conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/conf.h -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/config.h.in -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/configure.in -------------------------------------------------------------------------------- /daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/daemon.c -------------------------------------------------------------------------------- /err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/err.c -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/getopt.c -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/message.h -------------------------------------------------------------------------------- /print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/print.c -------------------------------------------------------------------------------- /print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/print.h -------------------------------------------------------------------------------- /setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/setenv.c -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/strlcat.c -------------------------------------------------------------------------------- /strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/strlcpy.c -------------------------------------------------------------------------------- /strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/strsep.c -------------------------------------------------------------------------------- /trickle-overload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickle-overload.c -------------------------------------------------------------------------------- /trickle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickle.1 -------------------------------------------------------------------------------- /trickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickle.c -------------------------------------------------------------------------------- /trickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickle.h -------------------------------------------------------------------------------- /tricklectl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/tricklectl.c -------------------------------------------------------------------------------- /trickled.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickled.8 -------------------------------------------------------------------------------- /trickled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickled.c -------------------------------------------------------------------------------- /trickled.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickled.conf.5 -------------------------------------------------------------------------------- /trickledu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickledu.c -------------------------------------------------------------------------------- /trickledu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/trickledu.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/util.h -------------------------------------------------------------------------------- /xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/xdr.c -------------------------------------------------------------------------------- /xdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusae/trickle/HEAD/xdr.h --------------------------------------------------------------------------------