glib/gio
David Zeuthen bb6530eb34 GDBus: Fix serialization of empty arrays
It turns out that we didn't observe padding (neither when reading nor
writing) for empty arrays which (apparently) is needed according to
the D-Bus spec and reference implementation. A simple test case to
provoke this behavior is as follows (notice the lack of 4 bytes worth
of padding at position 0x0064):

 Error calling dbus_message_demarshal() on this blob: org.freedesktop.DBus.Error.InvalidArgs: Message is corrupted (Alignment padding not null)
 0000: 6c 01 00 01  2e 00 00 00  41 00 00 00  37 00 00 00    l.......A...7...
 0010: 08 01 67 00  08 73 61 7b  73 76 7d 61  73 00 00 00    ..g..sa{sv}as...
 0020: 01 01 6f 00  08 00 00 00  2f 66 6f 6f  2f 62 61 72    ..o...../foo/bar
 0030: 00 00 00 00  00 00 00 00  03 01 73 00  06 00 00 00    ..........s.....
 0040: 4d 65 6d 62  65 72 00 00  11 00 00 00  30 31 32 33    Member......0123
 0050: 34 35 36 37  38 39 30 31  32 33 34 35  36 00 00 00    4567890123456...
 0060: 00 00 00 00  0e 00 00 00  09 00 00 00  53 6f 6d 65    ............Some
 0070: 74 68 69 6e  67 00                                    thing.

 The blob was generated from the following GVariant value:
 ('01234567890123456', @a{sv} {}, ['Something'])

 If the blob was encoded using DBusMessageIter, the payload would have been:

 0000: 6c 01 00 01  32 00 00 00  41 00 00 00  36 00 00 00    l...2...A...6...
 0010: 01 01 6f 00  08 00 00 00  2f 66 6f 6f  2f 62 61 72    ..o...../foo/bar
 0020: 00 00 00 00  00 00 00 00  03 01 73 00  06 00 00 00    ..........s.....
 0030: 4d 65 6d 62  65 72 00 00  08 01 67 00  08 73 61 7b    Member....g..sa{
 0040: 73 76 7d 61  73 00 00 00  11 00 00 00  30 31 32 33    sv}as.......0123
 0050: 34 35 36 37  38 39 30 31  32 33 34 35  36 00 00 00    4567890123456...
 0060: 00 00 00 00  00 00 00 00  0e 00 00 00  09 00 00 00    ................
 0070: 53 6f 6d 65  74 68 69 6e  67 00                       Something.
 ** ERROR:gdbus-serialization.c:547:check_serialization: code should not be reached
 Aborted

and this is now in the libdbus-1-using serialization test case.

