From 429a56d73c0f9f2edf400fd6313850a3ce4fd809 Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Wed, 19 Jan 2022 20:13:19 +0100 Subject: [#189] ISC address updated --- omapip/support.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'omapip/support.c') diff --git a/omapip/support.c b/omapip/support.c index a6b842ed..6ad625a3 100644 --- a/omapip/support.c +++ b/omapip/support.c @@ -19,8 +19,8 @@ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Internet Systems Consortium, Inc. - * 950 Charter Street - * Redwood City, CA 94063 + * PO Box 360 + * Newmarket, NH 03857 USA * * https://www.isc.org/ * -- cgit v1.2.1 From f6b8f48d1665c4487dedbcfa4dca435a0d67ddeb Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Wed, 19 Jan 2022 20:14:16 +0100 Subject: [#189] Whitespace fixes in opened files --- omapip/support.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'omapip/support.c') diff --git a/omapip/support.c b/omapip/support.c index 6ad625a3..f3791de0 100644 --- a/omapip/support.c +++ b/omapip/support.c @@ -745,18 +745,18 @@ isc_result_t omapi_make_object_value (omapi_value_t **vp, const char *file, int line) { isc_result_t status; - + status = omapi_value_new (vp, file, line); if (status != ISC_R_SUCCESS) return status; - + status = omapi_data_string_reference (&(*vp) -> name, name, file, line); if (status != ISC_R_SUCCESS) { omapi_value_dereference (vp, file, line); return status; } - + if (value) { status = omapi_typed_data_new (file, line, &(*vp) -> value, omapi_datatype_object, value); @@ -765,7 +765,7 @@ isc_result_t omapi_make_object_value (omapi_value_t **vp, return status; } } - + return ISC_R_SUCCESS; } -- cgit v1.2.1 From 7f1524669755d7a6e6cd1c3fb80084df273f3dc1 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Thu, 23 Jan 2020 16:21:52 -0500 Subject: [#76] Initial implemention to dhcpctl_timed_wait_for_completion common/conflex.c includes/dhctoken.h dhcpctl/omshell.c Added support for "disconnect" dhcpctl/cltest.2 - new file that exercizes timed waits and disconnect dhcpctl/Makefile.am.in Added cltest2.c dhcpctl/dhcpctl.* dhcpctl_timed_wait_for_completion() - new function dhcpctl_disconnect() - new function Added debug logging omapip/dispatch.c Added protocol logging omapi_wait_for_completion() Fixed dangling waiter reference omapi_one_dispatch() Added logic to skip emit writefds from select list omapip/support.c Changed annoying DEBUG logs to DEBUG_PROTOCOL --- omapip/support.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'omapip/support.c') diff --git a/omapip/support.c b/omapip/support.c index f3791de0..92000a17 100644 --- a/omapip/support.c +++ b/omapip/support.c @@ -308,7 +308,7 @@ isc_result_t omapi_set_value (omapi_object_t *h, omapi_object_t *outer; isc_result_t status; -#if defined (DEBUG) +#if defined (DEBUG_PROTOCOL) if (!value) { log_info ("omapi_set_value (%.*s, NULL)", (int)name -> len, name -> value); @@ -343,7 +343,7 @@ isc_result_t omapi_set_value (omapi_object_t *h, id, name, value); else status = ISC_R_NOTFOUND; -#if defined (DEBUG) +#if defined (DEBUG_PROTOCOL) log_info (" ==> %s", isc_result_totext (status)); #endif return status; -- cgit v1.2.1 From 9121bf6749fdbc70d7fa9ff6f0eeb96670e7a09c Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Tue, 28 Jan 2020 08:16:35 -0500 Subject: [#76] Added new functions to man page dhcpctl/dhcpctl.3 Also updated copyrights --- omapip/support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'omapip/support.c') diff --git a/omapip/support.c b/omapip/support.c index 92000a17..8f2581f1 100644 --- a/omapip/support.c +++ b/omapip/support.c @@ -3,7 +3,7 @@ Subroutines providing general support for objects. */ /* - * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1999-2003 by Internet Software Consortium * * This Source Code Form is subject to the terms of the Mozilla Public -- cgit v1.2.1 From 49a7fb582dc7af0f7d25e28878001e9e8fea8979 Mon Sep 17 00:00:00 2001 From: Wlodek Wencel Date: Tue, 25 Jan 2022 16:24:16 +0100 Subject: copy rights update --- omapip/support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'omapip/support.c') diff --git a/omapip/support.c b/omapip/support.c index 8f2581f1..4c7adc64 100644 --- a/omapip/support.c +++ b/omapip/support.c @@ -3,7 +3,7 @@ Subroutines providing general support for objects. */ /* - * Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2022 Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1999-2003 by Internet Software Consortium * * This Source Code Form is subject to the terms of the Mozilla Public -- cgit v1.2.1