X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgnetworkmonitor.h;h=9cbb3c2a8563f44af29563a7993dbdb2c37a214e;hb=f2786908a8858ec9d063e8fae7e4b2d8d612b682;hp=6a53a087c36f7125b33c2cbebc3cf6c6ad693eb6;hpb=e1b99b2ddcf21f5dab26ad74afa6935eaf70028e;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gnetworkmonitor.h b/gio/gnetworkmonitor.h index 6a53a08..9cbb3c2 100644 --- a/gio/gnetworkmonitor.h +++ b/gio/gnetworkmonitor.h @@ -13,9 +13,7 @@ * 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__ @@ -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);