callout_params_library.cc 592 B

12345678910111213141516171819202122232425
  1. // Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
  2. //
  3. // This Source Code Form is subject to the terms of the Mozilla Public
  4. // License, v. 2.0. If a copy of the MPL was not distributed with this
  5. // file, You can obtain one at http://mozilla.org/MPL/2.0/.
  6. /// @file
  7. /// @brief Callout Library
  8. ///
  9. /// This is the source of a test library for the DHCP parser tests that
  10. /// specify parameters. It will attempt to obtain its own parameters.
  11. #include <config.h>
  12. #include <hooks/hooks.h>
  13. extern "C" {
  14. // Framework functions
  15. int
  16. version() {
  17. return (KEA_HOOKS_VERSION);
  18. }
  19. };