├── .ci ├── Jenkinsfile ├── Makefile ├── README.md ├── antivirus.sh ├── artifacts.sh ├── blackduck_source.sh ├── create_pkg.sh ├── do_release.sh ├── dockerfiles │ ├── Dockerfile.ctyunos23.01 │ ├── Dockerfile.ol9.4 │ ├── Dockerfile.rhel8.6 │ ├── Dockerfile.ubuntu22.04 │ └── Dockerfile.ubuntu24.04 ├── matrix_job.yaml ├── opensource_jjb.yaml ├── pipeline │ ├── dr_weekly_jjb.yaml │ ├── dr_weekly_matrix.yaml │ ├── release_jjb.yaml │ └── release_matrix_job.yaml ├── scripts │ └── doca_install.sh ├── set_env.sh └── template_xlio.yaml ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── pr-agent.txt │ └── pr_agent_simple.yaml ├── .gitignore ├── .gittemplate ├── CHANGES ├── COPYING ├── Doxyfile ├── LICENSE ├── Makefile.am ├── README ├── README.md ├── SECURITY.md ├── autogen.sh ├── config └── m4 │ ├── compiler.m4 │ ├── dpcp.m4 │ ├── func.m4 │ ├── json.m4 │ ├── linking_optimization.m4 │ ├── nl.m4 │ ├── opt.m4 │ ├── prof.m4 │ ├── utls.m4 │ └── verbs.m4 ├── configure.ac ├── contrib ├── build_pkg.sh ├── jenkins_tests │ ├── build.sh │ ├── commit.sh │ ├── compiler.sh │ ├── copyright-check-map.yaml │ ├── copyrights.sh │ ├── cov.sh │ ├── cppcheck.sh │ ├── csbuild.sh │ ├── globals.sh │ ├── gtest.sh │ ├── rpm.sh │ ├── style.conf │ ├── style.sh │ ├── test.sh │ ├── tool.sh │ ├── vg.sh │ └── vutil.sh ├── scripts │ ├── libxlio.spec.in │ ├── xlio.init.in │ └── xlio.service.in ├── test_jenkins.sh └── valgrind │ └── valgrind_xlio.supp ├── debian ├── changelog.in ├── compat ├── control ├── copyright ├── libxlio-dev.install ├── libxlio-utils.install ├── libxlio.install ├── postinst ├── postrm ├── prerm ├── rules └── watch ├── docs ├── arch.png ├── coding-style.md ├── configuration.md ├── contributing.md └── man │ ├── Makefile.am │ ├── xlio.7.in │ ├── xlio_stats.8.in │ └── xliod.8.in ├── examples ├── README.md └── xlio_ultra_api_ping_pong.c ├── generate_docs.py ├── src ├── Makefile.am ├── core │ ├── Makefile.am │ ├── config │ │ ├── README.md │ │ ├── config_registry.cpp │ │ ├── config_registry.h │ │ ├── config_strings.cpp │ │ ├── config_strings.h │ │ ├── descriptor_providers │ │ │ ├── descriptor_provider.h │ │ │ ├── json_descriptor_provider.cpp │ │ │ ├── json_descriptor_provider.h │ │ │ ├── libxlio_config.json │ │ │ ├── schema_analyzer.cpp │ │ │ ├── schema_analyzer.h │ │ │ └── xlio_config_schema.json │ │ ├── descriptors │ │ │ ├── config_descriptor.cpp │ │ │ ├── config_descriptor.h │ │ │ ├── parameter_descriptor.cpp │ │ │ └── parameter_descriptor.h │ │ ├── generate_mappings.py │ │ ├── json_object_handle.cpp │ │ ├── json_object_handle.h │ │ ├── json_utils.cpp │ │ ├── json_utils.h │ │ ├── loaders │ │ │ ├── inline_loader.cpp │ │ │ ├── inline_loader.h │ │ │ ├── json_loader.cpp │ │ │ ├── json_loader.h │ │ │ └── loader.h │ │ └── mappings.py │ ├── dev │ │ ├── allocator.cpp │ │ ├── allocator.h │ │ ├── buffer_pool.cpp │ │ ├── buffer_pool.h │ │ ├── cq_mgr_rx.cpp │ │ ├── cq_mgr_rx.h │ │ ├── cq_mgr_rx_inl.h │ │ ├── cq_mgr_rx_regrq.cpp │ │ ├── cq_mgr_rx_regrq.h │ │ ├── cq_mgr_rx_strq.cpp │ │ ├── cq_mgr_rx_strq.h │ │ ├── cq_mgr_tx.cpp │ │ ├── cq_mgr_tx.h │ │ ├── dm_mgr.cpp │ │ ├── dm_mgr.h │ │ ├── gro_mgr.cpp │ │ ├── gro_mgr.h │ │ ├── hw_queue_rx.cpp │ │ ├── hw_queue_rx.h │ │ ├── hw_queue_tx.cpp │ │ ├── hw_queue_tx.h │ │ ├── ib_ctx_handler.cpp │ │ ├── ib_ctx_handler.h │ │ ├── ib_ctx_handler_collection.cpp │ │ ├── ib_ctx_handler_collection.h │ │ ├── net_device_entry.cpp │ │ ├── net_device_entry.h │ │ ├── net_device_table_mgr.cpp │ │ ├── net_device_table_mgr.h │ │ ├── net_device_val.cpp │ │ ├── net_device_val.h │ │ ├── rfs.cpp │ │ ├── rfs.h │ │ ├── rfs_mc.cpp │ │ ├── rfs_mc.h │ │ ├── rfs_rule.cpp │ │ ├── rfs_rule.h │ │ ├── rfs_uc.cpp │ │ ├── rfs_uc.h │ │ ├── rfs_uc_tcp_gro.cpp │ │ ├── rfs_uc_tcp_gro.h │ │ ├── ring.cpp │ │ ├── ring.h │ │ ├── ring_allocation_logic.cpp │ │ ├── ring_allocation_logic.h │ │ ├── ring_bond.cpp │ │ ├── ring_bond.h │ │ ├── ring_simple.cpp │ │ ├── ring_simple.h │ │ ├── ring_slave.cpp │ │ ├── ring_slave.h │ │ ├── src_addr_selector.cpp │ │ ├── src_addr_selector.h │ │ ├── time_converter.cpp │ │ ├── time_converter.h │ │ ├── time_converter_ib_ctx.cpp │ │ ├── time_converter_ib_ctx.h │ │ ├── time_converter_ptp.cpp │ │ ├── time_converter_ptp.h │ │ ├── time_converter_rtc.cpp │ │ ├── time_converter_rtc.h │ │ ├── wqe_send_handler.cpp │ │ ├── wqe_send_handler.h │ │ └── xlio_ti.h │ ├── event │ │ ├── command.h │ │ ├── delta_timer.cpp │ │ ├── delta_timer.h │ │ ├── entity_context.cpp │ │ ├── entity_context.h │ │ ├── entity_context_manager.cpp │ │ ├── entity_context_manager.h │ │ ├── event.h │ │ ├── event_handler_ibverbs.h │ │ ├── event_handler_manager.cpp │ │ ├── event_handler_manager.h │ │ ├── event_handler_manager_local.cpp │ │ ├── event_handler_manager_local.h │ │ ├── event_handler_rdma_cm.h │ │ ├── job_queue.h │ │ ├── netlink_event.cpp │ │ ├── netlink_event.h │ │ ├── poll_group.cpp │ │ ├── poll_group.h │ │ ├── timer_handler.h │ │ ├── vlogger_timer_handler.cpp │ │ ├── vlogger_timer_handler.h │ │ ├── worker_thread.cpp │ │ ├── worker_thread.h │ │ ├── worker_thread_manager.cpp │ │ └── worker_thread_manager.h │ ├── ib │ │ ├── base │ │ │ ├── verbs_extra.cpp │ │ │ └── verbs_extra.h │ │ └── mlx5 │ │ │ ├── ib_mlx5.cpp │ │ │ ├── ib_mlx5.h │ │ │ └── ib_mlx5_dv.cpp │ ├── infra │ │ ├── DemoCollMgr.cpp │ │ ├── DemoCollMgr.h │ │ ├── DemoObserver.cpp │ │ ├── DemoObserver.h │ │ ├── DemoSubject.cpp │ │ ├── DemoSubject.h │ │ ├── Makefile.am │ │ ├── cache_subject_observer.h │ │ ├── main.cpp │ │ ├── sender.cpp │ │ ├── sender.h │ │ ├── subject_observer.cpp │ │ └── subject_observer.h │ ├── iomux │ │ ├── epfd_info.cpp │ │ ├── epfd_info.h │ │ ├── epoll_wait_call.cpp │ │ ├── epoll_wait_call.h │ │ ├── io_mux_call.cpp │ │ ├── io_mux_call.h │ │ ├── poll_call.cpp │ │ ├── poll_call.h │ │ ├── select_call.cpp │ │ └── select_call.h │ ├── libxlio.c │ ├── lwip │ │ ├── cc.c │ │ ├── cc.h │ │ ├── cc_cubic.c │ │ ├── cc_cubic.h │ │ ├── cc_lwip.c │ │ ├── cc_none.c │ │ ├── def.h │ │ ├── err.h │ │ ├── ip_addr.h │ │ ├── opt.h │ │ ├── pbuf.c │ │ ├── pbuf.h │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── tcp_impl.h │ │ ├── tcp_in.c │ │ └── tcp_out.c │ ├── main.cpp │ ├── main.h │ ├── netlink │ │ ├── Makefile.am │ │ ├── link_info.cpp │ │ ├── link_info.h │ │ ├── neigh_info.cpp │ │ ├── neigh_info.h │ │ ├── netlink_wrapper.cpp │ │ ├── netlink_wrapper.h │ │ ├── route_info.cpp │ │ ├── route_info.h │ │ └── test_main.cpp │ ├── proto │ │ ├── L2_address.cpp │ │ ├── L2_address.h │ │ ├── arp.cpp │ │ ├── arp.h │ │ ├── dst_entry.cpp │ │ ├── dst_entry.h │ │ ├── dst_entry_tcp.cpp │ │ ├── dst_entry_tcp.h │ │ ├── dst_entry_udp.cpp │ │ ├── dst_entry_udp.h │ │ ├── dst_entry_udp_mc.cpp │ │ ├── dst_entry_udp_mc.h │ │ ├── flow_tuple.cpp │ │ ├── flow_tuple.h │ │ ├── header.cpp │ │ ├── header.h │ │ ├── ip_frag.cpp │ │ ├── ip_frag.h │ │ ├── mapping.cpp │ │ ├── mapping.h │ │ ├── mem_buf_desc.h │ │ ├── mem_desc.h │ │ ├── neighbour.cpp │ │ ├── neighbour.h │ │ ├── neighbour_table_mgr.cpp │ │ ├── neighbour_table_mgr.h │ │ ├── netlink_socket_mgr.cpp │ │ ├── netlink_socket_mgr.h │ │ ├── route_entry.cpp │ │ ├── route_entry.h │ │ ├── route_rule_table_key.h │ │ ├── route_table_mgr.cpp │ │ ├── route_table_mgr.h │ │ ├── route_val.cpp │ │ ├── route_val.h │ │ ├── rule_entry.cpp │ │ ├── rule_entry.h │ │ ├── rule_table_mgr.cpp │ │ ├── rule_table_mgr.h │ │ ├── rule_val.cpp │ │ ├── rule_val.h │ │ ├── tls.h │ │ ├── xlio_lwip.cpp │ │ └── xlio_lwip.h │ ├── sock │ │ ├── bind_no_port.cpp │ │ ├── bind_no_port.h │ │ ├── cleanable_obj.h │ │ ├── fd_collection.cpp │ │ ├── fd_collection.h │ │ ├── sock-app.cpp │ │ ├── sock-app.h │ │ ├── sock-extra.cpp │ │ ├── sock-extra.h │ │ ├── sock-redirect-internal.h │ │ ├── sock-redirect.cpp │ │ ├── sock-redirect.h │ │ ├── sock_stats.cpp │ │ ├── sock_stats.h │ │ ├── sockinfo.cpp │ │ ├── sockinfo.h │ │ ├── sockinfo_tcp.cpp │ │ ├── sockinfo_tcp.h │ │ ├── sockinfo_tcp_listen_context.cpp │ │ ├── sockinfo_tcp_listen_context.h │ │ ├── sockinfo_udp.cpp │ │ ├── sockinfo_udp.h │ │ ├── sockinfo_ulp.cpp │ │ └── sockinfo_ulp.h │ ├── util │ │ ├── agent.cpp │ │ ├── agent.h │ │ ├── agent_def.h │ │ ├── cached_obj_pool.h │ │ ├── chunk_list.h │ │ ├── config_parser.y │ │ ├── config_scanner.l │ │ ├── data_updater.cpp │ │ ├── data_updater.h │ │ ├── hugepage_mgr.cpp │ │ ├── hugepage_mgr.h │ │ ├── if.h │ │ ├── instrumentation.cpp │ │ ├── instrumentation.h │ │ ├── ip_address.h │ │ ├── libxlio.conf │ │ ├── libxlio.h │ │ ├── list.h │ │ ├── match.cpp │ │ ├── sg_array.h │ │ ├── sock_addr.h │ │ ├── sys_vars.cpp │ │ ├── sys_vars.h │ │ ├── sysctl_reader.h │ │ ├── to_str.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── valgrind.h │ │ ├── vtypes.h │ │ ├── wakeup.cpp │ │ ├── wakeup.h │ │ ├── wakeup_pipe.cpp │ │ ├── wakeup_pipe.h │ │ ├── xlio_exception.h │ │ ├── xlio_list.h │ │ └── xlio_stats.h │ ├── xlio.h │ ├── xlio_extra.h │ └── xlio_types.h ├── state_machine │ ├── Makefile.am │ ├── main.cpp │ ├── sm.cpp │ ├── sm.h │ ├── sm_fifo.cpp │ └── sm_fifo.h ├── stats │ ├── Makefile.am │ ├── stats_data_reader.h │ ├── stats_printer.cpp │ ├── stats_publisher.cpp │ └── stats_reader.cpp ├── utils │ ├── Makefile.am │ ├── asm-arm64.h │ ├── asm-ppc64.h │ ├── asm-x86.h │ ├── asm.h │ ├── atomic.h │ ├── bullseye.h │ ├── clock.h │ ├── compiler.h │ ├── lock_wrapper.h │ ├── rdtsc.h │ └── types.h └── vlogger │ ├── Makefile.am │ ├── main.cpp │ ├── vlogger.cpp │ └── vlogger.h ├── tests ├── Makefile.am ├── extra_api │ ├── xlio_ultra_api.c │ ├── xlio_ultra_api_migrate.c │ └── xlio_ultra_api_server.c ├── gtest │ ├── Makefile.am │ ├── README │ ├── common │ │ ├── base.cc │ │ ├── base.h │ │ ├── cmn.h │ │ ├── def.h │ │ ├── log.h │ │ ├── sys.cc │ │ ├── sys.h │ │ └── tap.h │ ├── core │ │ ├── xlio_base.cc │ │ ├── xlio_base.h │ │ └── xlio_sockopt.cc │ ├── googletest │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ └── gtest-type-util.h │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ ├── main.cc │ ├── mix │ │ ├── ip_address.cc │ │ ├── mix_base.cc │ │ ├── mix_base.h │ │ ├── mix_list.cc │ │ ├── sg_array.cc │ │ └── sock_addr.cc │ ├── sock │ │ ├── sock_base.cc │ │ ├── sock_base.h │ │ └── sock_socket.cc │ ├── tcp │ │ ├── tcp_accept.cc │ │ ├── tcp_base.h │ │ ├── tcp_bind.cc │ │ ├── tcp_connect.cc │ │ ├── tcp_connect_nb.cc │ │ ├── tcp_event.cc │ │ ├── tcp_listen_connect_nb.cc │ │ ├── tcp_listen_nb.cc │ │ ├── tcp_rfs.cc │ │ ├── tcp_send.cc │ │ ├── tcp_sendfile.cc │ │ ├── tcp_sendto.cc │ │ ├── tcp_socket.cc │ │ ├── tcp_sockopt.cc │ │ └── tcp_tls.cc │ ├── udp │ │ ├── udp_base.h │ │ ├── udp_bind.cc │ │ ├── udp_connect.cc │ │ ├── udp_recv.cc │ │ ├── udp_rfs.cc │ │ ├── udp_send.cc │ │ ├── udp_sendto.cc │ │ └── udp_socket.cc │ ├── xlio_config_full_coverage.json │ ├── xlio_ultra_api │ │ ├── xlio_socket.cc │ │ ├── xlio_socket_listen_connect.cc │ │ ├── xlio_socket_migrate.cc │ │ ├── xlio_socket_migrate_2.cc │ │ ├── xlio_socket_send_receive.cc │ │ └── xlio_socket_send_receive_2.cc │ └── xliod │ │ ├── xliod_base.cc │ │ ├── xliod_base.h │ │ ├── xliod_hash.cc │ │ ├── xliod_init.cc │ │ └── xliod_state.cc ├── nginx │ └── constant_reply_module │ │ ├── README.md │ │ ├── config │ │ └── ngx_http_constant_reply_module.cpp ├── python_tests │ ├── addr_sel │ │ ├── run_test_addr_select.sh │ │ ├── tcp_client_1s.py │ │ ├── tcp_server_1s.py │ │ ├── udp_client_1s.py │ │ └── udp_server_1s.py │ ├── misc │ │ ├── send_raw_packet.py │ │ ├── tcp_client_noconn.py │ │ ├── tcp_client_noconn2.py │ │ ├── tcp_client_vlan.py │ │ ├── tcp_server_reader.py │ │ ├── udp_client_test.py │ │ ├── udp_self.py │ │ └── udp_server_test.py │ └── rfs │ │ ├── mc_client.py │ │ ├── mc_server.py │ │ ├── tcp_client.py │ │ ├── tcp_server.py │ │ ├── udp_client.py │ │ └── udp_server.py └── unit_tests │ ├── Makefile.am │ ├── config │ ├── config_descriptor.cpp │ ├── config_registry.cpp │ ├── inline_loader.cpp │ ├── json_descriptor_provider.cpp │ ├── json_loader.cpp │ ├── parameter_descriptor.cpp │ ├── schema_analyzer.cpp │ └── utils.h │ ├── job_queue │ └── job_queue_test.cpp │ └── main.cpp ├── third_party ├── Makefile.am ├── json-c │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── Android.configure.mk │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── Doxyfile │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.html │ ├── README.md │ ├── RELEASE_CHECKLIST.txt │ ├── STYLE.txt │ ├── appveyor.yml │ ├── arraylist.c │ ├── arraylist.h │ ├── autogen.sh │ ├── bits.h │ ├── config.h.win32 │ ├── configure.ac │ ├── debug.c │ ├── debug.h │ ├── fuzz │ │ ├── README.md │ │ ├── build.sh │ │ ├── tokener_parse_ex_fuzzer.cc │ │ └── tokener_parse_ex_fuzzer.dict │ ├── issues_closed_for_0.13.md │ ├── json-c-uninstalled.pc.in │ ├── json-c.pc.in │ ├── json.h │ ├── json_c_version.c │ ├── json_c_version.h │ ├── json_config.h │ ├── json_config.h.in │ ├── json_config.h.win32 │ ├── json_inttypes.h │ ├── json_object.c │ ├── json_object.h │ ├── json_object_iterator.c │ ├── json_object_iterator.h │ ├── json_object_private.h │ ├── json_pointer.c │ ├── json_pointer.h │ ├── json_tokener.c │ ├── json_tokener.h │ ├── json_util.c │ ├── json_util.h │ ├── json_visit.c │ ├── json_visit.h │ ├── libjson.c │ ├── linkhash.c │ ├── linkhash.h │ ├── math_compat.h │ ├── printbuf.c │ ├── printbuf.h │ ├── random_seed.c │ ├── random_seed.h │ ├── snprintf_compat.h │ ├── strdup_compat.h │ ├── strerror_override.c │ ├── strerror_override.h │ ├── strerror_override_private.h │ ├── tests │ │ ├── Makefile.am │ │ ├── parse_flags.c │ │ ├── parse_flags.h │ │ ├── test-defs.sh │ │ ├── test1.c │ │ ├── test1.expected │ │ ├── test1.test │ │ ├── test1Formatted_plain.expected │ │ ├── test1Formatted_pretty.expected │ │ ├── test1Formatted_spaced.expected │ │ ├── test2.c │ │ ├── test2.expected │ │ ├── test2.test │ │ ├── test2Formatted_plain.expected │ │ ├── test2Formatted_pretty.expected │ │ ├── test2Formatted_spaced.expected │ │ ├── test4.c │ │ ├── test4.expected │ │ ├── test4.test │ │ ├── testReplaceExisting.c │ │ ├── testReplaceExisting.expected │ │ ├── testReplaceExisting.test │ │ ├── test_basic.test │ │ ├── test_cast.c │ │ ├── test_cast.expected │ │ ├── test_cast.test │ │ ├── test_charcase.c │ │ ├── test_charcase.expected │ │ ├── test_charcase.test │ │ ├── test_compare.c │ │ ├── test_compare.expected │ │ ├── test_compare.test │ │ ├── test_deep_copy.c │ │ ├── test_deep_copy.expected │ │ ├── test_deep_copy.test │ │ ├── test_double_serializer.c │ │ ├── test_double_serializer.expected │ │ ├── test_double_serializer.test │ │ ├── test_float.c │ │ ├── test_float.expected │ │ ├── test_float.test │ │ ├── test_int_add.c │ │ ├── test_int_add.expected │ │ ├── test_int_add.test │ │ ├── test_json_pointer.c │ │ ├── test_json_pointer.expected │ │ ├── test_json_pointer.test │ │ ├── test_locale.c │ │ ├── test_locale.expected │ │ ├── test_locale.test │ │ ├── test_null.c │ │ ├── test_null.expected │ │ ├── test_null.test │ │ ├── test_parse.c │ │ ├── test_parse.expected │ │ ├── test_parse.test │ │ ├── test_parse_int64.c │ │ ├── test_parse_int64.expected │ │ ├── test_parse_int64.test │ │ ├── test_printbuf.c │ │ ├── test_printbuf.expected │ │ ├── test_printbuf.test │ │ ├── test_set_serializer.c │ │ ├── test_set_serializer.expected │ │ ├── test_set_serializer.test │ │ ├── test_set_value.c │ │ ├── test_set_value.expected │ │ ├── test_set_value.test │ │ ├── test_util_file.c │ │ ├── test_util_file.expected │ │ ├── test_util_file.test │ │ ├── test_visit.c │ │ ├── test_visit.expected │ │ ├── test_visit.test │ │ └── valid.json │ └── vasprintf_compat.h └── legacy_config_parser │ ├── config_parser.c │ ├── config_parser.h │ └── config_scanner.c └── tools ├── Makefile.am └── daemon ├── Makefile.am ├── daemon.c ├── daemon.h ├── hash.c ├── hash.h ├── loop.c ├── message.c ├── notify.c └── store.c /.ci/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/Jenkinsfile -------------------------------------------------------------------------------- /.ci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/Makefile -------------------------------------------------------------------------------- /.ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/README.md -------------------------------------------------------------------------------- /.ci/antivirus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/antivirus.sh -------------------------------------------------------------------------------- /.ci/artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/artifacts.sh -------------------------------------------------------------------------------- /.ci/blackduck_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/blackduck_source.sh -------------------------------------------------------------------------------- /.ci/create_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/create_pkg.sh -------------------------------------------------------------------------------- /.ci/do_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/do_release.sh -------------------------------------------------------------------------------- /.ci/dockerfiles/Dockerfile.ctyunos23.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/dockerfiles/Dockerfile.ctyunos23.01 -------------------------------------------------------------------------------- /.ci/dockerfiles/Dockerfile.ol9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/dockerfiles/Dockerfile.ol9.4 -------------------------------------------------------------------------------- /.ci/dockerfiles/Dockerfile.rhel8.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/dockerfiles/Dockerfile.rhel8.6 -------------------------------------------------------------------------------- /.ci/dockerfiles/Dockerfile.ubuntu22.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/dockerfiles/Dockerfile.ubuntu22.04 -------------------------------------------------------------------------------- /.ci/dockerfiles/Dockerfile.ubuntu24.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/dockerfiles/Dockerfile.ubuntu24.04 -------------------------------------------------------------------------------- /.ci/matrix_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/matrix_job.yaml -------------------------------------------------------------------------------- /.ci/opensource_jjb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/opensource_jjb.yaml -------------------------------------------------------------------------------- /.ci/pipeline/dr_weekly_jjb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/pipeline/dr_weekly_jjb.yaml -------------------------------------------------------------------------------- /.ci/pipeline/dr_weekly_matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/pipeline/dr_weekly_matrix.yaml -------------------------------------------------------------------------------- /.ci/pipeline/release_jjb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/pipeline/release_jjb.yaml -------------------------------------------------------------------------------- /.ci/pipeline/release_matrix_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/pipeline/release_matrix_job.yaml -------------------------------------------------------------------------------- /.ci/scripts/doca_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/scripts/doca_install.sh -------------------------------------------------------------------------------- /.ci/set_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/set_env.sh -------------------------------------------------------------------------------- /.ci/template_xlio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.ci/template_xlio.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/pr-agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.github/workflows/pr-agent.txt -------------------------------------------------------------------------------- /.github/workflows/pr_agent_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.github/workflows/pr_agent_simple.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gittemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/.gittemplate -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/COPYING -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/autogen.sh -------------------------------------------------------------------------------- /config/m4/compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/compiler.m4 -------------------------------------------------------------------------------- /config/m4/dpcp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/dpcp.m4 -------------------------------------------------------------------------------- /config/m4/func.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/func.m4 -------------------------------------------------------------------------------- /config/m4/json.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/json.m4 -------------------------------------------------------------------------------- /config/m4/linking_optimization.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/linking_optimization.m4 -------------------------------------------------------------------------------- /config/m4/nl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/nl.m4 -------------------------------------------------------------------------------- /config/m4/opt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/opt.m4 -------------------------------------------------------------------------------- /config/m4/prof.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/prof.m4 -------------------------------------------------------------------------------- /config/m4/utls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/utls.m4 -------------------------------------------------------------------------------- /config/m4/verbs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/config/m4/verbs.m4 -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/build_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/build_pkg.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/build.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/commit.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/compiler.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/copyright-check-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/copyright-check-map.yaml -------------------------------------------------------------------------------- /contrib/jenkins_tests/copyrights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/copyrights.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/cov.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/cppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/cppcheck.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/csbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/csbuild.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/globals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/globals.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/gtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/gtest.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/rpm.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/style.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/style.conf -------------------------------------------------------------------------------- /contrib/jenkins_tests/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/style.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/test.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/tool.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/vg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/vg.sh -------------------------------------------------------------------------------- /contrib/jenkins_tests/vutil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/jenkins_tests/vutil.sh -------------------------------------------------------------------------------- /contrib/scripts/libxlio.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/scripts/libxlio.spec.in -------------------------------------------------------------------------------- /contrib/scripts/xlio.init.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/scripts/xlio.init.in -------------------------------------------------------------------------------- /contrib/scripts/xlio.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/scripts/xlio.service.in -------------------------------------------------------------------------------- /contrib/test_jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/test_jenkins.sh -------------------------------------------------------------------------------- /contrib/valgrind/valgrind_xlio.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/contrib/valgrind/valgrind_xlio.supp -------------------------------------------------------------------------------- /debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/changelog.in -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/libxlio-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/libxlio-dev.install -------------------------------------------------------------------------------- /debian/libxlio-utils.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/libxlio-utils.install -------------------------------------------------------------------------------- /debian/libxlio.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/libxlio.install -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/postrm -------------------------------------------------------------------------------- /debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/debian/watch -------------------------------------------------------------------------------- /docs/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/arch.png -------------------------------------------------------------------------------- /docs/coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/coding-style.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/man/Makefile.am -------------------------------------------------------------------------------- /docs/man/xlio.7.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/man/xlio.7.in -------------------------------------------------------------------------------- /docs/man/xlio_stats.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/man/xlio_stats.8.in -------------------------------------------------------------------------------- /docs/man/xliod.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/docs/man/xliod.8.in -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/xlio_ultra_api_ping_pong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/examples/xlio_ultra_api_ping_pong.c -------------------------------------------------------------------------------- /generate_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/generate_docs.py -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/Makefile.am -------------------------------------------------------------------------------- /src/core/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/README.md -------------------------------------------------------------------------------- /src/core/config/config_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/config_registry.cpp -------------------------------------------------------------------------------- /src/core/config/config_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/config_registry.h -------------------------------------------------------------------------------- /src/core/config/config_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/config_strings.cpp -------------------------------------------------------------------------------- /src/core/config/config_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/config_strings.h -------------------------------------------------------------------------------- /src/core/config/descriptor_providers/descriptor_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptor_providers/descriptor_provider.h -------------------------------------------------------------------------------- /src/core/config/descriptor_providers/json_descriptor_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptor_providers/json_descriptor_provider.cpp -------------------------------------------------------------------------------- /src/core/config/descriptor_providers/json_descriptor_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptor_providers/json_descriptor_provider.h -------------------------------------------------------------------------------- /src/core/config/descriptor_providers/libxlio_config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/core/config/descriptor_providers/schema_analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptor_providers/schema_analyzer.cpp -------------------------------------------------------------------------------- /src/core/config/descriptor_providers/schema_analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptor_providers/schema_analyzer.h -------------------------------------------------------------------------------- /src/core/config/descriptor_providers/xlio_config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptor_providers/xlio_config_schema.json -------------------------------------------------------------------------------- /src/core/config/descriptors/config_descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptors/config_descriptor.cpp -------------------------------------------------------------------------------- /src/core/config/descriptors/config_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptors/config_descriptor.h -------------------------------------------------------------------------------- /src/core/config/descriptors/parameter_descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptors/parameter_descriptor.cpp -------------------------------------------------------------------------------- /src/core/config/descriptors/parameter_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/descriptors/parameter_descriptor.h -------------------------------------------------------------------------------- /src/core/config/generate_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/generate_mappings.py -------------------------------------------------------------------------------- /src/core/config/json_object_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/json_object_handle.cpp -------------------------------------------------------------------------------- /src/core/config/json_object_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/json_object_handle.h -------------------------------------------------------------------------------- /src/core/config/json_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/json_utils.cpp -------------------------------------------------------------------------------- /src/core/config/json_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/json_utils.h -------------------------------------------------------------------------------- /src/core/config/loaders/inline_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/loaders/inline_loader.cpp -------------------------------------------------------------------------------- /src/core/config/loaders/inline_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/loaders/inline_loader.h -------------------------------------------------------------------------------- /src/core/config/loaders/json_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/loaders/json_loader.cpp -------------------------------------------------------------------------------- /src/core/config/loaders/json_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/loaders/json_loader.h -------------------------------------------------------------------------------- /src/core/config/loaders/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/loaders/loader.h -------------------------------------------------------------------------------- /src/core/config/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/config/mappings.py -------------------------------------------------------------------------------- /src/core/dev/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/allocator.cpp -------------------------------------------------------------------------------- /src/core/dev/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/allocator.h -------------------------------------------------------------------------------- /src/core/dev/buffer_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/buffer_pool.cpp -------------------------------------------------------------------------------- /src/core/dev/buffer_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/buffer_pool.h -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_rx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_rx.cpp -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_rx.h -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_rx_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_rx_inl.h -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_rx_regrq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_rx_regrq.cpp -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_rx_regrq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_rx_regrq.h -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_rx_strq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_rx_strq.cpp -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_rx_strq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_rx_strq.h -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_tx.cpp -------------------------------------------------------------------------------- /src/core/dev/cq_mgr_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/cq_mgr_tx.h -------------------------------------------------------------------------------- /src/core/dev/dm_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/dm_mgr.cpp -------------------------------------------------------------------------------- /src/core/dev/dm_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/dm_mgr.h -------------------------------------------------------------------------------- /src/core/dev/gro_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/gro_mgr.cpp -------------------------------------------------------------------------------- /src/core/dev/gro_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/gro_mgr.h -------------------------------------------------------------------------------- /src/core/dev/hw_queue_rx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/hw_queue_rx.cpp -------------------------------------------------------------------------------- /src/core/dev/hw_queue_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/hw_queue_rx.h -------------------------------------------------------------------------------- /src/core/dev/hw_queue_tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/hw_queue_tx.cpp -------------------------------------------------------------------------------- /src/core/dev/hw_queue_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/hw_queue_tx.h -------------------------------------------------------------------------------- /src/core/dev/ib_ctx_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ib_ctx_handler.cpp -------------------------------------------------------------------------------- /src/core/dev/ib_ctx_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ib_ctx_handler.h -------------------------------------------------------------------------------- /src/core/dev/ib_ctx_handler_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ib_ctx_handler_collection.cpp -------------------------------------------------------------------------------- /src/core/dev/ib_ctx_handler_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ib_ctx_handler_collection.h -------------------------------------------------------------------------------- /src/core/dev/net_device_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/net_device_entry.cpp -------------------------------------------------------------------------------- /src/core/dev/net_device_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/net_device_entry.h -------------------------------------------------------------------------------- /src/core/dev/net_device_table_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/net_device_table_mgr.cpp -------------------------------------------------------------------------------- /src/core/dev/net_device_table_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/net_device_table_mgr.h -------------------------------------------------------------------------------- /src/core/dev/net_device_val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/net_device_val.cpp -------------------------------------------------------------------------------- /src/core/dev/net_device_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/net_device_val.h -------------------------------------------------------------------------------- /src/core/dev/rfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs.cpp -------------------------------------------------------------------------------- /src/core/dev/rfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs.h -------------------------------------------------------------------------------- /src/core/dev/rfs_mc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_mc.cpp -------------------------------------------------------------------------------- /src/core/dev/rfs_mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_mc.h -------------------------------------------------------------------------------- /src/core/dev/rfs_rule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_rule.cpp -------------------------------------------------------------------------------- /src/core/dev/rfs_rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_rule.h -------------------------------------------------------------------------------- /src/core/dev/rfs_uc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_uc.cpp -------------------------------------------------------------------------------- /src/core/dev/rfs_uc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_uc.h -------------------------------------------------------------------------------- /src/core/dev/rfs_uc_tcp_gro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_uc_tcp_gro.cpp -------------------------------------------------------------------------------- /src/core/dev/rfs_uc_tcp_gro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/rfs_uc_tcp_gro.h -------------------------------------------------------------------------------- /src/core/dev/ring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring.cpp -------------------------------------------------------------------------------- /src/core/dev/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring.h -------------------------------------------------------------------------------- /src/core/dev/ring_allocation_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_allocation_logic.cpp -------------------------------------------------------------------------------- /src/core/dev/ring_allocation_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_allocation_logic.h -------------------------------------------------------------------------------- /src/core/dev/ring_bond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_bond.cpp -------------------------------------------------------------------------------- /src/core/dev/ring_bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_bond.h -------------------------------------------------------------------------------- /src/core/dev/ring_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_simple.cpp -------------------------------------------------------------------------------- /src/core/dev/ring_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_simple.h -------------------------------------------------------------------------------- /src/core/dev/ring_slave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_slave.cpp -------------------------------------------------------------------------------- /src/core/dev/ring_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/ring_slave.h -------------------------------------------------------------------------------- /src/core/dev/src_addr_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/src_addr_selector.cpp -------------------------------------------------------------------------------- /src/core/dev/src_addr_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/src_addr_selector.h -------------------------------------------------------------------------------- /src/core/dev/time_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter.cpp -------------------------------------------------------------------------------- /src/core/dev/time_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter.h -------------------------------------------------------------------------------- /src/core/dev/time_converter_ib_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter_ib_ctx.cpp -------------------------------------------------------------------------------- /src/core/dev/time_converter_ib_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter_ib_ctx.h -------------------------------------------------------------------------------- /src/core/dev/time_converter_ptp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter_ptp.cpp -------------------------------------------------------------------------------- /src/core/dev/time_converter_ptp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter_ptp.h -------------------------------------------------------------------------------- /src/core/dev/time_converter_rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter_rtc.cpp -------------------------------------------------------------------------------- /src/core/dev/time_converter_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/time_converter_rtc.h -------------------------------------------------------------------------------- /src/core/dev/wqe_send_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/wqe_send_handler.cpp -------------------------------------------------------------------------------- /src/core/dev/wqe_send_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/wqe_send_handler.h -------------------------------------------------------------------------------- /src/core/dev/xlio_ti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/dev/xlio_ti.h -------------------------------------------------------------------------------- /src/core/event/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/command.h -------------------------------------------------------------------------------- /src/core/event/delta_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/delta_timer.cpp -------------------------------------------------------------------------------- /src/core/event/delta_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/delta_timer.h -------------------------------------------------------------------------------- /src/core/event/entity_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/entity_context.cpp -------------------------------------------------------------------------------- /src/core/event/entity_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/entity_context.h -------------------------------------------------------------------------------- /src/core/event/entity_context_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/entity_context_manager.cpp -------------------------------------------------------------------------------- /src/core/event/entity_context_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/entity_context_manager.h -------------------------------------------------------------------------------- /src/core/event/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/event.h -------------------------------------------------------------------------------- /src/core/event/event_handler_ibverbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/event_handler_ibverbs.h -------------------------------------------------------------------------------- /src/core/event/event_handler_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/event_handler_manager.cpp -------------------------------------------------------------------------------- /src/core/event/event_handler_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/event_handler_manager.h -------------------------------------------------------------------------------- /src/core/event/event_handler_manager_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/event_handler_manager_local.cpp -------------------------------------------------------------------------------- /src/core/event/event_handler_manager_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/event_handler_manager_local.h -------------------------------------------------------------------------------- /src/core/event/event_handler_rdma_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/event_handler_rdma_cm.h -------------------------------------------------------------------------------- /src/core/event/job_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/job_queue.h -------------------------------------------------------------------------------- /src/core/event/netlink_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/netlink_event.cpp -------------------------------------------------------------------------------- /src/core/event/netlink_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/netlink_event.h -------------------------------------------------------------------------------- /src/core/event/poll_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/poll_group.cpp -------------------------------------------------------------------------------- /src/core/event/poll_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/poll_group.h -------------------------------------------------------------------------------- /src/core/event/timer_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/timer_handler.h -------------------------------------------------------------------------------- /src/core/event/vlogger_timer_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/vlogger_timer_handler.cpp -------------------------------------------------------------------------------- /src/core/event/vlogger_timer_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/vlogger_timer_handler.h -------------------------------------------------------------------------------- /src/core/event/worker_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/worker_thread.cpp -------------------------------------------------------------------------------- /src/core/event/worker_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/worker_thread.h -------------------------------------------------------------------------------- /src/core/event/worker_thread_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/worker_thread_manager.cpp -------------------------------------------------------------------------------- /src/core/event/worker_thread_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/event/worker_thread_manager.h -------------------------------------------------------------------------------- /src/core/ib/base/verbs_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/ib/base/verbs_extra.cpp -------------------------------------------------------------------------------- /src/core/ib/base/verbs_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/ib/base/verbs_extra.h -------------------------------------------------------------------------------- /src/core/ib/mlx5/ib_mlx5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/ib/mlx5/ib_mlx5.cpp -------------------------------------------------------------------------------- /src/core/ib/mlx5/ib_mlx5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/ib/mlx5/ib_mlx5.h -------------------------------------------------------------------------------- /src/core/ib/mlx5/ib_mlx5_dv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/ib/mlx5/ib_mlx5_dv.cpp -------------------------------------------------------------------------------- /src/core/infra/DemoCollMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/DemoCollMgr.cpp -------------------------------------------------------------------------------- /src/core/infra/DemoCollMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/DemoCollMgr.h -------------------------------------------------------------------------------- /src/core/infra/DemoObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/DemoObserver.cpp -------------------------------------------------------------------------------- /src/core/infra/DemoObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/DemoObserver.h -------------------------------------------------------------------------------- /src/core/infra/DemoSubject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/DemoSubject.cpp -------------------------------------------------------------------------------- /src/core/infra/DemoSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/DemoSubject.h -------------------------------------------------------------------------------- /src/core/infra/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/Makefile.am -------------------------------------------------------------------------------- /src/core/infra/cache_subject_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/cache_subject_observer.h -------------------------------------------------------------------------------- /src/core/infra/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/main.cpp -------------------------------------------------------------------------------- /src/core/infra/sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/sender.cpp -------------------------------------------------------------------------------- /src/core/infra/sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/sender.h -------------------------------------------------------------------------------- /src/core/infra/subject_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/subject_observer.cpp -------------------------------------------------------------------------------- /src/core/infra/subject_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/infra/subject_observer.h -------------------------------------------------------------------------------- /src/core/iomux/epfd_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/epfd_info.cpp -------------------------------------------------------------------------------- /src/core/iomux/epfd_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/epfd_info.h -------------------------------------------------------------------------------- /src/core/iomux/epoll_wait_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/epoll_wait_call.cpp -------------------------------------------------------------------------------- /src/core/iomux/epoll_wait_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/epoll_wait_call.h -------------------------------------------------------------------------------- /src/core/iomux/io_mux_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/io_mux_call.cpp -------------------------------------------------------------------------------- /src/core/iomux/io_mux_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/io_mux_call.h -------------------------------------------------------------------------------- /src/core/iomux/poll_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/poll_call.cpp -------------------------------------------------------------------------------- /src/core/iomux/poll_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/poll_call.h -------------------------------------------------------------------------------- /src/core/iomux/select_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/select_call.cpp -------------------------------------------------------------------------------- /src/core/iomux/select_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/iomux/select_call.h -------------------------------------------------------------------------------- /src/core/libxlio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/libxlio.c -------------------------------------------------------------------------------- /src/core/lwip/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/cc.c -------------------------------------------------------------------------------- /src/core/lwip/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/cc.h -------------------------------------------------------------------------------- /src/core/lwip/cc_cubic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/cc_cubic.c -------------------------------------------------------------------------------- /src/core/lwip/cc_cubic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/cc_cubic.h -------------------------------------------------------------------------------- /src/core/lwip/cc_lwip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/cc_lwip.c -------------------------------------------------------------------------------- /src/core/lwip/cc_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/cc_none.c -------------------------------------------------------------------------------- /src/core/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/def.h -------------------------------------------------------------------------------- /src/core/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/err.h -------------------------------------------------------------------------------- /src/core/lwip/ip_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/ip_addr.h -------------------------------------------------------------------------------- /src/core/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/opt.h -------------------------------------------------------------------------------- /src/core/lwip/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/pbuf.c -------------------------------------------------------------------------------- /src/core/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/pbuf.h -------------------------------------------------------------------------------- /src/core/lwip/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/tcp.c -------------------------------------------------------------------------------- /src/core/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/tcp.h -------------------------------------------------------------------------------- /src/core/lwip/tcp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/tcp_impl.h -------------------------------------------------------------------------------- /src/core/lwip/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/tcp_in.c -------------------------------------------------------------------------------- /src/core/lwip/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/lwip/tcp_out.c -------------------------------------------------------------------------------- /src/core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/main.cpp -------------------------------------------------------------------------------- /src/core/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/main.h -------------------------------------------------------------------------------- /src/core/netlink/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/Makefile.am -------------------------------------------------------------------------------- /src/core/netlink/link_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/link_info.cpp -------------------------------------------------------------------------------- /src/core/netlink/link_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/link_info.h -------------------------------------------------------------------------------- /src/core/netlink/neigh_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/neigh_info.cpp -------------------------------------------------------------------------------- /src/core/netlink/neigh_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/neigh_info.h -------------------------------------------------------------------------------- /src/core/netlink/netlink_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/netlink_wrapper.cpp -------------------------------------------------------------------------------- /src/core/netlink/netlink_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/netlink_wrapper.h -------------------------------------------------------------------------------- /src/core/netlink/route_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/route_info.cpp -------------------------------------------------------------------------------- /src/core/netlink/route_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/route_info.h -------------------------------------------------------------------------------- /src/core/netlink/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/netlink/test_main.cpp -------------------------------------------------------------------------------- /src/core/proto/L2_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/L2_address.cpp -------------------------------------------------------------------------------- /src/core/proto/L2_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/L2_address.h -------------------------------------------------------------------------------- /src/core/proto/arp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/arp.cpp -------------------------------------------------------------------------------- /src/core/proto/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/arp.h -------------------------------------------------------------------------------- /src/core/proto/dst_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry.cpp -------------------------------------------------------------------------------- /src/core/proto/dst_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry.h -------------------------------------------------------------------------------- /src/core/proto/dst_entry_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry_tcp.cpp -------------------------------------------------------------------------------- /src/core/proto/dst_entry_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry_tcp.h -------------------------------------------------------------------------------- /src/core/proto/dst_entry_udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry_udp.cpp -------------------------------------------------------------------------------- /src/core/proto/dst_entry_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry_udp.h -------------------------------------------------------------------------------- /src/core/proto/dst_entry_udp_mc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry_udp_mc.cpp -------------------------------------------------------------------------------- /src/core/proto/dst_entry_udp_mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/dst_entry_udp_mc.h -------------------------------------------------------------------------------- /src/core/proto/flow_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/flow_tuple.cpp -------------------------------------------------------------------------------- /src/core/proto/flow_tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/flow_tuple.h -------------------------------------------------------------------------------- /src/core/proto/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/header.cpp -------------------------------------------------------------------------------- /src/core/proto/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/header.h -------------------------------------------------------------------------------- /src/core/proto/ip_frag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/ip_frag.cpp -------------------------------------------------------------------------------- /src/core/proto/ip_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/ip_frag.h -------------------------------------------------------------------------------- /src/core/proto/mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/mapping.cpp -------------------------------------------------------------------------------- /src/core/proto/mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/mapping.h -------------------------------------------------------------------------------- /src/core/proto/mem_buf_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/mem_buf_desc.h -------------------------------------------------------------------------------- /src/core/proto/mem_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/mem_desc.h -------------------------------------------------------------------------------- /src/core/proto/neighbour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/neighbour.cpp -------------------------------------------------------------------------------- /src/core/proto/neighbour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/neighbour.h -------------------------------------------------------------------------------- /src/core/proto/neighbour_table_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/neighbour_table_mgr.cpp -------------------------------------------------------------------------------- /src/core/proto/neighbour_table_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/neighbour_table_mgr.h -------------------------------------------------------------------------------- /src/core/proto/netlink_socket_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/netlink_socket_mgr.cpp -------------------------------------------------------------------------------- /src/core/proto/netlink_socket_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/netlink_socket_mgr.h -------------------------------------------------------------------------------- /src/core/proto/route_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/route_entry.cpp -------------------------------------------------------------------------------- /src/core/proto/route_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/route_entry.h -------------------------------------------------------------------------------- /src/core/proto/route_rule_table_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/route_rule_table_key.h -------------------------------------------------------------------------------- /src/core/proto/route_table_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/route_table_mgr.cpp -------------------------------------------------------------------------------- /src/core/proto/route_table_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/route_table_mgr.h -------------------------------------------------------------------------------- /src/core/proto/route_val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/route_val.cpp -------------------------------------------------------------------------------- /src/core/proto/route_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/route_val.h -------------------------------------------------------------------------------- /src/core/proto/rule_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/rule_entry.cpp -------------------------------------------------------------------------------- /src/core/proto/rule_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/rule_entry.h -------------------------------------------------------------------------------- /src/core/proto/rule_table_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/rule_table_mgr.cpp -------------------------------------------------------------------------------- /src/core/proto/rule_table_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/rule_table_mgr.h -------------------------------------------------------------------------------- /src/core/proto/rule_val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/rule_val.cpp -------------------------------------------------------------------------------- /src/core/proto/rule_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/rule_val.h -------------------------------------------------------------------------------- /src/core/proto/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/tls.h -------------------------------------------------------------------------------- /src/core/proto/xlio_lwip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/xlio_lwip.cpp -------------------------------------------------------------------------------- /src/core/proto/xlio_lwip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/proto/xlio_lwip.h -------------------------------------------------------------------------------- /src/core/sock/bind_no_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/bind_no_port.cpp -------------------------------------------------------------------------------- /src/core/sock/bind_no_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/bind_no_port.h -------------------------------------------------------------------------------- /src/core/sock/cleanable_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/cleanable_obj.h -------------------------------------------------------------------------------- /src/core/sock/fd_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/fd_collection.cpp -------------------------------------------------------------------------------- /src/core/sock/fd_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/fd_collection.h -------------------------------------------------------------------------------- /src/core/sock/sock-app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock-app.cpp -------------------------------------------------------------------------------- /src/core/sock/sock-app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock-app.h -------------------------------------------------------------------------------- /src/core/sock/sock-extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock-extra.cpp -------------------------------------------------------------------------------- /src/core/sock/sock-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock-extra.h -------------------------------------------------------------------------------- /src/core/sock/sock-redirect-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock-redirect-internal.h -------------------------------------------------------------------------------- /src/core/sock/sock-redirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock-redirect.cpp -------------------------------------------------------------------------------- /src/core/sock/sock-redirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock-redirect.h -------------------------------------------------------------------------------- /src/core/sock/sock_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock_stats.cpp -------------------------------------------------------------------------------- /src/core/sock/sock_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sock_stats.h -------------------------------------------------------------------------------- /src/core/sock/sockinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo.cpp -------------------------------------------------------------------------------- /src/core/sock/sockinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo.h -------------------------------------------------------------------------------- /src/core/sock/sockinfo_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_tcp.cpp -------------------------------------------------------------------------------- /src/core/sock/sockinfo_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_tcp.h -------------------------------------------------------------------------------- /src/core/sock/sockinfo_tcp_listen_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_tcp_listen_context.cpp -------------------------------------------------------------------------------- /src/core/sock/sockinfo_tcp_listen_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_tcp_listen_context.h -------------------------------------------------------------------------------- /src/core/sock/sockinfo_udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_udp.cpp -------------------------------------------------------------------------------- /src/core/sock/sockinfo_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_udp.h -------------------------------------------------------------------------------- /src/core/sock/sockinfo_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_ulp.cpp -------------------------------------------------------------------------------- /src/core/sock/sockinfo_ulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/sock/sockinfo_ulp.h -------------------------------------------------------------------------------- /src/core/util/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/agent.cpp -------------------------------------------------------------------------------- /src/core/util/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/agent.h -------------------------------------------------------------------------------- /src/core/util/agent_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/agent_def.h -------------------------------------------------------------------------------- /src/core/util/cached_obj_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/cached_obj_pool.h -------------------------------------------------------------------------------- /src/core/util/chunk_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/chunk_list.h -------------------------------------------------------------------------------- /src/core/util/config_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/config_parser.y -------------------------------------------------------------------------------- /src/core/util/config_scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/config_scanner.l -------------------------------------------------------------------------------- /src/core/util/data_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/data_updater.cpp -------------------------------------------------------------------------------- /src/core/util/data_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/data_updater.h -------------------------------------------------------------------------------- /src/core/util/hugepage_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/hugepage_mgr.cpp -------------------------------------------------------------------------------- /src/core/util/hugepage_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/hugepage_mgr.h -------------------------------------------------------------------------------- /src/core/util/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/if.h -------------------------------------------------------------------------------- /src/core/util/instrumentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/instrumentation.cpp -------------------------------------------------------------------------------- /src/core/util/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/instrumentation.h -------------------------------------------------------------------------------- /src/core/util/ip_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/ip_address.h -------------------------------------------------------------------------------- /src/core/util/libxlio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/libxlio.conf -------------------------------------------------------------------------------- /src/core/util/libxlio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/libxlio.h -------------------------------------------------------------------------------- /src/core/util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/list.h -------------------------------------------------------------------------------- /src/core/util/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/match.cpp -------------------------------------------------------------------------------- /src/core/util/sg_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/sg_array.h -------------------------------------------------------------------------------- /src/core/util/sock_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/sock_addr.h -------------------------------------------------------------------------------- /src/core/util/sys_vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/sys_vars.cpp -------------------------------------------------------------------------------- /src/core/util/sys_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/sys_vars.h -------------------------------------------------------------------------------- /src/core/util/sysctl_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/sysctl_reader.h -------------------------------------------------------------------------------- /src/core/util/to_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/to_str.h -------------------------------------------------------------------------------- /src/core/util/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/utils.cpp -------------------------------------------------------------------------------- /src/core/util/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/utils.h -------------------------------------------------------------------------------- /src/core/util/valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/valgrind.h -------------------------------------------------------------------------------- /src/core/util/vtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/vtypes.h -------------------------------------------------------------------------------- /src/core/util/wakeup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/wakeup.cpp -------------------------------------------------------------------------------- /src/core/util/wakeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/wakeup.h -------------------------------------------------------------------------------- /src/core/util/wakeup_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/wakeup_pipe.cpp -------------------------------------------------------------------------------- /src/core/util/wakeup_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/wakeup_pipe.h -------------------------------------------------------------------------------- /src/core/util/xlio_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/xlio_exception.h -------------------------------------------------------------------------------- /src/core/util/xlio_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/xlio_list.h -------------------------------------------------------------------------------- /src/core/util/xlio_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/util/xlio_stats.h -------------------------------------------------------------------------------- /src/core/xlio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/xlio.h -------------------------------------------------------------------------------- /src/core/xlio_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/xlio_extra.h -------------------------------------------------------------------------------- /src/core/xlio_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/core/xlio_types.h -------------------------------------------------------------------------------- /src/state_machine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/state_machine/Makefile.am -------------------------------------------------------------------------------- /src/state_machine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/state_machine/main.cpp -------------------------------------------------------------------------------- /src/state_machine/sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/state_machine/sm.cpp -------------------------------------------------------------------------------- /src/state_machine/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/state_machine/sm.h -------------------------------------------------------------------------------- /src/state_machine/sm_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/state_machine/sm_fifo.cpp -------------------------------------------------------------------------------- /src/state_machine/sm_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/state_machine/sm_fifo.h -------------------------------------------------------------------------------- /src/stats/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/stats/Makefile.am -------------------------------------------------------------------------------- /src/stats/stats_data_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/stats/stats_data_reader.h -------------------------------------------------------------------------------- /src/stats/stats_printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/stats/stats_printer.cpp -------------------------------------------------------------------------------- /src/stats/stats_publisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/stats/stats_publisher.cpp -------------------------------------------------------------------------------- /src/stats/stats_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/stats/stats_reader.cpp -------------------------------------------------------------------------------- /src/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/Makefile.am -------------------------------------------------------------------------------- /src/utils/asm-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/asm-arm64.h -------------------------------------------------------------------------------- /src/utils/asm-ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/asm-ppc64.h -------------------------------------------------------------------------------- /src/utils/asm-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/asm-x86.h -------------------------------------------------------------------------------- /src/utils/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/asm.h -------------------------------------------------------------------------------- /src/utils/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/atomic.h -------------------------------------------------------------------------------- /src/utils/bullseye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/bullseye.h -------------------------------------------------------------------------------- /src/utils/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/clock.h -------------------------------------------------------------------------------- /src/utils/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/compiler.h -------------------------------------------------------------------------------- /src/utils/lock_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/lock_wrapper.h -------------------------------------------------------------------------------- /src/utils/rdtsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/rdtsc.h -------------------------------------------------------------------------------- /src/utils/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/utils/types.h -------------------------------------------------------------------------------- /src/vlogger/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/vlogger/Makefile.am -------------------------------------------------------------------------------- /src/vlogger/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/vlogger/main.cpp -------------------------------------------------------------------------------- /src/vlogger/vlogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/vlogger/vlogger.cpp -------------------------------------------------------------------------------- /src/vlogger/vlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/src/vlogger/vlogger.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/extra_api/xlio_ultra_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/extra_api/xlio_ultra_api.c -------------------------------------------------------------------------------- /tests/extra_api/xlio_ultra_api_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/extra_api/xlio_ultra_api_migrate.c -------------------------------------------------------------------------------- /tests/extra_api/xlio_ultra_api_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/extra_api/xlio_ultra_api_server.c -------------------------------------------------------------------------------- /tests/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/Makefile.am -------------------------------------------------------------------------------- /tests/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/README -------------------------------------------------------------------------------- /tests/gtest/common/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/base.cc -------------------------------------------------------------------------------- /tests/gtest/common/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/base.h -------------------------------------------------------------------------------- /tests/gtest/common/cmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/cmn.h -------------------------------------------------------------------------------- /tests/gtest/common/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/def.h -------------------------------------------------------------------------------- /tests/gtest/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/log.h -------------------------------------------------------------------------------- /tests/gtest/common/sys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/sys.cc -------------------------------------------------------------------------------- /tests/gtest/common/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/sys.h -------------------------------------------------------------------------------- /tests/gtest/common/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/common/tap.h -------------------------------------------------------------------------------- /tests/gtest/core/xlio_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/core/xlio_base.cc -------------------------------------------------------------------------------- /tests/gtest/core/xlio_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/core/xlio_base.h -------------------------------------------------------------------------------- /tests/gtest/core/xlio_sockopt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/core/xlio_sockopt.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/LICENSE -------------------------------------------------------------------------------- /tests/gtest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/README.md -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /tests/gtest/googletest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /tests/gtest/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /tests/gtest/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/main.cc -------------------------------------------------------------------------------- /tests/gtest/mix/ip_address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/mix/ip_address.cc -------------------------------------------------------------------------------- /tests/gtest/mix/mix_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/mix/mix_base.cc -------------------------------------------------------------------------------- /tests/gtest/mix/mix_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/mix/mix_base.h -------------------------------------------------------------------------------- /tests/gtest/mix/mix_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/mix/mix_list.cc -------------------------------------------------------------------------------- /tests/gtest/mix/sg_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/mix/sg_array.cc -------------------------------------------------------------------------------- /tests/gtest/mix/sock_addr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/mix/sock_addr.cc -------------------------------------------------------------------------------- /tests/gtest/sock/sock_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/sock/sock_base.cc -------------------------------------------------------------------------------- /tests/gtest/sock/sock_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/sock/sock_base.h -------------------------------------------------------------------------------- /tests/gtest/sock/sock_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/sock/sock_socket.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_accept.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_accept.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_base.h -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_bind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_bind.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_connect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_connect.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_connect_nb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_connect_nb.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_event.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_listen_connect_nb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_listen_connect_nb.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_listen_nb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_listen_nb.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_rfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_rfs.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_send.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_send.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_sendfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_sendfile.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_sendto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_sendto.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_socket.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_sockopt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_sockopt.cc -------------------------------------------------------------------------------- /tests/gtest/tcp/tcp_tls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/tcp/tcp_tls.cc -------------------------------------------------------------------------------- /tests/gtest/udp/udp_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_base.h -------------------------------------------------------------------------------- /tests/gtest/udp/udp_bind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_bind.cc -------------------------------------------------------------------------------- /tests/gtest/udp/udp_connect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_connect.cc -------------------------------------------------------------------------------- /tests/gtest/udp/udp_recv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_recv.cc -------------------------------------------------------------------------------- /tests/gtest/udp/udp_rfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_rfs.cc -------------------------------------------------------------------------------- /tests/gtest/udp/udp_send.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_send.cc -------------------------------------------------------------------------------- /tests/gtest/udp/udp_sendto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_sendto.cc -------------------------------------------------------------------------------- /tests/gtest/udp/udp_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/udp/udp_socket.cc -------------------------------------------------------------------------------- /tests/gtest/xlio_config_full_coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xlio_config_full_coverage.json -------------------------------------------------------------------------------- /tests/gtest/xlio_ultra_api/xlio_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xlio_ultra_api/xlio_socket.cc -------------------------------------------------------------------------------- /tests/gtest/xlio_ultra_api/xlio_socket_listen_connect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xlio_ultra_api/xlio_socket_listen_connect.cc -------------------------------------------------------------------------------- /tests/gtest/xlio_ultra_api/xlio_socket_migrate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xlio_ultra_api/xlio_socket_migrate.cc -------------------------------------------------------------------------------- /tests/gtest/xlio_ultra_api/xlio_socket_migrate_2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xlio_ultra_api/xlio_socket_migrate_2.cc -------------------------------------------------------------------------------- /tests/gtest/xlio_ultra_api/xlio_socket_send_receive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xlio_ultra_api/xlio_socket_send_receive.cc -------------------------------------------------------------------------------- /tests/gtest/xlio_ultra_api/xlio_socket_send_receive_2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xlio_ultra_api/xlio_socket_send_receive_2.cc -------------------------------------------------------------------------------- /tests/gtest/xliod/xliod_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xliod/xliod_base.cc -------------------------------------------------------------------------------- /tests/gtest/xliod/xliod_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xliod/xliod_base.h -------------------------------------------------------------------------------- /tests/gtest/xliod/xliod_hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xliod/xliod_hash.cc -------------------------------------------------------------------------------- /tests/gtest/xliod/xliod_init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xliod/xliod_init.cc -------------------------------------------------------------------------------- /tests/gtest/xliod/xliod_state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/gtest/xliod/xliod_state.cc -------------------------------------------------------------------------------- /tests/nginx/constant_reply_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/nginx/constant_reply_module/README.md -------------------------------------------------------------------------------- /tests/nginx/constant_reply_module/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/nginx/constant_reply_module/config -------------------------------------------------------------------------------- /tests/nginx/constant_reply_module/ngx_http_constant_reply_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/nginx/constant_reply_module/ngx_http_constant_reply_module.cpp -------------------------------------------------------------------------------- /tests/python_tests/addr_sel/run_test_addr_select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/addr_sel/run_test_addr_select.sh -------------------------------------------------------------------------------- /tests/python_tests/addr_sel/tcp_client_1s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/addr_sel/tcp_client_1s.py -------------------------------------------------------------------------------- /tests/python_tests/addr_sel/tcp_server_1s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/addr_sel/tcp_server_1s.py -------------------------------------------------------------------------------- /tests/python_tests/addr_sel/udp_client_1s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/addr_sel/udp_client_1s.py -------------------------------------------------------------------------------- /tests/python_tests/addr_sel/udp_server_1s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/addr_sel/udp_server_1s.py -------------------------------------------------------------------------------- /tests/python_tests/misc/send_raw_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/send_raw_packet.py -------------------------------------------------------------------------------- /tests/python_tests/misc/tcp_client_noconn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/tcp_client_noconn.py -------------------------------------------------------------------------------- /tests/python_tests/misc/tcp_client_noconn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/tcp_client_noconn2.py -------------------------------------------------------------------------------- /tests/python_tests/misc/tcp_client_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/tcp_client_vlan.py -------------------------------------------------------------------------------- /tests/python_tests/misc/tcp_server_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/tcp_server_reader.py -------------------------------------------------------------------------------- /tests/python_tests/misc/udp_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/udp_client_test.py -------------------------------------------------------------------------------- /tests/python_tests/misc/udp_self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/udp_self.py -------------------------------------------------------------------------------- /tests/python_tests/misc/udp_server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/misc/udp_server_test.py -------------------------------------------------------------------------------- /tests/python_tests/rfs/mc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/rfs/mc_client.py -------------------------------------------------------------------------------- /tests/python_tests/rfs/mc_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/rfs/mc_server.py -------------------------------------------------------------------------------- /tests/python_tests/rfs/tcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/rfs/tcp_client.py -------------------------------------------------------------------------------- /tests/python_tests/rfs/tcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/rfs/tcp_server.py -------------------------------------------------------------------------------- /tests/python_tests/rfs/udp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/rfs/udp_client.py -------------------------------------------------------------------------------- /tests/python_tests/rfs/udp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/python_tests/rfs/udp_server.py -------------------------------------------------------------------------------- /tests/unit_tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/Makefile.am -------------------------------------------------------------------------------- /tests/unit_tests/config/config_descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/config_descriptor.cpp -------------------------------------------------------------------------------- /tests/unit_tests/config/config_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/config_registry.cpp -------------------------------------------------------------------------------- /tests/unit_tests/config/inline_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/inline_loader.cpp -------------------------------------------------------------------------------- /tests/unit_tests/config/json_descriptor_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/json_descriptor_provider.cpp -------------------------------------------------------------------------------- /tests/unit_tests/config/json_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/json_loader.cpp -------------------------------------------------------------------------------- /tests/unit_tests/config/parameter_descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/parameter_descriptor.cpp -------------------------------------------------------------------------------- /tests/unit_tests/config/schema_analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/schema_analyzer.cpp -------------------------------------------------------------------------------- /tests/unit_tests/config/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/config/utils.h -------------------------------------------------------------------------------- /tests/unit_tests/job_queue/job_queue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/job_queue/job_queue_test.cpp -------------------------------------------------------------------------------- /tests/unit_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tests/unit_tests/main.cpp -------------------------------------------------------------------------------- /third_party/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/Makefile.am -------------------------------------------------------------------------------- /third_party/json-c/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/.editorconfig -------------------------------------------------------------------------------- /third_party/json-c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/.gitignore -------------------------------------------------------------------------------- /third_party/json-c/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/.travis.yml -------------------------------------------------------------------------------- /third_party/json-c/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/AUTHORS -------------------------------------------------------------------------------- /third_party/json-c/Android.configure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/Android.configure.mk -------------------------------------------------------------------------------- /third_party/json-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json-c/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/COPYING -------------------------------------------------------------------------------- /third_party/json-c/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/ChangeLog -------------------------------------------------------------------------------- /third_party/json-c/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/Doxyfile -------------------------------------------------------------------------------- /third_party/json-c/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/INSTALL -------------------------------------------------------------------------------- /third_party/json-c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/Makefile.am -------------------------------------------------------------------------------- /third_party/json-c/NEWS: -------------------------------------------------------------------------------- 1 | See the git repo. 2 | -------------------------------------------------------------------------------- /third_party/json-c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/README -------------------------------------------------------------------------------- /third_party/json-c/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/README.html -------------------------------------------------------------------------------- /third_party/json-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/README.md -------------------------------------------------------------------------------- /third_party/json-c/RELEASE_CHECKLIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/RELEASE_CHECKLIST.txt -------------------------------------------------------------------------------- /third_party/json-c/STYLE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/STYLE.txt -------------------------------------------------------------------------------- /third_party/json-c/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/appveyor.yml -------------------------------------------------------------------------------- /third_party/json-c/arraylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/arraylist.c -------------------------------------------------------------------------------- /third_party/json-c/arraylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/arraylist.h -------------------------------------------------------------------------------- /third_party/json-c/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/autogen.sh -------------------------------------------------------------------------------- /third_party/json-c/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/bits.h -------------------------------------------------------------------------------- /third_party/json-c/config.h.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/config.h.win32 -------------------------------------------------------------------------------- /third_party/json-c/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/configure.ac -------------------------------------------------------------------------------- /third_party/json-c/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/debug.c -------------------------------------------------------------------------------- /third_party/json-c/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/debug.h -------------------------------------------------------------------------------- /third_party/json-c/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/fuzz/README.md -------------------------------------------------------------------------------- /third_party/json-c/fuzz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/fuzz/build.sh -------------------------------------------------------------------------------- /third_party/json-c/fuzz/tokener_parse_ex_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/fuzz/tokener_parse_ex_fuzzer.cc -------------------------------------------------------------------------------- /third_party/json-c/fuzz/tokener_parse_ex_fuzzer.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/fuzz/tokener_parse_ex_fuzzer.dict -------------------------------------------------------------------------------- /third_party/json-c/issues_closed_for_0.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/issues_closed_for_0.13.md -------------------------------------------------------------------------------- /third_party/json-c/json-c-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json-c-uninstalled.pc.in -------------------------------------------------------------------------------- /third_party/json-c/json-c.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json-c.pc.in -------------------------------------------------------------------------------- /third_party/json-c/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json.h -------------------------------------------------------------------------------- /third_party/json-c/json_c_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_c_version.c -------------------------------------------------------------------------------- /third_party/json-c/json_c_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_c_version.h -------------------------------------------------------------------------------- /third_party/json-c/json_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_config.h -------------------------------------------------------------------------------- /third_party/json-c/json_config.h.in: -------------------------------------------------------------------------------- 1 | 2 | /* Define to 1 if you have the header file. */ 3 | #undef JSON_C_HAVE_INTTYPES_H 4 | -------------------------------------------------------------------------------- /third_party/json-c/json_config.h.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_config.h.win32 -------------------------------------------------------------------------------- /third_party/json-c/json_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_inttypes.h -------------------------------------------------------------------------------- /third_party/json-c/json_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_object.c -------------------------------------------------------------------------------- /third_party/json-c/json_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_object.h -------------------------------------------------------------------------------- /third_party/json-c/json_object_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_object_iterator.c -------------------------------------------------------------------------------- /third_party/json-c/json_object_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_object_iterator.h -------------------------------------------------------------------------------- /third_party/json-c/json_object_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_object_private.h -------------------------------------------------------------------------------- /third_party/json-c/json_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_pointer.c -------------------------------------------------------------------------------- /third_party/json-c/json_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_pointer.h -------------------------------------------------------------------------------- /third_party/json-c/json_tokener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_tokener.c -------------------------------------------------------------------------------- /third_party/json-c/json_tokener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_tokener.h -------------------------------------------------------------------------------- /third_party/json-c/json_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_util.c -------------------------------------------------------------------------------- /third_party/json-c/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_util.h -------------------------------------------------------------------------------- /third_party/json-c/json_visit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_visit.c -------------------------------------------------------------------------------- /third_party/json-c/json_visit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/json_visit.h -------------------------------------------------------------------------------- /third_party/json-c/libjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/libjson.c -------------------------------------------------------------------------------- /third_party/json-c/linkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/linkhash.c -------------------------------------------------------------------------------- /third_party/json-c/linkhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/linkhash.h -------------------------------------------------------------------------------- /third_party/json-c/math_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/math_compat.h -------------------------------------------------------------------------------- /third_party/json-c/printbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/printbuf.c -------------------------------------------------------------------------------- /third_party/json-c/printbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/printbuf.h -------------------------------------------------------------------------------- /third_party/json-c/random_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/random_seed.c -------------------------------------------------------------------------------- /third_party/json-c/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/random_seed.h -------------------------------------------------------------------------------- /third_party/json-c/snprintf_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/snprintf_compat.h -------------------------------------------------------------------------------- /third_party/json-c/strdup_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/strdup_compat.h -------------------------------------------------------------------------------- /third_party/json-c/strerror_override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/strerror_override.c -------------------------------------------------------------------------------- /third_party/json-c/strerror_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/strerror_override.h -------------------------------------------------------------------------------- /third_party/json-c/strerror_override_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/strerror_override_private.h -------------------------------------------------------------------------------- /third_party/json-c/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/Makefile.am -------------------------------------------------------------------------------- /third_party/json-c/tests/parse_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/parse_flags.c -------------------------------------------------------------------------------- /third_party/json-c/tests/parse_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/parse_flags.h -------------------------------------------------------------------------------- /third_party/json-c/tests/test-defs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test-defs.sh -------------------------------------------------------------------------------- /third_party/json-c/tests/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test1.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test1.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test1.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test1Formatted_plain.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test1Formatted_plain.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test1Formatted_pretty.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test1Formatted_pretty.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test1Formatted_spaced.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test1Formatted_spaced.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test2.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test2.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test2.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test2.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test2Formatted_plain.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test2Formatted_plain.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test2Formatted_pretty.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test2Formatted_pretty.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test2Formatted_spaced.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test2Formatted_spaced.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test4.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test4.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test4.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test4.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/testReplaceExisting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/testReplaceExisting.c -------------------------------------------------------------------------------- /third_party/json-c/tests/testReplaceExisting.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/testReplaceExisting.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/testReplaceExisting.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_basic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_cast.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_cast.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_cast.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_cast.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_charcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_charcase.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_charcase.expected: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /third_party/json-c/tests/test_charcase.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_compare.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_compare.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_compare.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_compare.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_deep_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_deep_copy.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_deep_copy.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_deep_copy.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_deep_copy.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_double_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_double_serializer.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_double_serializer.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_double_serializer.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_double_serializer.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_float.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_float.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_float.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_float.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_int_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_int_add.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_int_add.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_int_add.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_int_add.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_json_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_json_pointer.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_json_pointer.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_json_pointer.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_json_pointer.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_locale.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_locale.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_locale.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_locale.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_null.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_null.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_null.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_null.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_parse.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_parse.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_parse.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_parse.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_parse_int64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_parse_int64.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_parse_int64.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_parse_int64.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_parse_int64.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_printbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_printbuf.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_printbuf.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_printbuf.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_printbuf.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_set_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_set_serializer.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_set_serializer.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_set_serializer.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_set_serializer.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_set_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_set_value.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_set_value.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_set_value.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_set_value.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_util_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_util_file.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_util_file.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_util_file.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_util_file.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/test_visit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_visit.c -------------------------------------------------------------------------------- /third_party/json-c/tests/test_visit.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/tests/test_visit.expected -------------------------------------------------------------------------------- /third_party/json-c/tests/test_visit.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /third_party/json-c/tests/valid.json: -------------------------------------------------------------------------------- 1 | {"foo":123} 2 | -------------------------------------------------------------------------------- /third_party/json-c/vasprintf_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/json-c/vasprintf_compat.h -------------------------------------------------------------------------------- /third_party/legacy_config_parser/config_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/legacy_config_parser/config_parser.c -------------------------------------------------------------------------------- /third_party/legacy_config_parser/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/legacy_config_parser/config_parser.h -------------------------------------------------------------------------------- /third_party/legacy_config_parser/config_scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/third_party/legacy_config_parser/config_scanner.c -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/daemon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/Makefile.am -------------------------------------------------------------------------------- /tools/daemon/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/daemon.c -------------------------------------------------------------------------------- /tools/daemon/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/daemon.h -------------------------------------------------------------------------------- /tools/daemon/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/hash.c -------------------------------------------------------------------------------- /tools/daemon/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/hash.h -------------------------------------------------------------------------------- /tools/daemon/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/loop.c -------------------------------------------------------------------------------- /tools/daemon/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/message.c -------------------------------------------------------------------------------- /tools/daemon/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/notify.c -------------------------------------------------------------------------------- /tools/daemon/store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mellanox/libxlio/HEAD/tools/daemon/store.c --------------------------------------------------------------------------------