summaryrefslogtreecommitdiffstats
path: root/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [#3592] Update schemasThomas Markwalder7 days1-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/share/database/scripts/mysql/upgrade_026_to_027.sh.in src/share/database/scripts/pgsql/upgrade_026_to_027.sh.in - new upgrade scripts configure.ac src/share/database/scripts/mysql/.gitignore src/share/database/scripts/mysql/Makefile.am src/share/database/scripts/pgsql/.gitignore src/share/database/scripts/pgsql/Makefile.am added new upgrade scripts src/bin/admin/tests/mysql_tests.sh.in updated mysql_upgrade_26_to_27_test() - new test src/bin/admin/tests/pgsql_tests.sh.in updated pgsql_upgrade_26_to_27_test() - new test src/lib/mysql/mysql_constants.h src/lib/pgsql/pgsql_connection.h updated schema version src/share/database/scripts/mysql/dhcpdb_create.mysql src/share/database/scripts/pgsql/dhcpdb_create.pgsql change client_class columns
* [#3650] configure.ac version bumped upWlodek Wencel2024-10-301-1/+1
|
* [#3605] Integrate a new fuzzing solution in KeaAndrei Pavel2024-10-231-1/+8
| | | | | | | | | | The solution is based on clusterfuzzlite, libfuzzer, and oss-fuzz technologies. - Add the .clusterfuzzlite directory. - Add the fuzz CI stage and fuzzing CI jobs. - Add the fuzzing targets in the fuzz directory. - Document fuzzing in doxygen.
* [#3605] Prepare existing code for fuzzingAndrei Pavel2024-10-231-19/+55
| | | | | | | | | | | | | | - Separate ENABLE_AFL into ENABLE_FUZZING and HAVE_AFL. - Add the --disable-unicode flag required in the oss-fuzz container. - Add checking of support for C++17. - Make Kea compile with afl++. - Rotate ports in `getServerPort()` functions under an env var. - Fix some destruction issues that would result in crashes when fuzzing. - Add some checks in the UnixControlClient that prevent some crashes when fuzzing. - Add `isc::util::isSocket()` function. - Change `isc::util::file::Path` to not append a trailing slash to allow chained calls of `parentPath()`. - Add `isc::util::file::TemporaryDirectory` useful when fuzzing.
* [#3351] use execve to silence valgrind on child exitRazvan Becheriu2024-10-171-0/+2
|
* [#3583] add client_classes to option tablesThomas Markwalder2024-10-151-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | /src/share/database/scripts/mysql/upgrade_025_to_026.sh.in /src/share/database/scripts/pgsql/upgrade_025_to_026.sh.in - new files /src/share/database/scripts/mysql/dhcpdb_create.mysql /src/share/database/scripts/pgsql/dhcpdb_create.pgsql - adds client_classes to option tables /configure.ac /src/share/database/scripts/mysql/.gitignore /src/share/database/scripts/mysql/Makefile.am /src/share/database/scripts/pgsql/.gitignore /src/share/database/scripts/pgsql/Makefile.am - added new upgrade files /src/bin/admin/tests/pgsql_tests.sh.in /src/bin/admin/tests/mysql_tests.sh.in - Updated for new schema 26 /src/lib/mysql/mysql_constants.h /src/lib/pgsql/pgsql_connection.h Updated schema version
* [#3552] Updated Botan supportFrancis Dupont2024-10-111-17/+0
|
* [#3536] merge mysql and pgsql hooksRazvan Becheriu2024-10-031-18/+6
|
* [#3604] Bump up version in configure.ac to 2.7.4Marcin Godzina2024-09-251-1/+1
|
* [#3477] Added missing shell testsFrancis Dupont2024-09-201-0/+12
|
* [#3477] Checkpoint: added d2 shell testsFrancis Dupont2024-09-201-4/+10
|
* [#3536] addressed review commentsRazvan Becheriu2024-09-161-12/+12
|
* [#3536] moved from lib to hooksRazvan Becheriu2024-09-161-8/+0
|
* [#3536] move lease and host backendsRazvan Becheriu2024-09-161-0/+20
|
* [#1387] Synchronized upgrade scriptsFrancis Dupont2024-09-041-0/+4
|
* [#3564] Bump up version in configure.ac to 2.7.3Andrei Pavel2024-08-281-1/+1
|
* [#3550] AC_PROG_LN_S and ChangeLog entryAndrei Pavel2024-08-261-0/+3
|
* [#3524] workaround for silent rules being ignored in automake 1.17Andrei Pavel2024-08-221-5/+5
| | | | Also remove all the few other trailing `dnl`s just to be safe.
* [#3490] Moved to http/testutilsFrancis Dupont2024-08-081-0/+1
|
* [#3526] updated version in configure.acWlodek Wencel2024-07-311-1/+1
|
* [#3476] Correct option def data type enum overlapThomas Markwalder2024-07-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | new files: src/share/database/scripts/mysql/upgrade_023_to_024.sh.in src/share/database/scripts/pgsql/upgrade_023_to_024.sh.in configure.ac Added new upgrade files src/share/database/scripts/mysql/upgrade_023_to_024.sh src/share/database/scripts/pgsql/upgrade_023_to_024.sh src/bin/admin/kea-admin.in mysql_upgrade() pgsql_upgrade() - now sort scripts numerically src/bin/admin/tests/mysql_tests.sh.in mysql_upgrade_23_to_24_test() - new test function mysql_upgrade_test() - updated version check src/bin/admin/tests/pgsql_tests.sh.in pgsql_db_version_test() - updated version check pgsql_upgrade_23_to_24_test() - new test function src/lib/dhcp/option_data_types.h Set explicit values for OPT_RECORD_TYPE and OPT_UKNOWN_TYPE src/lib/dhcp/tests/option_definition_unittest.cc TEST(OptionDataTypeUtil, typeToString) TEST(OptionDataTypeUtil, stringToType) - new tests src/lib/mysql/mysql_constants.h Updated schema version to 24.0 src/lib/pgsql/pgsql_connection.h Updated schema version to 24.0 src/share/database/scripts/mysql/dhcpdb_create.mysql Added option_def_data_type table creation src/share/database/scripts/mysql/dhcpdb_drop.mysql Added option_def_data_type table drop src/share/database/scripts/pgsql/dhcpdb_create.pgsql Added option_def_data_type table creation src/share/database/scripts/pgsql/dhcpdb_drop.pgsql Added option_def_data_type table drop
* [#3468] bump up version to 2.7.1Marcin Godzina2024-06-261-1/+1
|
* [#3246] Do not delete soft released leasesMarcin Siodelski2024-06-191-0/+4
|
* [#3450] make kea environment available to lfcRazvan Becheriu2024-06-171-0/+2
|
* [#3438] bump up version to 2.7.0Andrei Pavel2024-05-291-1/+1
|
* [#3431] release changesAndrei Pavel2024-05-241-1/+1
|
* [#2958] add upgrade scriptRazvan Becheriu2024-05-221-0/+2
|
* [#3396] Moved column alters to new schema 22Thomas Markwalder2024-05-211-0/+2
| | | | | | | | | | | | | | | | | | | | | | | configure.ac Added mysql/upgrade_019_to_020.sh src/bin/admin/tests/mysql_tests.sh.in Updated, adjusted for version check src/lib/mysql/mysql_constants.h Bumped schema version to 22 src/share/database/scripts/mysql/.gitignore upgrade_019_to_020.sh src/share/database/scripts/mysql/dhcpdb_create.mysql Moved expire column statements into version 22 update section src/share/database/scripts/mysql/upgrade_020_to_021.sh.in Removed expire column updates src/share/database/scripts/mysql/upgrade_020_to_021.sh.in New file, modifies expire columns
* Resolve "kea-dhcp4 and 6: WARNING: MYSQL_OPT_RECONNECT is deprecated and ↵Thomas Markwalder2024-05-101-0/+10
| | | | will be removed in a future version."
* [#3365] bump up version in configure.acWlodek Wencel2024-04-301-1/+1
|
* [#3254] 'premium: no' in version when missingAndrei Pavel2024-04-241-0/+1
|
* [#3254] consistent version output across executablesAndrei Pavel2024-04-241-7/+5
| | | | | | | | | | | | | | | - replace VERSION with PACKAGE_VERSION in src/bin/admin to avoid overlap with VERSION used in src/share/database. - add -V to kea-admin - add -V to kea-shell - add -V to keactrl - add -V to perfdhcp - removed getVersionAddendum from d2 and added the openssl version to the output of other process versions since it's not only used by d2 - make all -V outputs consistent. Some are showing only core version and are missing premium version which is fine since they are the executables that don't have something to do with premium directly anyway.
* [#3254] show premium source in extended versionAndrei Pavel2024-04-241-0/+3
|
* [#3254] show premium source in config reportAndrei Pavel2024-04-241-2/+3
|
* [#2957] Fix dhcp4_server_modification_ts indexThomas Markwalder2024-04-221-0/+2
| | | | | | | | | | | | | | | | | | | | | src/share/database/scripts/pgsql/upgrade_020_to_021.sh.in - new file, corrects dhcp4_server_modifcation_ts index configure.ac added src/share/database/scripts/pgsql/upgrade_020_to_021.sh src/bin/admin/tests/pgsql_tests.sh.in Added pgsql_upgrade_20_to_21_test() src/lib/pgsql/pgsql_connection.h Updated schema version src/share/database/scripts/pgsql/.gitignore src/share/database/scripts/pgsql/Makefile.am Added upgrade_020_to_021.sh src/share/database/scripts/pgsql/dhcpdb_create.pgsql Added correction of dhcp4_server_modifcation_ts index
* [#3316] fixed doxygenRazvan Becheriu2024-04-031-2/+0
|
* [#3313] bump version in configure.ac to 2.5.8Marcin Godzina2024-03-261-1/+1
|
* [#3210] refactor string utilitiesAndrei Pavel2024-03-211-2/+2
| | | | | | | | | - Rename util/strutil.h to util/str.h to escape redundancy. - Simplify trim function. - Remove unused functions. - Get rid of the regex conditional compilation that helped Kea build with ancient compilers. Lack of proper regex functionality now results in failure in configure.ac.
* [#3208] restore unittestsRazvan Becheriu2024-03-071-2/+0
|
* [#3271] bump version in configure.ac to 2.5.7Andrei Pavel2024-02-271-1/+1
|
* [#3242] Added bare-bones perfmon hook libraryThomas Markwalder2024-02-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New files: arm/hooks-perfmon.rst src/hooks/dhcp/perfmon/.gitattributes src/hooks/dhcp/perfmon/.gitignore src/hooks/dhcp/perfmon/Makefile.am src/hooks/dhcp/perfmon/libloadtests/.gitignore src/hooks/dhcp/perfmon/libloadtests/Makefile.am src/hooks/dhcp/perfmon/libloadtests/load_unload_unittests.cc src/hooks/dhcp/perfmon/libloadtests/run_unittests.cc src/hooks/dhcp/perfmon/perfmon.dox src/hooks/dhcp/perfmon/perfmon_callouts.cc src/hooks/dhcp/perfmon/perfmon_log.cc src/hooks/dhcp/perfmon/perfmon_log.h src/hooks/dhcp/perfmon/perfmon_messages.cc src/hooks/dhcp/perfmon/perfmon_messages.h src/hooks/dhcp/perfmon/perfmon_messages.mes src/hooks/dhcp/perfmon/tests/.gitignore src/hooks/dhcp/perfmon/tests/Makefile.am src/hooks/dhcp/perfmon/tests/run_unittests.cc src/hooks/dhcp/perfmon/version.cc Modified: configure.ac arm/hooks-perfmon.rst arm/hooks.rst arm/logging.rst arm/rst_arm_sources.mk conf.py src/hooks/dhcp/Makefile.am
* [#3240] version in configure.ac changed to 2.5.6-gitWlodek Wencel2024-01-311-1/+1
|
* [#3149] Added a new indexFrancis Dupont2024-01-171-0/+4
|
* [#3168] Removed old RADIUSFrancis Dupont2023-12-141-10/+0
|
* [#3177] bump up configure.ac version to 2.5.5-gitAndrei Pavel2023-11-291-1/+1
|
* [#3132] version bumped up to 2.5.4wwencel2023-10-261-1/+1
|
* [#3017] added testing framework for using dummy test interfacesRazvan Becheriu2023-10-171-0/+1
|
* [#2750] change xq to xmllint and check if in pathAndrei Pavel2023-10-061-0/+4
| | | | | | - also make makefile rules in doc/sphinx/uml silent to make the potential warning visible - also remove trailing spaces automatically from *.atxt files
* [#3078] set package version and type in configure.acWlodek Wencel2023-10-031-2/+11
|
* [#3091] bump configure.ac to 2.5.3-gitMarcin Godzina2023-09-261-1/+1
|