X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgnetworkmonitor.h;h=9cbb3c2a8563f44af29563a7993dbdb2c37a214e;hb=7103484017ff000d01ed94567539d37fa09b32b2;hp=995ff5458c94057a58f19a505401c11a517a37b9;hpb=1cc7162c9560796829db457f7ea5fdd218a0ae46;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gnetworkmonitor.h b/gio/gnetworkmonitor.h index 995ff54..9cbb3c2 100644 --- a/gio/gnetworkmonitor.h +++ b/gio/gnetworkmonitor.h @@ -13,18 +13,16 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . */ +#ifndef __G_NETWORK_MONITOR_H__ +#define __G_NETWORK_MONITOR_H__ + #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) #error "Only can be included directly." #endif -#ifndef __G_NETWORK_MONITOR_H__ -#define __G_NETWORK_MONITOR_H__ - #include G_BEGIN_DECLS @@ -33,7 +31,7 @@ G_BEGIN_DECLS * G_NETWORK_MONITOR_EXTENSION_POINT_NAME: * * Extension point for network status monitoring functionality. - * See Extending GIO. + * See [Extending GIO][extending-gio]. * * Since: 2.30 */ @@ -71,17 +69,21 @@ GType g_network_monitor_get_type (void) G_GNUC_CONST; GLIB_AVAILABLE_IN_2_32 GNetworkMonitor *g_network_monitor_get_default (void); +GLIB_AVAILABLE_IN_ALL gboolean g_network_monitor_get_network_available (GNetworkMonitor *monitor); +GLIB_AVAILABLE_IN_ALL gboolean g_network_monitor_can_reach (GNetworkMonitor *monitor, GSocketConnectable *connectable, GCancellable *cancellable, GError **error); +GLIB_AVAILABLE_IN_ALL void g_network_monitor_can_reach_async (GNetworkMonitor *monitor, GSocketConnectable *connectable, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); +GLIB_AVAILABLE_IN_ALL gboolean g_network_monitor_can_reach_finish (GNetworkMonitor *monitor, GAsyncResult *result, GError **error);