summaryrefslogtreecommitdiff
path: root/gio/gunixfdmessage.h
Commit message (Collapse)AuthorAgeFilesLines
* gio: Add SPDX license headers automaticallyPhilip Withnall2022-05-181-0/+2
| | | | | | | | | | | | | | Add SPDX license (but not copyright) headers to all files which follow a certain pattern in their existing non-machine-readable header comment. This commit was entirely generated using the command: ``` git ls-files gio/*.[ch] | xargs perl -0777 -pi -e 's/\n \*\n \* This library is free software; you can redistribute it and\/or\n \* modify it under the terms of the GNU Lesser General Public/\n \*\n \* SPDX-License-Identifier: LGPL-2.1-or-later\n \*\n \* This library is free software; you can redistribute it and\/or\n \* modify it under the terms of the GNU Lesser General Public/igs' ``` Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #1415
* gio/: LGPLv2+ -> LGPLv2.1+SĂ©bastien Wilmet2017-05-291-4/+4
| | | | | | | | | | | | | | | | | Sub-directories inside gio/ already processed in a previous commit: - fam/ - gdbus-2.0/ (which contains only codegen/) - gvdb/ - inotify/ - tests/ - win32/ - xdgmime/ Other sub-directories inside gio/: - completion/: no license headers - kqueue/: not LGPL, BSD-style license https://bugzilla.gnome.org/show_bug.cgi?id=776504
* gio: add support for g_auto() and g_autoptr()Ryan Lortie2015-01-301-0/+2
| | | | | | Add support to libgio types for the new cleanup macros. https://bugzilla.gnome.org/show_bug.cgi?id=743640
* Updated FSF's addressDaniel Mustieles2014-01-311-3/+1
|
* various: add GLIB_AVAILABLE_IN_ALL everywhere elseRyan Lortie2013-01-131-0/+6
| | | | | | | | | | | Add the GLIB_AVAILABLE_IN_ALL annotation to all old functions (that haven't already been annotated with the GLIB_AVAILABLE_IN_* macros or a deprecation macro). If we discover in the future that we cannot use only one macro on Windows, it will be an easy sed patch to fix that. https://bugzilla.gnome.org/show_bug.cgi?id=688681
* Clean up platform-specific includesMatthias Clasen2010-05-131-1/+1
| | | | | The problem was pointed out in bug 618029. To solve it, we moved the GUnixFDList typedef to giotypes.h.
* Bug 601637 - add GUnixFDListRyan Lortie2009-11-241-1/+6
| | | | | | | | change GUnixFDMessage to contain a GUnixFDList. add test case for GUnixFDMessage and GUnixFDList. update docs.
* Documentation and coding style fixupsMatthias Clasen2009-05-271-3/+3
| | | | Lots of pedanic changes.
* Add padding to new classesAlexander Larsson2009-05-151-0/+6
|
* Import GInitable, GSocket and dependencies from gnioAlexander Larsson2009-05-141-0/+67
This adds: GInitable - failable object constructor interface GAsyncInitable - async failable object constructor interface GSocket - Platform independent lowlevel berkely socket style object GSocketControlMessage - For passing control messages over GSocket GUnixFDMessage - unix fd passing socket control message Some changes were done during the import from gnio to make things work in glib. For instance, types were moved to other headers, header file boiler plate were updated to glib style and gio.symbols stuff was added.