-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#3443] Extra additions to the additions to the Meson Proof of Concept
- Loading branch information
1 parent
7ddd626
commit 9d66d0d
Showing
113 changed files
with
698 additions
and
643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
|
||
int main() { | ||
auto _(boost::asio::ssl::context::tls); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
int main() { | ||
struct sockaddr sa; | ||
sa.sa_len = 0; | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
|
||
int main() { | ||
my_bool _(0); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
|
||
int main() { | ||
auto _(boost::asio::ssl::error::stream_truncated); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
lfc_lib = static_library( | ||
'lfc', | ||
'lfc_controller.cc', | ||
'lfc_controller.h', | ||
'lfc_log.cc', | ||
'lfc_log.h', | ||
'lfc_messages.cc', | ||
'lfc_messages.h', | ||
dependencies: [boost], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
link_with: LIBS_BUILT_SO_FAR, | ||
) | ||
executable( | ||
'kea-lfc', | ||
'main.cc', | ||
dependencies: [boost], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
install: true, | ||
install_dir: 'sbin', | ||
link_with: LIBS_BUILT_SO_FAR + [lfc_lib], | ||
link_with: [lfc_lib] + LIBS_BUILT_SO_FAR, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,26 @@ | ||
perfdhcplib_lib = static_library( | ||
'perfdhcplib', | ||
'abstract_scen.h', | ||
'avalanche_scen.cc', | ||
'avalanche_scen.h', | ||
'basic_scen.cc', | ||
'basic_scen.h', | ||
'command_options.cc', | ||
'command_options.h', | ||
'localized_option.h', | ||
'packet_storage.h', | ||
'perf_pkt4.cc', | ||
'perf_pkt4.h', | ||
'perf_pkt6.cc', | ||
'perf_pkt6.h', | ||
'perf_socket.cc', | ||
'perf_socket.h', | ||
'pkt_transform.cc', | ||
'pkt_transform.h', | ||
'rate_control.cc', | ||
'rate_control.h', | ||
'receiver.cc', | ||
'receiver.h', | ||
'stats_mgr.cc', | ||
'stats_mgr.h', | ||
'test_control.cc', | ||
'test_control.h', | ||
dependencies: [boost], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
link_with: LIBS_BUILT_SO_FAR, | ||
) | ||
executable( | ||
'perfdhcp', | ||
'main.cc', | ||
dependencies: [boost], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
install: true, | ||
install_dir: 'sbin', | ||
link_with: LIBS_BUILT_SO_FAR + [perfdhcplib_lib], | ||
link_with: [perfdhcplib_lib] + LIBS_BUILT_SO_FAR, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
dhcp_flex_option_lib = library( | ||
'dhcp_flex_option', | ||
'flex_option.cc', | ||
'flex_option.h', | ||
'flex_option_callouts.cc', | ||
'flex_option_log.cc', | ||
'flex_option_log.h', | ||
'flex_option_messages.cc', | ||
'flex_option_messages.h', | ||
'version.cc', | ||
dependencies: [crypto], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
install: true, | ||
install_dir: 'lib/kea/hooks', | ||
link_with: LIBS_BUILT_SO_FAR, | ||
name_suffix: 'so', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,23 @@ | ||
dhcp_high_availability_lib = library( | ||
'dhcp_high_availability', | ||
'command_creator.cc', | ||
'command_creator.h', | ||
'communication_state.cc', | ||
'communication_state.h', | ||
'ha_callouts.cc', | ||
'ha_config.cc', | ||
'ha_config.h', | ||
'ha_config_parser.cc', | ||
'ha_config_parser.h', | ||
'ha_impl.cc', | ||
'ha_impl.h', | ||
'ha_log.cc', | ||
'ha_log.h', | ||
'ha_messages.cc', | ||
'ha_messages.h', | ||
'ha_relationship_mapper.h', | ||
'ha_server_type.h', | ||
'ha_service.cc', | ||
'ha_service.h', | ||
'ha_service_states.cc', | ||
'ha_service_states.h', | ||
'lease_sync_filter.cc', | ||
'lease_sync_filter.h', | ||
'lease_update_backlog.cc', | ||
'lease_update_backlog.h', | ||
'query_filter.cc', | ||
'query_filter.h', | ||
'version.cc', | ||
dependencies: [crypto], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
install: true, | ||
install_dir: 'lib/kea/hooks', | ||
link_with: LIBS_BUILT_SO_FAR, | ||
name_suffix: 'so', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
dhcp_lease_cmds_lib = library( | ||
'dhcp_lease_cmds', | ||
'lease_cmds.cc', | ||
'lease_cmds.h', | ||
'lease_cmds_callouts.cc', | ||
'lease_cmds_exceptions.h', | ||
'lease_cmds_log.cc', | ||
'lease_cmds_log.h', | ||
'lease_cmds_messages.cc', | ||
'lease_cmds_messages.h', | ||
'lease_parser.cc', | ||
'lease_parser.h', | ||
'version.cc', | ||
dependencies: [crypto], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
install: true, | ||
install_dir: 'lib/kea/hooks', | ||
link_with: LIBS_BUILT_SO_FAR, | ||
name_suffix: 'so', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
dhcp_perfmon_lib = library( | ||
'dhcp_perfmon', | ||
'alarm.cc', | ||
'alarm.h', | ||
'alarm_store.cc', | ||
'alarm_store.h', | ||
'monitored_duration.cc', | ||
'monitored_duration.h', | ||
'monitored_duration_store.cc', | ||
'monitored_duration_store.h', | ||
'perfmon_callouts.cc', | ||
'perfmon_config.cc', | ||
'perfmon_config.h', | ||
'perfmon_log.cc', | ||
'perfmon_log.h', | ||
'perfmon_messages.cc', | ||
'perfmon_messages.h', | ||
'perfmon_mgr.cc', | ||
'perfmon_mgr.h', | ||
'version.cc', | ||
dependencies: [crypto], | ||
include_directories: [include_directories('.')] + INCLUDES, | ||
install: true, | ||
install_dir: 'lib/kea/hooks', | ||
link_with: LIBS_BUILT_SO_FAR, | ||
name_suffix: 'so', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.