mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
printing: Show Avahi printers on IPv6 network
Create correct URIs for printers on IPv6 networks.
This commit is contained in:
parent
b9e189150b
commit
36d2324891
@ -2533,6 +2533,7 @@ avahi_resolver_found_cb (GaServiceResolver *resolver,
|
||||
{
|
||||
GtkPrintBackendCups *backend = GTK_PRINT_BACKEND_CUPS (user_data);
|
||||
AvahiStringList *item;
|
||||
const gchar *protocol_string;
|
||||
gchar host[AVAHI_ADDRESS_STR_MAX];
|
||||
gchar *suffix = NULL;
|
||||
gchar *printer_uri;
|
||||
@ -2546,9 +2547,14 @@ avahi_resolver_found_cb (GaServiceResolver *resolver,
|
||||
if (suffix)
|
||||
{
|
||||
if (g_strcmp0 (type, "_ipp._tcp") == 0)
|
||||
printer_uri = g_strdup_printf ("ipp://%s:%u/%s", host, port, suffix);
|
||||
protocol_string = "ipp";
|
||||
else
|
||||
printer_uri = g_strdup_printf ("ipps://%s:%u/%s", host, port, suffix);
|
||||
protocol_string = "ipps";
|
||||
|
||||
if (protocol == GA_PROTOCOL_INET6)
|
||||
printer_uri = g_strdup_printf ("%s://[%s]:%u/%s", protocol_string, host, port, suffix);
|
||||
else
|
||||
printer_uri = g_strdup_printf ("%s://%s:%u/%s", protocol_string, host, port, suffix);
|
||||
|
||||
cups_request_avahi_printer_info (printer_uri,
|
||||
host,
|
||||
|
Loading…
Reference in New Issue
Block a user