[gnome-network] r25550 - in /desktop/unstable/gnome-nettool/debian: changelog patches/02_ping_icmp_req.patch patches/series



Author: joss
Date: Sat Nov 13 13:00:28 2010
New Revision: 25550

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=25550
Log:
02_ping_icmp_req.patch: new patch. Handle the output from 
iputils-ping correctly. Closes: #602972.

Added:
    desktop/unstable/gnome-nettool/debian/patches/02_ping_icmp_req.patch
Modified:
    desktop/unstable/gnome-nettool/debian/changelog
    desktop/unstable/gnome-nettool/debian/patches/series

Modified: desktop/unstable/gnome-nettool/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-nettool/debian/changelog?rev=25550&op=diff
==============================================================================
--- desktop/unstable/gnome-nettool/debian/changelog [utf-8] (original)
+++ desktop/unstable/gnome-nettool/debian/changelog [utf-8] Sat Nov 13 13:00:28 2010
@@ -1,3 +1,10 @@
+gnome-nettool (2.30.0-3) unstable; urgency=low
+
+  * 02_ping_icmp_req.patch: new patch. Handle the output from 
+    iputils-ping correctly. Closes: #602972.
+
+ -- Josselin Mouette <joss debian org>  Sat, 13 Nov 2010 13:59:09 +0100
+
 gnome-nettool (2.30.0-2) unstable; urgency=low
 
   * Drop the alternative dependency on traceroute. Closes: #458723.

Added: desktop/unstable/gnome-nettool/debian/patches/02_ping_icmp_req.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-nettool/debian/patches/02_ping_icmp_req.patch?rev=25550&op=file
==============================================================================
--- desktop/unstable/gnome-nettool/debian/patches/02_ping_icmp_req.patch (added)
+++ desktop/unstable/gnome-nettool/debian/patches/02_ping_icmp_req.patch [utf-8] Sat Nov 13 13:00:28 2010
@@ -1,0 +1,71 @@
+From 9af2e18755725dc47ae8eb2867e3f038c298bc09 Mon Sep 17 00:00:00 2001
+From: Josselin Mouette <joss debian org>
+Date: Sat, 13 Nov 2010 13:53:12 +0100
+Subject: [PATCH] [ping] Handle output with icmp_req
+
+iputils-ping displays icmp_req= instead of icmp_seq=. Handle the two
+outputs correctly.
+---
+ src/ping.c |    7 ++++---
+ src/ping.h |    8 ++++----
+ 2 files changed, 8 insertions(+), 7 deletions(-)
+
+diff --git a/src/ping.c b/src/ping.c
+index 2c973c3..74f3c19 100644
+--- a/src/ping.c
++++ b/src/ping.c
+@@ -405,7 +405,7 @@ ping_foreach_with_tree (Netinfo * netinfo, gchar * line, gint len,
+ 
+ 	if (len > 0) {		/* there are data to show */
+ 		count = strip_line (line, &data, netinfo);
+-		if ((count == 5) || (count == 6)) {
++		if ((count == 5) || (count == 7)) {
+ 
+ 			/* Creation of GtkTreeView */
+ 			gtk_tree_view_set_rules_hint (GTK_TREE_VIEW
+@@ -519,6 +519,7 @@ static gint
+ strip_line (gchar * line, ping_data * data, Netinfo * netinfo)
+ {
+ 	gint count;
++	gchar dummy_buf[3];
+ 
+ 	if (netinfo_get_ip_version (netinfo) == IPV4)
+ 		line = g_strdelimit (line, ":", ' ');
+@@ -530,9 +531,9 @@ strip_line (gchar * line, ping_data * data, Netinfo * netinfo)
+ 			&(data)->bytes, data->ip, &(data)->icmp_seq,
+ 			data->srtt, data->unit);
+ #endif
+-#ifdef PING_PARAMS_6
++#ifdef PING_PARAMS_7
+ 	count = sscanf (line, PING_FORMAT,
+-			&(data)->bytes, data->ip, &(data)->icmp_seq,
++			&(data)->bytes, data->ip, dummy_buf, &(data)->icmp_seq,
+ 			&(data)->ttl, data->srtt, data->unit);
+ #endif
+ 	if (count != 5 && count != 6) {
+diff --git a/src/ping.h b/src/ping.h
+index 0d2e068..53dd5de 100644
+--- a/src/ping.h
++++ b/src/ping.h
+@@ -28,14 +28,14 @@
+     /*  <path to program> ping -b [-c <count>] -n <host> */
+ #   define PING_PROGRAM_FORMAT "%s ping -b%s-n %s"
+ #   define PING_PROGRAM_FORMAT_6 "%s ping6%s-n %s"
+-#   define PING_FORMAT "%d bytes from %s icmp_seq=%d ttl=%d time=%s %s"
+-#   define PING_PARAMS_6
++#   define PING_FORMAT "%d bytes from %s icmp_%3c=%d ttl=%d time=%s %s"
++#   define PING_PARAMS_7
+ #elif defined(__OSF__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
+     /*  <path to program> ping [-c <count>] -n <host> */
+ #   define PING_PROGRAM_FORMAT "%s ping%s-n %s"
+ #   define PING_PROGRAM_FORMAT_6 "%s ping6%s-n %s"
+-#   define PING_FORMAT "%d bytes from %s icmp_seq=%d ttl=%d time=%s %s"
+-#   define PING_PARAMS_6
++#   define PING_FORMAT "%d bytes from %s icmp_%3c=%d ttl=%d time=%s %s"
++#   define PING_PARAMS_7
+ #elif defined(__sun__) 
+     /*  <path to program> ping -s -n <host> [<count>] */
+ #   define PING_PROGRAM_FORMAT "%s ping -s -n %s 56%s"
+-- 
+1.7.2.3
+

Modified: desktop/unstable/gnome-nettool/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-nettool/debian/patches/series?rev=25550&op=diff
==============================================================================
--- desktop/unstable/gnome-nettool/debian/patches/series [utf-8] (original)
+++ desktop/unstable/gnome-nettool/debian/patches/series [utf-8] Sat Nov 13 13:00:28 2010
@@ -1,1 +1,2 @@
 01_network-manager.patch
+02_ping_icmp_req.patch




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]