summaryrefslogtreecommitdiff
path: root/gio/gsocketconnectable.h
Commit message (Collapse)AuthorAgeFilesLines
* docs: Fix pluralised links to symbolsPhilip Withnall2019-03-151-1/+1
| | | | | | | | | | | While gtk-doc can currently detect a link to a symbol which has been pluralised by adding ‘s’, it can’t detect when ‘es’ is added. While that’s being fixed, reword the documentation so the links are generated correctly anyway. gtk-doc fix here: https://gitlab.gnome.org/GNOME/gtk-doc/merge_requests/22 Signed-off-by: Philip Withnall <withnall@endlessm.com>
* docs: Drop unnecessary <!-- -->s from gtk-doc commentsPhilip Withnall2017-11-291-1/+1
| | | | | | | | | Putting a <!-- --> in plural<!-- -->s was an old hack used to fix linking the symbol with gtk-doc when gtk-doc didn’t know about plural forms. gtk-doc does now know about plural forms, so the hack can be removed. Signed-off-by: Philip Withnall <withnall@endlessm.com>
* gio/: LGPLv2+ -> LGPLv2.1+Sébastien Wilmet2017-05-291-1/+1
| | | | | | | | | | | | | | | | | 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
* Doc: fix some gtk-doc warningsXavier Claessens2015-10-301-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=755364
* gio: Fix version of "Since" annotationRico Tzschichholz2015-10-251-1/+1
|
* gsocketconnectable: Add a to_string() virtual methodPhilip Withnall2015-10-131-0/+6
| | | | | | | | | | | | | | | | Add string serialisation functions for GNetworkAddress, GSocketAddress, GUnixSocketAddress, GInetSocketAddress, GNetworkService and GSocketConnectable. These are intended for use in debug output, not for serialisation in network or disc protocols. They are implemented as a new virtual method on GSocketConnectable: g_socket_connectable_to_string(). GInetSocketAddress and GUnixSocketAddress now implement GSocketConnectable directly to implement to_string(). Previously they implemented it via their abstract parent class, GSocketAddress. https://bugzilla.gnome.org/show_bug.cgi?id=737116
* Updated FSF's addressDaniel Mustieles2014-01-311-3/+1
|
* various: add GLIB_AVAILABLE_IN_ALL everywhere elseRyan Lortie2013-01-131-0/+3
| | | | | | | | | | | 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
* Move single-include guards inside include guardsMatthias Clasen2012-12-271-3/+3
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* Added proxy_enumerate method to GSocketConnectableNicolas Dufresne2010-08-191-1/+7
| | | | Reviewed-by: Dan Winship <danw@gnome.org>
* Documentation and coding style fixupsMatthias Clasen2009-05-271-2/+2
| | | | Lots of pedanic changes.
* GResolver wrappers: GNetworkAddress, GNetworkService, GSocketConnectableDan Winship2009-04-221-0/+68
Higher-level wrappers around GResolver. GSocketConnectable provides an interface for synchronously or asynchronously iterating multiple socket addresses, with GNetworkAddress and GNetworkService providing interfaces based on hostname and SRV record resolution. Part of #548466.