├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── HACKING ├── Makefile.am ├── NEWS ├── README ├── configure.ac ├── doc ├── LLCP.svg ├── Makefile.am ├── data-link-connection-status.dot ├── link-activation-as-initiator.msc ├── link-activation-as-target.msc ├── link-deactivation-as-initiator.msc └── link-deactivation-as-target.msc ├── examples ├── Makefile.am ├── npp-client │ ├── Makefile.am │ └── npp-client.c ├── npp-server │ ├── Makefile.am │ └── npp-server.c ├── snep-client │ ├── Makefile.am │ └── snep-client.c └── snep-server │ ├── Makefile.am │ └── snep-server.c ├── gdbrc ├── libllcp ├── Makefile.am ├── llc_connection.c ├── llc_connection.h ├── llc_link.c ├── llc_link.h ├── llc_service.c ├── llc_service.h ├── llc_service_llc.c ├── llc_service_llc.h ├── llc_service_sdp.c ├── llc_service_sdp.h ├── llcp.c ├── llcp.h ├── llcp_log.c ├── llcp_log.h ├── llcp_parameters.c ├── llcp_parameters.h ├── llcp_pdu.c ├── llcp_pdu.h ├── mac.h └── mac_iso18092.c ├── m4 └── .gitignore ├── test ├── Makefile.am ├── run-test.sh ├── test_dummy_mac_link.c ├── test_llc_connection.c ├── test_llc_link.c ├── test_llc_service.c ├── test_llcp_parameters.c ├── test_llcp_pdu.c └── test_mac_link.c └── tools ├── Makefile.am ├── llcp-pdu-explain ├── Makefile.am └── llcp-pdu-explain.c ├── llcp-test-client ├── Makefile.am └── llcp_test_client.c └── llcp-test-server ├── Makefile.am ├── README ├── connected-echo-server.c ├── connected-echo-server.h ├── connectionless-echo-server.c ├── connectionless-echo-server.h └── llcp-test-server.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/HACKING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/LLCP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/doc/LLCP.svg -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/data-link-connection-status.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/doc/data-link-connection-status.dot -------------------------------------------------------------------------------- /doc/link-activation-as-initiator.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/doc/link-activation-as-initiator.msc -------------------------------------------------------------------------------- /doc/link-activation-as-target.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/doc/link-activation-as-target.msc -------------------------------------------------------------------------------- /doc/link-deactivation-as-initiator.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/doc/link-deactivation-as-initiator.msc -------------------------------------------------------------------------------- /doc/link-deactivation-as-target.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/doc/link-deactivation-as-target.msc -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/npp-client/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/npp-client/Makefile.am -------------------------------------------------------------------------------- /examples/npp-client/npp-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/npp-client/npp-client.c -------------------------------------------------------------------------------- /examples/npp-server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/npp-server/Makefile.am -------------------------------------------------------------------------------- /examples/npp-server/npp-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/npp-server/npp-server.c -------------------------------------------------------------------------------- /examples/snep-client/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/snep-client/Makefile.am -------------------------------------------------------------------------------- /examples/snep-client/snep-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/snep-client/snep-client.c -------------------------------------------------------------------------------- /examples/snep-server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/snep-server/Makefile.am -------------------------------------------------------------------------------- /examples/snep-server/snep-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/examples/snep-server/snep-server.c -------------------------------------------------------------------------------- /gdbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/gdbrc -------------------------------------------------------------------------------- /libllcp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/Makefile.am -------------------------------------------------------------------------------- /libllcp/llc_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_connection.c -------------------------------------------------------------------------------- /libllcp/llc_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_connection.h -------------------------------------------------------------------------------- /libllcp/llc_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_link.c -------------------------------------------------------------------------------- /libllcp/llc_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_link.h -------------------------------------------------------------------------------- /libllcp/llc_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_service.c -------------------------------------------------------------------------------- /libllcp/llc_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_service.h -------------------------------------------------------------------------------- /libllcp/llc_service_llc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_service_llc.c -------------------------------------------------------------------------------- /libllcp/llc_service_llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_service_llc.h -------------------------------------------------------------------------------- /libllcp/llc_service_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_service_sdp.c -------------------------------------------------------------------------------- /libllcp/llc_service_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llc_service_sdp.h -------------------------------------------------------------------------------- /libllcp/llcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp.c -------------------------------------------------------------------------------- /libllcp/llcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp.h -------------------------------------------------------------------------------- /libllcp/llcp_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp_log.c -------------------------------------------------------------------------------- /libllcp/llcp_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp_log.h -------------------------------------------------------------------------------- /libllcp/llcp_parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp_parameters.c -------------------------------------------------------------------------------- /libllcp/llcp_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp_parameters.h -------------------------------------------------------------------------------- /libllcp/llcp_pdu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp_pdu.c -------------------------------------------------------------------------------- /libllcp/llcp_pdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/llcp_pdu.h -------------------------------------------------------------------------------- /libllcp/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/mac.h -------------------------------------------------------------------------------- /libllcp/mac_iso18092.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/libllcp/mac_iso18092.c -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/run-test.sh -------------------------------------------------------------------------------- /test/test_dummy_mac_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/test_dummy_mac_link.c -------------------------------------------------------------------------------- /test/test_llc_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/test_llc_connection.c -------------------------------------------------------------------------------- /test/test_llc_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/test_llc_link.c -------------------------------------------------------------------------------- /test/test_llc_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/test_llc_service.c -------------------------------------------------------------------------------- /test/test_llcp_parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/test_llcp_parameters.c -------------------------------------------------------------------------------- /test/test_llcp_pdu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/test_llcp_pdu.c -------------------------------------------------------------------------------- /test/test_mac_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/test/test_mac_link.c -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/llcp-pdu-explain/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-pdu-explain/Makefile.am -------------------------------------------------------------------------------- /tools/llcp-pdu-explain/llcp-pdu-explain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-pdu-explain/llcp-pdu-explain.c -------------------------------------------------------------------------------- /tools/llcp-test-client/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-client/Makefile.am -------------------------------------------------------------------------------- /tools/llcp-test-client/llcp_test_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-client/llcp_test_client.c -------------------------------------------------------------------------------- /tools/llcp-test-server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-server/Makefile.am -------------------------------------------------------------------------------- /tools/llcp-test-server/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-server/README -------------------------------------------------------------------------------- /tools/llcp-test-server/connected-echo-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-server/connected-echo-server.c -------------------------------------------------------------------------------- /tools/llcp-test-server/connected-echo-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-server/connected-echo-server.h -------------------------------------------------------------------------------- /tools/llcp-test-server/connectionless-echo-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-server/connectionless-echo-server.c -------------------------------------------------------------------------------- /tools/llcp-test-server/connectionless-echo-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-server/connectionless-echo-server.h -------------------------------------------------------------------------------- /tools/llcp-test-server/llcp-test-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libllcp/HEAD/tools/llcp-test-server/llcp-test-server.c --------------------------------------------------------------------------------