2012-09-03 20:04:38 +02:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
|
|
|
|
*
|
|
|
|
* Copyright 2012 Red Hat, Inc,
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2012-09-06 14:06:01 +02:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
2012-09-03 20:04:38 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-23 12:57:27 +01:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2012-09-03 20:04:38 +02:00
|
|
|
*
|
|
|
|
* Author: Marek Kasik <mkasik@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2018-06-15 14:16:20 +12:00
|
|
|
#pragma once
|
2012-09-03 20:04:38 +02:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include "pp-utils.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-06-15 14:13:15 +12:00
|
|
|
#define PP_TYPE_HOST (pp_host_get_type ())
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (PpHost, pp_host, PP, HOST, GObject)
|
2012-09-03 20:04:38 +02:00
|
|
|
|
|
|
|
struct _PpHostClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
};
|
|
|
|
|
2018-06-15 14:13:15 +12:00
|
|
|
#define PP_HOST_UNSET_PORT -1
|
|
|
|
#define PP_HOST_DEFAULT_IPP_PORT 631
|
|
|
|
#define PP_HOST_DEFAULT_JETDIRECT_PORT 9100
|
|
|
|
#define PP_HOST_DEFAULT_LPD_PORT 515
|
2012-09-03 20:04:38 +02:00
|
|
|
|
2014-07-17 15:25:01 +02:00
|
|
|
PpHost *pp_host_new (const gchar *hostname);
|
2012-09-03 20:04:38 +02:00
|
|
|
|
|
|
|
void pp_host_get_snmp_devices_async (PpHost *host,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2020-06-29 11:42:24 +12:00
|
|
|
GPtrArray *pp_host_get_snmp_devices_finish (PpHost *host,
|
2012-09-03 20:04:38 +02:00
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
void pp_host_get_remote_cups_devices_async (PpHost *host,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2020-06-29 11:42:24 +12:00
|
|
|
GPtrArray *pp_host_get_remote_cups_devices_finish (PpHost *host,
|
2012-09-03 20:04:38 +02:00
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2014-07-21 10:49:37 +02:00
|
|
|
void pp_host_get_jetdirect_devices_async (PpHost *host,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2020-06-29 11:42:24 +12:00
|
|
|
GPtrArray *pp_host_get_jetdirect_devices_finish (PpHost *host,
|
2014-07-21 10:49:37 +02:00
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2014-07-30 15:37:46 +02:00
|
|
|
void pp_host_get_lpd_devices_async (PpHost *host,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2020-06-29 11:42:24 +12:00
|
|
|
GPtrArray *pp_host_get_lpd_devices_finish (PpHost *host,
|
2014-07-30 15:37:46 +02:00
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2012-09-03 20:04:38 +02:00
|
|
|
G_END_DECLS
|