diff options
author | Havoc Pennington <hp@redhat.com> | 2002-12-27 02:07:21 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2002-12-27 02:07:21 +0000 |
commit | b3ef8b0e9bd2719d502c7f2e0cf829e151386162 (patch) | |
tree | 59ce69b5939f2dbe03bb5e5e4d8aab6a1635835e /dbus/dbus-internals.h | |
parent | ff5283ab92c668453fd2f28c1715a1e0e9b949f5 (diff) |
2002-12-26 Havoc Pennington <hp@pobox.com>
* dbus/dbus-auth.c: fixes fixes fixes
* dbus/dbus-transport-unix.c: wire up support for
encoding/decoding data on the wire
* dbus/dbus-auth.c (_dbus_auth_encode_data)
(_dbus_auth_decode_data): append to target string
instead of nuking it.
Diffstat (limited to 'dbus/dbus-internals.h')
-rw-r--r-- | dbus/dbus-internals.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/dbus/dbus-internals.h b/dbus/dbus-internals.h index 2b7772f3..027b3ef6 100644 --- a/dbus/dbus-internals.h +++ b/dbus/dbus-internals.h @@ -83,8 +83,13 @@ typedef void (* DBusForeachFunction) (void *element, dbus_bool_t _dbus_set_fd_nonblocking (int fd, DBusResultCode *result); -void _dbus_verbose_bytes (const unsigned char *data, - int len); +void _dbus_verbose_bytes (const unsigned char *data, + int len); +void _dbus_verbose_bytes_of_string (const DBusString *str, + int start, + int len); + + DBUS_END_DECLS; |