#!/bin/sh
-# Copyright (C) 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014-2017 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
printf "\n"
printf "COMMAND: Currently supported operations are:\n"
printf "\n"
- printf " - lease-init: Initalizes new lease database. Useful for first time installation.\n"
+ printf " - lease-init: Initializes new lease database. Useful for first time installation.\n"
printf " - lease-version: Checks version of the existing lease database scheme. Useful\n"
printf " - for checking lease DB version when preparing for an upgrade.\n"
printf " - lease-upgrade: Upgrades your lease database scheme\n"
-// Copyright (C) 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2014-2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
bool
D2CfgMgr::reverseUpdatesEnabled() {
- // Reverse updates are not enabled if no revese servers are defined.
+ // Reverse updates are not enabled if no reverse servers are defined.
return (getD2CfgContext()->getReverseMgr()->size() > 0);
}
-// Copyright (C) 2013-2016 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
/// @return Configuration summary in the textual format.
std::string getConfigSummary() const;
- /// @brief Compares two D2Paramss for equality
+ /// @brief Compares two D2Params's for equality
bool operator == (const D2Params& other) const;
- /// @brief Compares two D2Paramss for inequality
+ /// @brief Compares two D2Params's for inequality
bool operator != (const D2Params& other) const;
/// @brief Generates a string representation of the class contents.
/// @brief Dumps the contents of a D2Params as text to an output stream
///
/// @param os output stream to which text should be sent
-/// @param config D2Param instnace to dump
+/// @param config D2Param instance to dump
std::ostream&
operator<<(std::ostream& os, const D2Params& config);
/// @brief Constructor
///
/// @param name the unique label used to identify this key
- /// @param algorithm the id of the encryption alogirthm this key uses.
+ /// @param algorithm the id of the encryption algorithm this key uses.
/// Currently supported values are (case insensitive):
/// -# "HMAC-MD5"
/// -# "HMAC-SHA1"
-// Copyright (C) 2013-2016 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
/// as a place to perform any derivation-specific initialization steps
/// that are inapppropriate for the constructor but necessary prior to
/// launch. So far, no such steps have been identified for D2, so its
- /// implementantion is empty but required.
+ /// implementation is empty but required.
///
/// @throw DProcessBaseError if the initialization fails.
virtual void init();
-// Copyright (C) 2013-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2015,2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
isc::Exception(file, line, what) {}
};
-/// @brief Exception indicating that a signed, inbound message failed to verfiy
+/// @brief Exception indicating that a signed, inbound message failed to verify
///
/// This exception is thrown when TSIG verification of a DNS server's response
/// fails.
/// (either outgoing or incoming).
///
/// This constructor is used to create an instance of either incoming or
- /// outgoing DNS Update message. The boolean argument indicates wheteher it
+ /// outgoing DNS Update message. The boolean argument indicates whether it
/// is incoming (true) or outgoing (false) message. For incoming messages
/// the @c D2UpdateMessage::fromWire function is used to parse on-wire data.
/// For outgoing messages, modifier functions should be used to set the
-// Copyright (C) 2013-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2015,2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
/// post a next event of IO_COMPLETED_EVT and then invoke runModel which
/// resumes execution of the state model.
///
- /// When the handler is invoked with a next event of IO_COMPELTED_EVT,
+ /// When the handler is invoked with a next event of IO_COMPLETED_EVT,
/// the DNS update status is checked and acted upon accordingly:
///
/// Transitions to:
/// post a next event of IO_COMPLETED_EVT and then invoke runModel which
/// resumes execution of the state model.
///
- /// When the handler is invoked with a next event of IO_COMPELTED_EVT,
+ /// When the handler is invoked with a next event of IO_COMPLETED_EVT,
/// the DNS update status is checked and acted upon accordingly:
///
/// Transitions to:
/// post a next event of IO_COMPLETED_EVT and then invoke runModel which
/// resumes execution of the state model.
///
- /// When the handler is invoked with a next event of IO_COMPELTED_EVT,
+ /// When the handler is invoked with a next event of IO_COMPLETED_EVT,
/// the DNS update status is checked and acted upon accordingly:
///
/// Transitions to:
-// Copyright (C) 2013-2016 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
stream << "OTHER";
break;
default:
- stream << "UKNOWNN("
+ stream << "UNKOWN("
<< static_cast<int>(getDnsUpdateStatus()) << ")";
break;
-// Copyright (C) 2013-2016 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
static const int NCT_DERIVED_EVENT_MIN = SM_DERIVED_EVENT_MIN + 101;
//@}
- /// @brief Defualt time to assign to a single DNS udpate.
+ /// @brief Default time to assign to a single DNS udpate.
/// @todo This value will be made configurable in the very near future
/// under trac3268. For now we will define it to 100 milliseconds
/// so unit tests will run within a reasonable amount of time.