├── .github └── workflows │ └── codeql-analysis.yml ├── AUTHORS ├── BUGS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── SECURITY.md ├── TODO ├── TestLog ├── aclocal.m4 ├── ar-lib ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in ├── examples │ ├── AdvancedDynamic.cc │ ├── AdvancedStatic.cc │ ├── BasicDynamic.cc │ ├── BasicStatic.cc │ ├── Makefile.am │ ├── Makefile.in │ ├── README.in │ ├── Transactional.cc │ ├── advanced_dynamic.c │ ├── advanced_static.c │ ├── basic_dynamic.c │ ├── basic_static.c │ ├── example_makefile.in │ ├── java │ │ ├── Advanced.java.in │ │ ├── Basic.java.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.in │ │ └── Transactional.java.in │ ├── perl │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── advanced.pl │ │ ├── basic.pl │ │ └── transactional.pl │ ├── php │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.in │ │ ├── advanced.php.in │ │ ├── basic.php.in │ │ └── transactional.php.in │ ├── python │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── advanced.py │ │ ├── basic.py │ │ └── transactional.py │ └── transactional.c ├── html │ ├── C++ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── doxygen.conf.in │ │ ├── doxygen.css │ │ ├── ftv2blank.png │ │ ├── index.html │ │ └── tab_b.gif │ ├── C │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── doxygen.conf.in │ │ ├── doxygen.css │ │ ├── ftv2blank.png │ │ ├── index.html │ │ └── tab_b.gif │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── doxygen.conf.in │ ├── doxygen_footer.htm │ ├── doxygen_header.htm │ └── java │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── org │ │ └── tiian │ │ │ └── flom │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ └── resources │ │ ├── Makefile.am │ │ └── Makefile.in ├── images │ ├── README │ ├── Security1.odg │ ├── Use Case Graphs1.odg │ ├── Use Case Graphs2.odg │ ├── logo.odg │ ├── logo_156x326.gif │ ├── logo_156x326.png │ ├── security_01.png │ ├── security_02.png │ ├── security_03.png │ ├── security_ce_01.png │ ├── security_ce_02.png │ ├── security_ce_03.png │ ├── security_ma_01.png │ ├── security_ma_02.png │ ├── security_ma_03.png │ ├── use_case_10.png │ ├── use_case_10_640x195.png │ ├── use_case_11.png │ ├── use_case_11_640x576.png │ ├── use_case_12.png │ ├── use_case_12_640x606.png │ ├── use_case_13.png │ ├── use_case_15a.png │ ├── use_case_15b.png │ ├── use_case_15b2.png │ ├── use_case_15c.png │ ├── use_case_15c2.png │ ├── use_case_15d.png │ ├── use_case_15e.png │ ├── use_case_15f.png │ ├── use_case_16a.png │ ├── use_case_16b.png │ ├── use_case_16c.png │ ├── use_case_16d_17a.png │ ├── use_case_17b.png │ ├── use_case_17c.png │ ├── use_case_1_5b_6b_7_8_9_14.png │ ├── use_case_2.png │ ├── use_case_2_640x441.png │ ├── use_case_3.png │ ├── use_case_4.png │ ├── use_case_5a.png │ └── use_case_6a.png ├── lifespan.txt ├── papers │ └── FLoM_overview │ │ ├── FLoM overview.odg │ │ ├── FLoM overview.odt │ │ └── FLoM overview.pdf └── protocol.txt ├── doxygen.conf.in ├── etc ├── Makefile.am ├── Makefile.in ├── flom.conf.in └── flom_openssl.conf ├── install-sh ├── ltmain.sh ├── m4 ├── ax_jni_include_dir.m4 ├── ax_net_iface.m4 ├── ax_pkg_swig.m4 ├── ax_python_devel.m4 ├── ax_swig_python.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── man ├── Makefile.am ├── Makefile.in └── flom.man.in ├── missing ├── src ├── FlomHandle.hh ├── Makefile.am ├── Makefile.in ├── _template.c ├── flom.h ├── flom.hh ├── flom_client.c ├── flom_client.h ├── flom_config.c ├── flom_config.h ├── flom_conn.c ├── flom_conn.h ├── flom_conns.c ├── flom_conns.h ├── flom_daemon.c ├── flom_daemon.h ├── flom_daemon_mngmnt.c ├── flom_daemon_mngmnt.h ├── flom_debug_features.c ├── flom_debug_features.h ├── flom_defines.h ├── flom_errors.c ├── flom_errors.h.in ├── flom_exec.c ├── flom_exec.h ├── flom_fuse.c ├── flom_fuse.h ├── flom_handle.c ├── flom_handle.h ├── flom_locker.c ├── flom_locker.h ├── flom_msg.c ├── flom_msg.h ├── flom_resource_hier.c ├── flom_resource_hier.h ├── flom_resource_numeric.c ├── flom_resource_numeric.h ├── flom_resource_sequence.c ├── flom_resource_sequence.h ├── flom_resource_set.c ├── flom_resource_set.h ├── flom_resource_simple.c ├── flom_resource_simple.h ├── flom_resource_timestamp.c ├── flom_resource_timestamp.h ├── flom_rsrc.c ├── flom_rsrc.h ├── flom_syslog.h ├── flom_tcp.c ├── flom_tcp.h ├── flom_tls.c ├── flom_tls.h ├── flom_trace.c ├── flom_trace.h ├── flom_types.h ├── flom_vfs.c ├── flom_vfs.h ├── java │ ├── FlomErrorCodes.awk │ ├── FlomLockModes.awk │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── flom_java.c │ ├── flom_java_FlomErrorCodes.h │ ├── flom_java_FlomHandle.h │ └── org │ │ └── tiian │ │ └── flom │ │ ├── FlomErrorCodes.java │ │ ├── FlomException.java │ │ ├── FlomHandle.java │ │ └── FlomLockModes.java ├── main.c ├── perl │ ├── Changes │ ├── MANIFEST │ ├── Makefile.PL.in │ ├── Makefile.am │ ├── Makefile.in │ ├── README.in │ └── flom.i ├── php │ ├── Makefile.am │ ├── Makefile.in │ ├── flom.i │ ├── flom.php │ └── php_flom.h ├── python │ ├── Makefile.am │ ├── Makefile.in │ ├── flom.i │ └── setup.py.i ├── template.c └── template.h ├── tests ├── Makefile.am ├── Makefile.in ├── api.at.in ├── api_perl.at.in ├── atlocal.in ├── cmdopt.at.in ├── debug-features.at ├── incompopt.at.in ├── monitor.at ├── scripts │ ├── flom_test_exec1.sh │ ├── flom_test_exec2.sh │ ├── flom_test_exec3.sh │ ├── flom_test_exec4.sh │ ├── flom_test_exec5.sh │ ├── iface_ip_address.sh │ ├── iface_name.sh │ ├── skip_ipv6_multicast_tests.sh │ ├── sleep_and_echo.sh │ ├── sleep_echo_exit.sh │ └── tls_setup.sh ├── shutdown.at ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── case0000.c │ ├── case0001.c │ ├── case0002.c │ ├── case0003.c │ ├── case0004.c │ ├── case1000.cc │ ├── case1001.cc │ ├── case1002.cc │ ├── case1004.cc │ ├── case2000.php.in │ ├── case2001.php.in │ ├── case2002.php.in │ ├── case2004.php.in │ ├── case3000.py │ ├── case3001.py │ ├── case3002.py │ ├── case3004.py │ ├── case4000.java │ ├── case4001.java │ ├── case4002.java │ ├── case4003.java │ ├── case4004.java │ ├── case5000.pl │ ├── case5001.pl │ ├── case5002.pl │ └── case5004.pl ├── testsuite.at ├── tls.at.in ├── usecase-dist.at.in ├── usecase-hier.at ├── usecase-lt.at.in ├── usecase-num.at.in ├── usecase-seq.at ├── usecase-set.at.in ├── usecase-tms.at.in ├── usecase.at.in └── vfs.at.in ├── valgrind.cmd └── valgrind.supp /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/README -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/TODO -------------------------------------------------------------------------------- /TestLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/TestLog -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /ar-lib: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/ar-lib -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/depcomp -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/examples/AdvancedDynamic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/AdvancedDynamic.cc -------------------------------------------------------------------------------- /doc/examples/AdvancedStatic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/AdvancedStatic.cc -------------------------------------------------------------------------------- /doc/examples/BasicDynamic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/BasicDynamic.cc -------------------------------------------------------------------------------- /doc/examples/BasicStatic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/BasicStatic.cc -------------------------------------------------------------------------------- /doc/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/Makefile.am -------------------------------------------------------------------------------- /doc/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/Makefile.in -------------------------------------------------------------------------------- /doc/examples/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/README.in -------------------------------------------------------------------------------- /doc/examples/Transactional.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/Transactional.cc -------------------------------------------------------------------------------- /doc/examples/advanced_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/advanced_dynamic.c -------------------------------------------------------------------------------- /doc/examples/advanced_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/advanced_static.c -------------------------------------------------------------------------------- /doc/examples/basic_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/basic_dynamic.c -------------------------------------------------------------------------------- /doc/examples/basic_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/basic_static.c -------------------------------------------------------------------------------- /doc/examples/example_makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/example_makefile.in -------------------------------------------------------------------------------- /doc/examples/java/Advanced.java.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/java/Advanced.java.in -------------------------------------------------------------------------------- /doc/examples/java/Basic.java.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/java/Basic.java.in -------------------------------------------------------------------------------- /doc/examples/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/java/Makefile.am -------------------------------------------------------------------------------- /doc/examples/java/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/java/Makefile.in -------------------------------------------------------------------------------- /doc/examples/java/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/java/README.in -------------------------------------------------------------------------------- /doc/examples/java/Transactional.java.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/java/Transactional.java.in -------------------------------------------------------------------------------- /doc/examples/perl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/perl/Makefile.am -------------------------------------------------------------------------------- /doc/examples/perl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/perl/Makefile.in -------------------------------------------------------------------------------- /doc/examples/perl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/perl/README -------------------------------------------------------------------------------- /doc/examples/perl/advanced.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/perl/advanced.pl -------------------------------------------------------------------------------- /doc/examples/perl/basic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/perl/basic.pl -------------------------------------------------------------------------------- /doc/examples/perl/transactional.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/perl/transactional.pl -------------------------------------------------------------------------------- /doc/examples/php/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/php/Makefile.am -------------------------------------------------------------------------------- /doc/examples/php/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/php/Makefile.in -------------------------------------------------------------------------------- /doc/examples/php/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/php/README.in -------------------------------------------------------------------------------- /doc/examples/php/advanced.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/php/advanced.php.in -------------------------------------------------------------------------------- /doc/examples/php/basic.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/php/basic.php.in -------------------------------------------------------------------------------- /doc/examples/php/transactional.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/php/transactional.php.in -------------------------------------------------------------------------------- /doc/examples/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/python/Makefile.am -------------------------------------------------------------------------------- /doc/examples/python/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/python/Makefile.in -------------------------------------------------------------------------------- /doc/examples/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/python/README -------------------------------------------------------------------------------- /doc/examples/python/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/python/advanced.py -------------------------------------------------------------------------------- /doc/examples/python/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/python/basic.py -------------------------------------------------------------------------------- /doc/examples/python/transactional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/python/transactional.py -------------------------------------------------------------------------------- /doc/examples/transactional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/examples/transactional.c -------------------------------------------------------------------------------- /doc/html/C++/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C++/Makefile.am -------------------------------------------------------------------------------- /doc/html/C++/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C++/Makefile.in -------------------------------------------------------------------------------- /doc/html/C++/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C++/doxygen.conf.in -------------------------------------------------------------------------------- /doc/html/C++/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C++/doxygen.css -------------------------------------------------------------------------------- /doc/html/C++/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C++/ftv2blank.png -------------------------------------------------------------------------------- /doc/html/C++/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C++/index.html -------------------------------------------------------------------------------- /doc/html/C++/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C++/tab_b.gif -------------------------------------------------------------------------------- /doc/html/C/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C/Makefile.am -------------------------------------------------------------------------------- /doc/html/C/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C/Makefile.in -------------------------------------------------------------------------------- /doc/html/C/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C/doxygen.conf.in -------------------------------------------------------------------------------- /doc/html/C/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C/doxygen.css -------------------------------------------------------------------------------- /doc/html/C/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C/ftv2blank.png -------------------------------------------------------------------------------- /doc/html/C/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C/index.html -------------------------------------------------------------------------------- /doc/html/C/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/C/tab_b.gif -------------------------------------------------------------------------------- /doc/html/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/Makefile.am -------------------------------------------------------------------------------- /doc/html/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/Makefile.in -------------------------------------------------------------------------------- /doc/html/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/README -------------------------------------------------------------------------------- /doc/html/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/doxygen.conf.in -------------------------------------------------------------------------------- /doc/html/doxygen_footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/doxygen_footer.htm -------------------------------------------------------------------------------- /doc/html/doxygen_header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/doxygen_header.htm -------------------------------------------------------------------------------- /doc/html/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/java/Makefile.am -------------------------------------------------------------------------------- /doc/html/java/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/java/Makefile.in -------------------------------------------------------------------------------- /doc/html/java/org/tiian/flom/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/java/org/tiian/flom/Makefile.am -------------------------------------------------------------------------------- /doc/html/java/org/tiian/flom/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/java/org/tiian/flom/Makefile.in -------------------------------------------------------------------------------- /doc/html/java/resources/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/java/resources/Makefile.am -------------------------------------------------------------------------------- /doc/html/java/resources/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/html/java/resources/Makefile.in -------------------------------------------------------------------------------- /doc/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/README -------------------------------------------------------------------------------- /doc/images/Security1.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/Security1.odg -------------------------------------------------------------------------------- /doc/images/Use Case Graphs1.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/Use Case Graphs1.odg -------------------------------------------------------------------------------- /doc/images/Use Case Graphs2.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/Use Case Graphs2.odg -------------------------------------------------------------------------------- /doc/images/logo.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/logo.odg -------------------------------------------------------------------------------- /doc/images/logo_156x326.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/logo_156x326.gif -------------------------------------------------------------------------------- /doc/images/logo_156x326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/logo_156x326.png -------------------------------------------------------------------------------- /doc/images/security_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_01.png -------------------------------------------------------------------------------- /doc/images/security_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_02.png -------------------------------------------------------------------------------- /doc/images/security_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_03.png -------------------------------------------------------------------------------- /doc/images/security_ce_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_ce_01.png -------------------------------------------------------------------------------- /doc/images/security_ce_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_ce_02.png -------------------------------------------------------------------------------- /doc/images/security_ce_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_ce_03.png -------------------------------------------------------------------------------- /doc/images/security_ma_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_ma_01.png -------------------------------------------------------------------------------- /doc/images/security_ma_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_ma_02.png -------------------------------------------------------------------------------- /doc/images/security_ma_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/security_ma_03.png -------------------------------------------------------------------------------- /doc/images/use_case_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_10.png -------------------------------------------------------------------------------- /doc/images/use_case_10_640x195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_10_640x195.png -------------------------------------------------------------------------------- /doc/images/use_case_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_11.png -------------------------------------------------------------------------------- /doc/images/use_case_11_640x576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_11_640x576.png -------------------------------------------------------------------------------- /doc/images/use_case_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_12.png -------------------------------------------------------------------------------- /doc/images/use_case_12_640x606.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_12_640x606.png -------------------------------------------------------------------------------- /doc/images/use_case_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_13.png -------------------------------------------------------------------------------- /doc/images/use_case_15a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15a.png -------------------------------------------------------------------------------- /doc/images/use_case_15b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15b.png -------------------------------------------------------------------------------- /doc/images/use_case_15b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15b2.png -------------------------------------------------------------------------------- /doc/images/use_case_15c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15c.png -------------------------------------------------------------------------------- /doc/images/use_case_15c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15c2.png -------------------------------------------------------------------------------- /doc/images/use_case_15d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15d.png -------------------------------------------------------------------------------- /doc/images/use_case_15e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15e.png -------------------------------------------------------------------------------- /doc/images/use_case_15f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_15f.png -------------------------------------------------------------------------------- /doc/images/use_case_16a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_16a.png -------------------------------------------------------------------------------- /doc/images/use_case_16b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_16b.png -------------------------------------------------------------------------------- /doc/images/use_case_16c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_16c.png -------------------------------------------------------------------------------- /doc/images/use_case_16d_17a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_16d_17a.png -------------------------------------------------------------------------------- /doc/images/use_case_17b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_17b.png -------------------------------------------------------------------------------- /doc/images/use_case_17c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_17c.png -------------------------------------------------------------------------------- /doc/images/use_case_1_5b_6b_7_8_9_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_1_5b_6b_7_8_9_14.png -------------------------------------------------------------------------------- /doc/images/use_case_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_2.png -------------------------------------------------------------------------------- /doc/images/use_case_2_640x441.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_2_640x441.png -------------------------------------------------------------------------------- /doc/images/use_case_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_3.png -------------------------------------------------------------------------------- /doc/images/use_case_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_4.png -------------------------------------------------------------------------------- /doc/images/use_case_5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_5a.png -------------------------------------------------------------------------------- /doc/images/use_case_6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/images/use_case_6a.png -------------------------------------------------------------------------------- /doc/lifespan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/lifespan.txt -------------------------------------------------------------------------------- /doc/papers/FLoM_overview/FLoM overview.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/papers/FLoM_overview/FLoM overview.odg -------------------------------------------------------------------------------- /doc/papers/FLoM_overview/FLoM overview.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/papers/FLoM_overview/FLoM overview.odt -------------------------------------------------------------------------------- /doc/papers/FLoM_overview/FLoM overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/papers/FLoM_overview/FLoM overview.pdf -------------------------------------------------------------------------------- /doc/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doc/protocol.txt -------------------------------------------------------------------------------- /doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/doxygen.conf.in -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/etc/Makefile.in -------------------------------------------------------------------------------- /etc/flom.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/etc/flom.conf.in -------------------------------------------------------------------------------- /etc/flom_openssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/etc/flom_openssl.conf -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/ltmain.sh -------------------------------------------------------------------------------- /m4/ax_jni_include_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ax_jni_include_dir.m4 -------------------------------------------------------------------------------- /m4/ax_net_iface.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ax_net_iface.m4 -------------------------------------------------------------------------------- /m4/ax_pkg_swig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ax_pkg_swig.m4 -------------------------------------------------------------------------------- /m4/ax_python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ax_python_devel.m4 -------------------------------------------------------------------------------- /m4/ax_swig_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ax_swig_python.m4 -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /man/flom.man.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/man/flom.man.in -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/missing -------------------------------------------------------------------------------- /src/FlomHandle.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/FlomHandle.hh -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/_template.c -------------------------------------------------------------------------------- /src/flom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom.h -------------------------------------------------------------------------------- /src/flom.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom.hh -------------------------------------------------------------------------------- /src/flom_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_client.c -------------------------------------------------------------------------------- /src/flom_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_client.h -------------------------------------------------------------------------------- /src/flom_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_config.c -------------------------------------------------------------------------------- /src/flom_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_config.h -------------------------------------------------------------------------------- /src/flom_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_conn.c -------------------------------------------------------------------------------- /src/flom_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_conn.h -------------------------------------------------------------------------------- /src/flom_conns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_conns.c -------------------------------------------------------------------------------- /src/flom_conns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_conns.h -------------------------------------------------------------------------------- /src/flom_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_daemon.c -------------------------------------------------------------------------------- /src/flom_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_daemon.h -------------------------------------------------------------------------------- /src/flom_daemon_mngmnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_daemon_mngmnt.c -------------------------------------------------------------------------------- /src/flom_daemon_mngmnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_daemon_mngmnt.h -------------------------------------------------------------------------------- /src/flom_debug_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_debug_features.c -------------------------------------------------------------------------------- /src/flom_debug_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_debug_features.h -------------------------------------------------------------------------------- /src/flom_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_defines.h -------------------------------------------------------------------------------- /src/flom_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_errors.c -------------------------------------------------------------------------------- /src/flom_errors.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_errors.h.in -------------------------------------------------------------------------------- /src/flom_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_exec.c -------------------------------------------------------------------------------- /src/flom_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_exec.h -------------------------------------------------------------------------------- /src/flom_fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_fuse.c -------------------------------------------------------------------------------- /src/flom_fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_fuse.h -------------------------------------------------------------------------------- /src/flom_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_handle.c -------------------------------------------------------------------------------- /src/flom_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_handle.h -------------------------------------------------------------------------------- /src/flom_locker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_locker.c -------------------------------------------------------------------------------- /src/flom_locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_locker.h -------------------------------------------------------------------------------- /src/flom_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_msg.c -------------------------------------------------------------------------------- /src/flom_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_msg.h -------------------------------------------------------------------------------- /src/flom_resource_hier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_hier.c -------------------------------------------------------------------------------- /src/flom_resource_hier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_hier.h -------------------------------------------------------------------------------- /src/flom_resource_numeric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_numeric.c -------------------------------------------------------------------------------- /src/flom_resource_numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_numeric.h -------------------------------------------------------------------------------- /src/flom_resource_sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_sequence.c -------------------------------------------------------------------------------- /src/flom_resource_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_sequence.h -------------------------------------------------------------------------------- /src/flom_resource_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_set.c -------------------------------------------------------------------------------- /src/flom_resource_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_set.h -------------------------------------------------------------------------------- /src/flom_resource_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_simple.c -------------------------------------------------------------------------------- /src/flom_resource_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_simple.h -------------------------------------------------------------------------------- /src/flom_resource_timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_timestamp.c -------------------------------------------------------------------------------- /src/flom_resource_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_resource_timestamp.h -------------------------------------------------------------------------------- /src/flom_rsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_rsrc.c -------------------------------------------------------------------------------- /src/flom_rsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_rsrc.h -------------------------------------------------------------------------------- /src/flom_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_syslog.h -------------------------------------------------------------------------------- /src/flom_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_tcp.c -------------------------------------------------------------------------------- /src/flom_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_tcp.h -------------------------------------------------------------------------------- /src/flom_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_tls.c -------------------------------------------------------------------------------- /src/flom_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_tls.h -------------------------------------------------------------------------------- /src/flom_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_trace.c -------------------------------------------------------------------------------- /src/flom_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_trace.h -------------------------------------------------------------------------------- /src/flom_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_types.h -------------------------------------------------------------------------------- /src/flom_vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_vfs.c -------------------------------------------------------------------------------- /src/flom_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/flom_vfs.h -------------------------------------------------------------------------------- /src/java/FlomErrorCodes.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/FlomErrorCodes.awk -------------------------------------------------------------------------------- /src/java/FlomLockModes.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/FlomLockModes.awk -------------------------------------------------------------------------------- /src/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/Makefile.am -------------------------------------------------------------------------------- /src/java/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/Makefile.in -------------------------------------------------------------------------------- /src/java/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/README -------------------------------------------------------------------------------- /src/java/flom_java.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/flom_java.c -------------------------------------------------------------------------------- /src/java/flom_java_FlomErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/flom_java_FlomErrorCodes.h -------------------------------------------------------------------------------- /src/java/flom_java_FlomHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/flom_java_FlomHandle.h -------------------------------------------------------------------------------- /src/java/org/tiian/flom/FlomErrorCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/org/tiian/flom/FlomErrorCodes.java -------------------------------------------------------------------------------- /src/java/org/tiian/flom/FlomException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/org/tiian/flom/FlomException.java -------------------------------------------------------------------------------- /src/java/org/tiian/flom/FlomHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/org/tiian/flom/FlomHandle.java -------------------------------------------------------------------------------- /src/java/org/tiian/flom/FlomLockModes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/java/org/tiian/flom/FlomLockModes.java -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/main.c -------------------------------------------------------------------------------- /src/perl/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/perl/Changes -------------------------------------------------------------------------------- /src/perl/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/perl/MANIFEST -------------------------------------------------------------------------------- /src/perl/Makefile.PL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/perl/Makefile.PL.in -------------------------------------------------------------------------------- /src/perl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/perl/Makefile.am -------------------------------------------------------------------------------- /src/perl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/perl/Makefile.in -------------------------------------------------------------------------------- /src/perl/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/perl/README.in -------------------------------------------------------------------------------- /src/perl/flom.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/perl/flom.i -------------------------------------------------------------------------------- /src/php/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/php/Makefile.am -------------------------------------------------------------------------------- /src/php/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/php/Makefile.in -------------------------------------------------------------------------------- /src/php/flom.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/php/flom.i -------------------------------------------------------------------------------- /src/php/flom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/php/flom.php -------------------------------------------------------------------------------- /src/php/php_flom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/php/php_flom.h -------------------------------------------------------------------------------- /src/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/python/Makefile.am -------------------------------------------------------------------------------- /src/python/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/python/Makefile.in -------------------------------------------------------------------------------- /src/python/flom.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/python/flom.i -------------------------------------------------------------------------------- /src/python/setup.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/python/setup.py.i -------------------------------------------------------------------------------- /src/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/template.c -------------------------------------------------------------------------------- /src/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/src/template.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/Makefile.in -------------------------------------------------------------------------------- /tests/api.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/api.at.in -------------------------------------------------------------------------------- /tests/api_perl.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/api_perl.at.in -------------------------------------------------------------------------------- /tests/atlocal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/atlocal.in -------------------------------------------------------------------------------- /tests/cmdopt.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/cmdopt.at.in -------------------------------------------------------------------------------- /tests/debug-features.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/debug-features.at -------------------------------------------------------------------------------- /tests/incompopt.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/incompopt.at.in -------------------------------------------------------------------------------- /tests/monitor.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/monitor.at -------------------------------------------------------------------------------- /tests/scripts/flom_test_exec1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/flom_test_exec1.sh -------------------------------------------------------------------------------- /tests/scripts/flom_test_exec2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/flom_test_exec2.sh -------------------------------------------------------------------------------- /tests/scripts/flom_test_exec3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/flom_test_exec3.sh -------------------------------------------------------------------------------- /tests/scripts/flom_test_exec4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/flom_test_exec4.sh -------------------------------------------------------------------------------- /tests/scripts/flom_test_exec5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/flom_test_exec5.sh -------------------------------------------------------------------------------- /tests/scripts/iface_ip_address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/iface_ip_address.sh -------------------------------------------------------------------------------- /tests/scripts/iface_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/iface_name.sh -------------------------------------------------------------------------------- /tests/scripts/skip_ipv6_multicast_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/skip_ipv6_multicast_tests.sh -------------------------------------------------------------------------------- /tests/scripts/sleep_and_echo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/sleep_and_echo.sh -------------------------------------------------------------------------------- /tests/scripts/sleep_echo_exit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/sleep_echo_exit.sh -------------------------------------------------------------------------------- /tests/scripts/tls_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/scripts/tls_setup.sh -------------------------------------------------------------------------------- /tests/shutdown.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/shutdown.at -------------------------------------------------------------------------------- /tests/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/Makefile.am -------------------------------------------------------------------------------- /tests/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/Makefile.in -------------------------------------------------------------------------------- /tests/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/README -------------------------------------------------------------------------------- /tests/src/case0000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case0000.c -------------------------------------------------------------------------------- /tests/src/case0001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case0001.c -------------------------------------------------------------------------------- /tests/src/case0002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case0002.c -------------------------------------------------------------------------------- /tests/src/case0003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case0003.c -------------------------------------------------------------------------------- /tests/src/case0004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case0004.c -------------------------------------------------------------------------------- /tests/src/case1000.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case1000.cc -------------------------------------------------------------------------------- /tests/src/case1001.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case1001.cc -------------------------------------------------------------------------------- /tests/src/case1002.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case1002.cc -------------------------------------------------------------------------------- /tests/src/case1004.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case1004.cc -------------------------------------------------------------------------------- /tests/src/case2000.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case2000.php.in -------------------------------------------------------------------------------- /tests/src/case2001.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case2001.php.in -------------------------------------------------------------------------------- /tests/src/case2002.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case2002.php.in -------------------------------------------------------------------------------- /tests/src/case2004.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case2004.php.in -------------------------------------------------------------------------------- /tests/src/case3000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case3000.py -------------------------------------------------------------------------------- /tests/src/case3001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case3001.py -------------------------------------------------------------------------------- /tests/src/case3002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case3002.py -------------------------------------------------------------------------------- /tests/src/case3004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case3004.py -------------------------------------------------------------------------------- /tests/src/case4000.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case4000.java -------------------------------------------------------------------------------- /tests/src/case4001.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case4001.java -------------------------------------------------------------------------------- /tests/src/case4002.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case4002.java -------------------------------------------------------------------------------- /tests/src/case4003.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case4003.java -------------------------------------------------------------------------------- /tests/src/case4004.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case4004.java -------------------------------------------------------------------------------- /tests/src/case5000.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case5000.pl -------------------------------------------------------------------------------- /tests/src/case5001.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case5001.pl -------------------------------------------------------------------------------- /tests/src/case5002.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case5002.pl -------------------------------------------------------------------------------- /tests/src/case5004.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/src/case5004.pl -------------------------------------------------------------------------------- /tests/testsuite.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/testsuite.at -------------------------------------------------------------------------------- /tests/tls.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/tls.at.in -------------------------------------------------------------------------------- /tests/usecase-dist.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase-dist.at.in -------------------------------------------------------------------------------- /tests/usecase-hier.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase-hier.at -------------------------------------------------------------------------------- /tests/usecase-lt.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase-lt.at.in -------------------------------------------------------------------------------- /tests/usecase-num.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase-num.at.in -------------------------------------------------------------------------------- /tests/usecase-seq.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase-seq.at -------------------------------------------------------------------------------- /tests/usecase-set.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase-set.at.in -------------------------------------------------------------------------------- /tests/usecase-tms.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase-tms.at.in -------------------------------------------------------------------------------- /tests/usecase.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/usecase.at.in -------------------------------------------------------------------------------- /tests/vfs.at.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/tests/vfs.at.in -------------------------------------------------------------------------------- /valgrind.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/valgrind.cmd -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiian/flom/HEAD/valgrind.supp --------------------------------------------------------------------------------