Signed-off-by: David Zeuthen <davidz@redhat.com>
2010-05-14 12:56:09 -04:00
..
fam Implement lazy loading of fam plugin 2010-01-12 16:34:23 +01:00
fen Fix up GIO docs 2009-11-29 22:54:16 -05:00
gvdb Merge remote branch 'gvdb/master' 2010-04-20 20:13:56 -04:00
inotify Move event support in the inotify backend 2010-02-18 15:50:26 +01:00
libasyncns Fix build on Solaris 8 2010-02-21 15:55:10 -05:00
tests GDBus: Fix serialization of empty arrays 2010-05-14 12:56:09 -04:00
win32 Fix up GIO docs 2009-11-29 22:54:16 -05:00
xdgmime Fix compilation warning: Remove unused function 2009-11-17 20:44:10 +01:00
.gitignore .gitignore updates for gsettings stuff 2010-04-27 17:04:57 -04:00
abicheck.sh Don't include __bss_start, _edata and _end symbols in the abichecks 2010-05-11 06:17:25 +02:00
ChangeLog Update README files to refer to git 2009-03-31 19:39:16 -04:00
gappinfo.c Use G_DEFINE_INTERFACE in gio 2009-12-01 10:44:42 +01:00
gappinfo.h Fix up GIO docs 2009-11-29 22:54:16 -05:00
gasynchelper.c GSocket: Merge the unix and windows socket sources together 2010-04-23 12:25:56 -04:00
gasynchelper.h GSocket: Merge the unix and windows socket sources together 2010-04-23 12:25:56 -04:00
gasyncinitable.c [gio] Use G_DEFINE_INTERFACE macro 2010-04-21 02:32:43 +02:00
gasyncinitable.h Import GInitable, GSocket and dependencies from gnio 2009-05-14 15:44:36 +02:00
gasyncresult.c Document that _finish() must be called at most once. 2010-01-02 19:53:02 -05:00
gasyncresult.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gbufferedinputstream.c Remmove a dead assignment. 2009-09-07 03:07:22 -04:00
gbufferedinputstream.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gbufferedoutputstream.c Fix a lot of clang complaints 2009-09-18 19:20:06 -04:00
gbufferedoutputstream.h fix parent_class member to be GFilterOutputStreamClass (not 2008-09-02 17:30:02 +00:00
gcancellable.c g_cancellable_release_fd: allow NULL cancellable 2010-05-03 12:08:14 -04:00
gcancellable.h Add g_cancellable_release_fd() 2009-08-19 11:02:05 +02:00
gcharsetconverter.c Do not include "glib.h" in gio files 2010-05-06 17:42:09 +02:00
gcharsetconverter.h Add missign single include guards 2010-02-21 16:12:35 -05:00
gcontenttype.c Set result_uncertain in win32 g_content_type_guess implementation 2010-02-15 10:13:10 +01:00
gcontenttype.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gcontenttypeprivate.h gio/ docs/reference/gio Merged gio-standalone into glib. 2007-11-26 16:13:05 +00:00
gconverter.c [gio] Use G_DEFINE_INTERFACE macro 2010-04-21 02:32:43 +02:00
gconverter.h Small doc addition 2010-03-26 09:30:25 -04:00
gconverterinputstream.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gconverterinputstream.h Fix up GIO docs 2009-11-29 22:54:16 -05:00
gconverteroutputstream.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gconverteroutputstream.h Fix up GIO docs 2009-11-29 22:54:16 -05:00
gcredentials.c Cleanups 2010-05-14 08:38:07 -04:00
gcredentials.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdatainputstream.c Add doc note about read_until() inconsistency. 2010-03-23 10:01:53 -05:00
gdatainputstream.h Bug 568575 – _async functions for GDataInputStream 2009-01-28 16:39:39 +00:00
gdataoutputstream.c Include "config.h" instead of <config.h> Command used: find -name 2008-06-22 15:10:51 +00:00
gdataoutputstream.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gdbus-bash-completion.sh Initial GDBus code-drop from GDBus-standalone repo 2010-05-06 14:21:32 -04:00
gdbus-tool.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusaddress.c Trivia 2010-05-10 08:07:07 -04:00
gdbusaddress.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusauth.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusauth.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusauthmechanism.c Cosmetic fixes 2010-05-09 22:13:18 -04:00
gdbusauthmechanism.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusauthmechanismanon.c Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusauthmechanismanon.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusauthmechanismexternal.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusauthmechanismexternal.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusauthmechanismsha1.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusauthmechanismsha1.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusauthobserver.c GDBus: Rename ::deny-authentication-peer to ::authorize-authenticated-peer 2010-05-13 16:20:31 -04:00
gdbusauthobserver.h GDBus: Rename ::deny-authentication-peer to ::authorize-authenticated-peer 2010-05-13 16:20:31 -04:00
gdbusconnection.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusconnection.h GDBus: Add GDBusAuthObserver param in g_dbus_connection_new_for_address() 2010-05-13 16:32:11 -04:00
gdbuserror.c GDBus: Use call() instead of invoke_method() 2010-05-10 11:47:08 -04:00
gdbuserror.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusintrospection.c Document DBUS address env vars 2010-05-11 22:35:59 -04:00
gdbusintrospection.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusmessage.c GDBus: Fix serialization of empty arrays 2010-05-14 12:56:09 -04:00
gdbusmessage.h Clean up platform-specific includes 2010-05-13 20:29:04 -04:00
gdbusmethodinvocation.c Remove properties from GDBusMethodInvocation class 2010-05-11 22:51:14 -04:00
gdbusmethodinvocation.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusnameowning.c GDBus: Nuke G_BUS_TYPE_NONE 2010-05-13 18:04:48 -04:00
gdbusnameowning.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusnamewatching.c GDBus: Nuke G_BUS_TYPE_NONE 2010-05-13 18:04:48 -04:00
gdbusnamewatching.h GDBus: add 'monitor' verb to gdbus(1) 2010-05-12 23:12:14 -04:00
gdbusprivate.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusprivate.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusproxy.c Add some more details to the long description 2010-05-13 21:45:18 -04:00
gdbusproxy.h GDBus: Don't take a GError for g_dbus_proxy_get_cached_property_names() 2010-05-13 17:10:15 -04:00
gdbusproxywatching.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusproxywatching.h GDBus: add 'monitor' verb to gdbus(1) 2010-05-12 23:12:14 -04:00
gdbusserver.c Cleanups 2010-05-14 08:38:07 -04:00
gdbusserver.h Update copyright years to include 2010 2010-05-09 13:14:55 -04:00
gdbusutils.c GDBus: Remove g_dbus_is_activated() 2010-05-13 17:44:42 -04:00
gdbusutils.h GDBus: Remove g_dbus_is_activated() 2010-05-13 17:44:42 -04:00
gdelayedsettingsbackend.c GSettingsBackend API/ABI change 2010-04-28 14:41:42 -05:00
gdelayedsettingsbackend.h GSettings: import delayed backend to master 2010-04-16 12:02:44 -04:00
gdesktopappinfo.c Doc improvements 2010-05-08 23:28:17 -04:00
gdesktopappinfo.h [GDesktopAppInfo] New function g_desktop_app_info_get_filename 2010-03-14 15:45:46 -04:00
gdrive.c Use G_DEFINE_INTERFACE in gio 2009-12-01 10:44:42 +01:00
gdrive.h Allow interaction when unmounting mounts 2009-07-05 21:59:38 -04:00
gdummyfile.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gdummyfile.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gemblem.c Fix the icon property implementation 2009-06-15 00:45:55 -04:00
gemblem.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gemblemedicon.c Bug 540461 – GEmblemedIcon leak 2009-02-27 18:19:05 +00:00
gemblemedicon.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gfile.c Correct the error handling in splice_stream_with_progress 2010-03-26 09:03:22 -04:00
gfile.h Bug 535159 - g_file_has_parent 2009-11-17 20:27:38 -06:00
gfileattribute-priv.h Add string vector attribute type to GFileInfo 2009-06-23 16:35:41 +02:00
gfileattribute.c Documentation fixes 2009-10-13 16:21:42 +02:00
gfileattribute.h Bug 554745 - GFileAttributeInfoList should be boxed 2008-10-06 21:59:29 +00:00
gfiledescriptorbased.c Doc improvements 2010-05-08 23:28:17 -04:00
gfiledescriptorbased.h include gio.h, not giotypes.h 2010-02-23 16:23:07 -08:00
gfileenumerator.c syntax fix in documentation 2009-06-18 15:27:42 +02:00
gfileenumerator.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gfileicon.c Use P_ for translatable param spec strings 2009-04-22 16:11:38 +02:00
gfileicon.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gfileinfo-priv.h Add pregenerated ids for TRASH_ORIG_PATH and TRASH_DELETION_DATE 2010-03-08 12:03:40 +01:00
gfileinfo.c gio: Add a boxed type for GFileAttributeMatcher 2010-05-03 20:13:35 +02:00
gfileinfo.h gio: Add a boxed type for GFileAttributeMatcher 2010-05-03 20:13:35 +02:00
gfileinputstream.c Remove mention of non-existing calls from docs 2009-05-25 15:46:35 +02:00
gfileinputstream.h Bug 562613 – Missing const modifier in string parameters 2009-03-03 15:50:13 +00:00
gfileiostream.c Remove mention of non-existing calls from docs 2009-05-25 15:46:35 +02:00
gfileiostream.h Add GFileIOStream class 2009-05-13 14:42:46 +02:00
gfilemonitor.c Support g_main_context_push_thread_default() in gio 2009-07-01 09:02:46 -04:00
gfilemonitor.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gfilenamecompleter.c Add NULL to end of g_filename_complete_get_completions() return value 2009-06-26 22:43:31 -04:00
gfilenamecompleter.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gfileoutputstream.c Remove mention of non-existing calls from docs 2009-05-25 15:46:35 +02:00
gfileoutputstream.h Bug 562613 – Missing const modifier in string parameters 2009-03-03 15:50:13 +00:00
gfilterinputstream.c Remove default implementation of async filter steam ops 2009-12-07 22:14:10 +01:00
gfilterinputstream.h Bug 568394 – dropping the last reference to a stream filter closes the 2009-01-21 14:09:56 +00:00
gfilteroutputstream.c Remove default implementation of async filter steam ops 2009-12-07 22:14:10 +01:00
gfilteroutputstream.h Bug 568394 – dropping the last reference to a stream filter closes the 2009-01-21 14:09:56 +00:00
gicon.c Use G_DEFINE_INTERFACE in gio 2009-12-01 10:44:42 +01:00
gicon.h Bug 555740 - gicon serialization Based on patch from David Zeuthen 2008-10-21 11:51:48 +00:00
ginetaddress.c Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
ginetaddress.h Add g_inet_address_get_native_size (#583205) 2009-05-25 11:33:56 +02:00
ginetsocketaddress.c g_inet_socket_address_to_native: properly zero out sockaddr_in6 2009-08-17 13:20:49 -04:00
ginetsocketaddress.h Add network address and socket types 2009-04-22 08:36:10 -04:00
ginitable.c [gio] Use G_DEFINE_INTERFACE macro 2010-04-21 02:32:43 +02:00
ginitable.h Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
ginputstream.c Fix a lot of clang complaints 2009-09-18 19:20:06 -04:00
ginputstream.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gio-marshal.list GDBus: Catch up with new PropertiesChanged signal 2010-05-13 11:56:15 -04:00
gio-querymodules.c Add gio-querymodule program 2010-01-12 16:34:18 +01:00
gio.h Cleanups 2010-05-14 08:38:07 -04:00
gio.rc.in Put a version info resource also in the gio DLL 2010-02-04 00:37:13 +02:00
gio.symbols GDBus: Remove g_dbus_is_activated() 2010-05-13 17:44:42 -04:00
gioenums.h GDBus: Nuke G_BUS_TYPE_NONE 2010-05-13 18:04:48 -04:00
gioenumtypes.c.template Fix typo. 2007-12-01 23:49:34 +00:00
gioenumtypes.h.template introduce an ENUMPREFIX substitution. 2008-06-23 12:06:39 +00:00
gioerror.c Add GWin32InputStream and GWin32OutputStream classes 2010-04-19 11:54:56 +03:00
gioerror.h Add GWin32InputStream and GWin32OutputStream classes 2010-04-19 11:54:56 +03:00
giomodule-priv.h Split out the extension point registration code to its own function. 2009-02-27 15:22:11 +00:00
giomodule.c Refer to gio-querymodules in the extension point docs 2010-04-18 15:55:14 -04:00
giomodule.h Fix a typo 2010-03-26 11:05:02 -04:00
gioscheduler.c Support g_main_context_push_thread_default() in gio 2009-07-01 09:02:46 -04:00
gioscheduler.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
giostream.c Fix a lot of clang complaints 2009-09-18 19:20:06 -04:00
giostream.h Import GIOStream from gnio 2009-05-13 14:42:38 +02:00
giotypes.h Documentation cleanups 2010-05-14 00:21:39 -04:00
gkeyfilesettingsbackend.c GSettingsBackend API/ABI change 2010-04-28 14:41:42 -05:00
gkeyfilesettingsbackend.h Merge the keyfile settings backend. 2010-04-16 23:57:26 -04:00
gloadableicon.c Use G_DEFINE_INTERFACE in gio 2009-12-01 10:44:42 +01:00
gloadableicon.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
glocaldirectorymonitor.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
glocaldirectorymonitor.h Avoid unnecessary work if mount watching not specified (#585360) 2009-06-15 12:26:57 +02:00
glocalfile.c Define a public documented type for the struct stat used by g_stat() 2010-03-30 19:22:39 +03:00
glocalfile.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
glocalfileenumerator.c Add extension point for adding metadata for local files 2009-06-23 16:35:42 +02:00
glocalfileenumerator.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
glocalfileinfo.c Define a public documented type for the struct stat used by g_stat() 2010-03-30 19:22:39 +03:00
glocalfileinfo.h Add extension point for adding metadata for local files 2009-06-23 16:35:42 +02:00
glocalfileinputstream.c GLocalFileInputStream: Implement GFileDescriptorBased 2010-02-15 13:25:50 +01:00
glocalfileinputstream.h Local file implementation of GFileIOStream and ops 2009-05-13 14:42:57 +02:00
glocalfileiostream.c GLocalFileOutputStream: Implement GFileDescriptorBased 2010-02-15 13:25:50 +01:00
glocalfileiostream.h Local file implementation of GFileIOStream and ops 2009-05-13 14:42:57 +02:00
glocalfilemonitor.c GLocalFileMonitor: Support for GFileMonitorFlags 2010-02-18 15:50:26 +01:00
glocalfilemonitor.h GLocalFileMonitor: Support for GFileMonitorFlags 2010-02-18 15:50:26 +01:00
glocalfileoutputstream.c GLocalFileOutputStream: Implement GFileDescriptorBased 2010-02-15 13:25:50 +01:00
glocalfileoutputstream.h GLocalFileOutputStream: Implement GFileDescriptorBased 2010-02-15 13:25:50 +01:00
glocalvfs.c Bug 561172 – gnome-open fails on local URIs with anchors 2009-03-03 19:02:16 +00:00
glocalvfs.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gmemoryinputstream.c Moved all relevant typedefs into these files. 2008-07-01 06:32:35 +00:00
gmemoryinputstream.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gmemoryoutputstream.c Minor doc clarification 2010-03-08 00:12:33 -05:00
gmemoryoutputstream.h Add properties to GMemoryOutputStream 2010-01-06 17:37:11 -05:00
gmemorysettingsbackend.c GSettingsBackend API/ABI change 2010-04-28 14:41:42 -05:00
gmemorysettingsbackend.h add GMemorySettingsBackend 2010-04-17 01:26:34 -04:00
gmount.c Use G_DEFINE_INTERFACE in gio 2009-12-01 10:44:42 +01:00
gmount.h Add "default location" support to GMount 2009-11-26 16:12:18 +01:00
gmountoperation.c Allow interaction when unmounting mounts 2009-07-05 21:59:38 -04:00
gmountoperation.h Allow interaction when unmounting mounts 2009-07-05 21:59:38 -04:00
gmountprivate.h Add is_supported() to GNativeVolumeMonitorClass so that we can avoid 2007-12-17 16:00:33 +00:00
gnativevolumemonitor.c Add licence headers to gnativevolumemonitor.c/h 2010-03-04 11:02:31 +01:00
gnativevolumemonitor.h Add licence headers to gnativevolumemonitor.c/h 2010-03-04 11:02:31 +01:00
gnetworkaddress.c Fix GNetworkAddress skipping addresses when enumerating 2009-09-11 15:25:34 +01:00
gnetworkaddress.h Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
gnetworkingprivate.h add missing #endif from last patch 2010-04-23 13:54:02 -04:00
gnetworkservice.c Fix make check 2009-05-28 00:30:21 -04:00
gnetworkservice.h GResolver wrappers: GNetworkAddress, GNetworkService, GSocketConnectable 2009-04-22 08:36:38 -04:00
gnullsettingsbackend.c GSettingsBackend API/ABI change 2010-04-28 14:41:42 -05:00
gnullsettingsbackend.h add 'null' GSettings backend 2010-04-15 18:22:14 -04:00
goutputstream.c Flush when closing output stream async 2010-05-12 09:21:06 +02:00
goutputstream.h Add g_output_stream_is_closing 2009-11-23 16:22:52 +01:00
gpollfilemonitor.c Moved all relevant typedefs into these files. 2008-07-01 06:32:35 +00:00
gpollfilemonitor.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gresolver.c Fix UnixWare build by not using "sa_len" as a variable name 2009-12-18 10:26:09 +01:00
gresolver.h Re-run res_init() when resolv.conf changes 2009-08-19 12:08:15 -04:00
gschema-compile.c Add range restriction to gschema-compiler 2010-04-25 20:06:13 -05:00
gschema.dtd Add range restriction to gschema-compiler 2010-04-25 20:06:13 -05:00
gseekable.c Use G_DEFINE_INTERFACE in gio 2009-12-01 10:44:42 +01:00
gseekable.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gsettings-mapping.c GVariant: add bind map for strings to byte arrays 2010-04-25 19:12:14 -05:00
gsettings-mapping.h merge GSettings 2010-04-16 23:23:40 -04:00
gsettings-schema-convert Fix type mapping for float in gsettings-schema-convert 2010-04-20 23:40:22 -04:00
gsettings-tool.c Rename gsettings-tool to gsettings 2010-04-22 01:17:02 -04:00
gsettings.c Document length parameter of g_settings_get/set_strv 2010-05-08 20:14:41 -04:00
gsettings.h Handle non-readable/-writable properties when binding 2010-04-21 12:33:55 -04:00
gsettingsbackend.c GSettings: fix mixed use of a pointer 2010-05-02 14:15:33 -05:00
gsettingsbackend.h GSettingsBackend API/ABI change 2010-04-28 14:41:42 -05:00
gsettingsbackendinternal.h GSettingsBackend API/ABI change 2010-04-28 14:41:42 -05:00
gsettingsschema.c GSettingsSchema: add call to get list of keys 2010-04-16 23:21:08 -04:00
gsettingsschema.h GSettingsSchema: add call to get list of keys 2010-04-16 23:21:08 -04:00
gsimpleasyncresult.c Typo fixes 2010-01-24 20:50:51 -05:00
gsimpleasyncresult.h Make the error const for g_simple_async_result_set_from_error 2009-09-11 15:20:34 +01:00
gsocket.c Do not include "glib.h" in gio files 2010-05-06 17:42:09 +02:00
gsocket.h GSocket: add support for timeouts 2010-04-23 12:31:31 -04:00
gsocketaddress.c GUnixSocketAddress: handle abstract sockets with non-0-padded names 2010-04-22 11:54:41 -04:00
gsocketaddress.h Add GError to g_socket_address_to_native 2009-05-18 21:31:28 +02:00
gsocketaddressenumerator.c Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
gsocketaddressenumerator.h Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
gsocketclient.c Fix leaks in GSocketClient and GThreadedResolver 2009-07-23 16:27:01 -04:00
gsocketclient.h make all APIs that take inet port arguments take a guint16 2009-06-12 15:57:51 +02:00
gsocketconnectable.c [gio] Use G_DEFINE_INTERFACE macro 2010-04-21 02:32:43 +02:00
gsocketconnectable.h Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
gsocketconnection.c typo in documentation 2009-06-08 15:30:28 +02:00
gsocketconnection.h Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
gsocketcontrolmessage.c Misc networking build fixes 2009-06-01 14:21:05 -04:00
gsocketcontrolmessage.h Add padding to new classes 2009-05-15 10:28:30 +02:00
gsocketinputstream.c Support g_main_context_push_thread_default() in gio 2009-07-01 09:02:46 -04:00
gsocketinputstream.h Import all the highlevel socket classes from gnio 2009-05-15 21:26:24 +02:00
gsocketlistener.c g_socket_listener_add_any_inet_port is Since 2.24 2009-11-19 10:19:01 -06:00
gsocketlistener.h Bug 585566 - GSocketListener API issues 2009-11-19 10:04:27 -06:00
gsocketoutputstream.c Support g_main_context_push_thread_default() in gio 2009-07-01 09:02:46 -04:00
gsocketoutputstream.h Import all the highlevel socket classes from gnio 2009-05-15 21:26:24 +02:00
gsocketservice.c Fix multiple returns in gtk-doc comment 2009-08-18 11:34:20 +02:00
gsocketservice.h Documentation and coding style fixups 2009-05-27 18:20:08 -04:00
gsrvtarget.c Fix multiple bugs in g_srv_target_list_sort() 2009-06-01 14:31:48 -04:00
gsrvtarget.h Add GResolver, a glib-ish interface to DNS 2009-04-22 08:36:32 -04:00
gtcpconnection.c Fix a bad void return. #588901 2009-07-30 11:18:35 -04:00
gtcpconnection.h Add support for graceful disconnect to GTcpConnection 2009-05-20 11:19:47 +02:00
gthemedicon.c Remove a dead initialization 2009-09-07 03:14:15 -04:00
gthemedicon.h Reformat g_themed_icon_get_names return type to make gtk-doc work 2009-06-01 22:10:41 +02:00
gthreadedresolver.c Fix leaks in GSocketClient and GThreadedResolver 2009-07-23 16:27:01 -04:00
gthreadedresolver.h Add GResolver, a glib-ish interface to DNS 2009-04-22 08:36:32 -04:00
gthreadedsocketservice.c Fix incorrect freeing of thread pool in GThreadedSocketService (#584255) 2009-06-15 15:56:45 +02:00
gthreadedsocketservice.h Add max_threads argument to g_threaded_socket_service_new 2009-05-18 08:47:49 +02:00
gunionvolumemonitor.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gunionvolumemonitor.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gunixconnection.c include gunixcredentialsmessage from unixsocket 2010-05-14 15:31:14 +02:00
gunixconnection.h Remove the credentials argument from g_unix_connect_send_credentials() 2010-05-13 14:29:39 -04:00
gunixcredentialsmessage.c Documentation cleanups 2010-05-14 00:21:39 -04:00
gunixcredentialsmessage.h Add "Since: 2.26" to all new GDBus API 2010-05-06 16:02:08 -04:00
gunixfdlist.c Doc improvements 2010-05-08 23:28:17 -04:00
gunixfdlist.h Clean up platform-specific includes 2010-05-13 20:29:04 -04:00
gunixfdmessage.c Merge branch 'gdbus-merge' 2010-05-13 23:08:34 -04:00
gunixfdmessage.h Clean up platform-specific includes 2010-05-13 20:29:04 -04:00
gunixinputstream.c Doc improvements 2010-05-08 23:28:17 -04:00
gunixinputstream.h Add "fd" and "close-fd" properties including getters and setters. Patch by 2008-12-08 05:41:43 +00:00
gunixmount.c Support g_main_context_push_thread_default() in gio 2009-07-01 09:02:46 -04:00
gunixmount.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gunixmounts.c Doc improvements 2010-05-08 23:28:17 -04:00
gunixmounts.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gunixoutputstream.c Doc improvements 2010-05-08 23:28:17 -04:00
gunixoutputstream.h Add "fd" and "close-fd" properties including getters and setters. Patch by 2008-12-08 05:41:43 +00:00
gunixresolver.c Re-run res_init() when resolv.conf changes 2009-08-19 12:08:15 -04:00
gunixresolver.h Add GResolver, a glib-ish interface to DNS 2009-04-22 08:36:32 -04:00
gunixsocketaddress.c Doc improvements 2010-05-08 23:28:17 -04:00
gunixsocketaddress.h GUnixSocketAddress: handle abstract sockets with non-0-padded names 2010-04-22 11:54:41 -04:00
gunixvolume.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gunixvolume.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gunixvolumemonitor.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gunixvolumemonitor.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gvfs.c Doc fixes 2008-07-21 02:19:56 +00:00
gvfs.h Move comment to the right place 2009-07-05 22:35:55 -04:00
gvolume.c Use G_DEFINE_INTERFACE in gio 2009-12-01 10:44:42 +01:00
gvolume.h Allow interaction when unmounting mounts 2009-07-05 21:59:38 -04:00
gvolumemonitor.c Remove dead code 2009-09-07 03:01:02 -04:00
gvolumemonitor.h Bug 585591 – Starting/stopping drives 2009-06-15 10:59:43 -04:00
gwin32appinfo.c Bug 545350 – GAppInfo deletion Bug 545351 – Reset associations for 2008-09-26 19:57:36 +00:00
gwin32appinfo.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gwin32inputstream.c Add GWin32InputStream and GWin32OutputStream classes 2010-04-19 11:54:56 +03:00
gwin32inputstream.h Add GWin32InputStream and GWin32OutputStream classes 2010-04-19 11:54:56 +03:00
gwin32mount.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gwin32mount.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gwin32outputstream.c Add GWin32InputStream and GWin32OutputStream classes 2010-04-19 11:54:56 +03:00
gwin32outputstream.h Add GWin32InputStream and GWin32OutputStream classes 2010-04-19 11:54:56 +03:00
gwin32resolver.c GResolver: fix Windows 2000 workaround 2010-03-03 08:35:32 -05:00
gwin32resolver.h Add GResolver, a glib-ish interface to DNS 2009-04-22 08:36:32 -04:00
gwin32volumemonitor.c Fix up GIO docs 2009-11-29 22:54:16 -05:00
gwin32volumemonitor.h big header formatting cleanup: indentation, vtable formatting, consistent 2008-09-02 19:05:58 +00:00
gzlibcompressor.c Do not include "glib.h" in gio files 2010-05-06 17:42:09 +02:00
gzlibcompressor.h Add missign single include guards 2010-02-21 16:12:35 -05:00
gzlibdecompressor.c Do not include "glib.h" in gio files 2010-05-06 17:42:09 +02:00
gzlibdecompressor.h Add missign single include guards 2010-02-21 16:12:35 -05:00
Makefile.am Merge branch 'gdbus-merge' 2010-05-13 23:08:34 -04:00
makefile.msc Updated msvc build files 2009-05-30 15:29:23 +02:00
makegioalias.pl Makefile.am. build with G_DISABLE_SINGLE_INCLUDES to prevent code from 2008-05-05 15:12:13 +00:00
pltcheck.sh GDBus: Add more symbols to pltcheck.sh's SKIP variable 2010-05-06 17:41:31 -04:00