summaryrefslogtreecommitdiff
path: root/omapip/protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'omapip/protocol.c')
-rw-r--r--omapip/protocol.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/omapip/protocol.c b/omapip/protocol.c
index ea93d0f1..f259a291 100644
--- a/omapip/protocol.c
+++ b/omapip/protocol.c
@@ -338,7 +338,7 @@ isc_result_t omapi_protocol_send_message (omapi_object_t *po,
}
return ISC_R_SUCCESS;
}
-
+
isc_result_t omapi_protocol_signal_handler (omapi_object_t *h,
const char *name, va_list ap)
@@ -439,7 +439,7 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h,
byte order. */
omapi_connection_get_uint32 (c, &p -> protocol_version);
omapi_connection_get_uint32 (c, &p -> header_size);
-
+
/* We currently only support the current protocol version. */
if (p -> protocol_version != OMAPI_PROTOCOL_VERSION) {
omapi_disconnect (c, 1);
@@ -538,7 +538,7 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h,
(0, c, (p -> header_size -
sizeof (omapi_protocol_header_t)));
}
-
+
/* XXX must compute partial signature across the
XXX preceding bytes. Also, if authenticator
specifies encryption as well as signing, we may
@@ -602,7 +602,7 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h,
if (omapi_connection_require (c, nlen) != ISC_R_SUCCESS)
break;
/* If it's already here, fall through. */
-
+
case omapi_protocol_name_wait:
omapi_connection_copyout (p -> name -> value, c,
p -> name -> len);
@@ -633,7 +633,7 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h,
if (omapi_connection_require (c, vlen) != ISC_R_SUCCESS)
break;
/* If it's already here, fall through. */
-
+
case omapi_protocol_value_wait:
omapi_connection_copyout (p -> value -> u.buffer.value, c,
p -> value -> u.buffer.len);
@@ -697,7 +697,7 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h,
&p -> message -> authenticator,
omapi_datatype_data,
p -> message -> authlen);
-
+
if (status != ISC_R_SUCCESS) {
if (signature != NULL) {
omapi_value_dereference (&signature, MDL);
@@ -756,7 +756,7 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h,
previous_outstanding = 0xDEADBEEF;
#endif
/* Now wait for the next message. */
- goto to_header_wait;
+ goto to_header_wait;
default:
/* XXX should never get here. Assertion? */
@@ -899,7 +899,7 @@ isc_result_t omapi_protocol_get_value (omapi_object_t *h,
return omapi_make_object_value (value, name,
p -> default_auth -> a, MDL);
}
-
+
if (h -> inner && h -> inner -> type -> get_value)
return (*(h -> inner -> type -> get_value))
(h -> inner, id, name, value);
@@ -989,7 +989,7 @@ isc_result_t omapi_protocol_configure_security (omapi_object_t *h,
return DHCP_R_INVALIDARG;
}
}
-
+
/* Set up a listener for the omapi protocol. The handle stored points to
a listener object, not a protocol object. */
@@ -1092,7 +1092,7 @@ isc_result_t omapi_protocol_listener_set_value (omapi_object_t *h,
{
if (h -> type != omapi_type_protocol_listener)
return DHCP_R_INVALIDARG;
-
+
if (h -> inner && h -> inner -> type -> set_value)
return (*(h -> inner -> type -> set_value))
(h -> inner, id, name, value);
@@ -1106,7 +1106,7 @@ isc_result_t omapi_protocol_listener_get_value (omapi_object_t *h,
{
if (h -> type != omapi_type_protocol_listener)
return DHCP_R_INVALIDARG;
-
+
if (h -> inner && h -> inner -> type -> get_value)
return (*(h -> inner -> type -> get_value))
(h -> inner, id, name, value);
@@ -1298,8 +1298,8 @@ isc_result_t omapi_protocol_send_update (omapi_object_t *po,
omapi_message_dereference (&message, MDL);
return status;
}
- }
-
+ }
+
status = omapi_set_object_value (mo, (omapi_object_t *)0,
"object", object);
if (status != ISC_R_SUCCESS) {