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

[vidalia-svn] r4121: Add ports 7000 and 7001 to the list of ports excluded by the (in vidalia/trunk: . src/vidalia/config)



Author: edmanm
Date: 2009-09-12 15:11:18 -0400 (Sat, 12 Sep 2009)
New Revision: 4121

Modified:
   vidalia/trunk/CHANGELOG
   vidalia/trunk/src/vidalia/config/ServerPage.cpp
Log:

Add ports 7000 and 7001 to the list of ports excluded by the IRC
category in the exit policy configuration tab. (Ticket #517)


Modified: vidalia/trunk/CHANGELOG
===================================================================
--- vidalia/trunk/CHANGELOG	2009-09-10 17:41:03 UTC (rev 4120)
+++ vidalia/trunk/CHANGELOG	2009-09-12 19:11:18 UTC (rev 4121)
@@ -1,3 +1,8 @@
+0.2.5   xx-xxx-2009
+  o Add ports 7000 and 7001 to the list of ports excluded by the IRC
+    category in the exit policy configuration tab. (Ticket #517)
+
+
 0.2.4   07-Sep-2009
   o Split the message log into "Basic" and "Advanced" views. The
     "Advanced" view contains standard log messages from Tor, while the new

Modified: vidalia/trunk/src/vidalia/config/ServerPage.cpp
===================================================================
--- vidalia/trunk/src/vidalia/config/ServerPage.cpp	2009-09-10 17:41:03 UTC (rev 4120)
+++ vidalia/trunk/src/vidalia/config/ServerPage.cpp	2009-09-12 19:11:18 UTC (rev 4121)
@@ -64,8 +64,8 @@
 #define PORTS_IM     (QStringList() << "706" << "1863" << "5050" << "5190" \
                                     << "5222" << "5223" << "8300" << "8888")
 /** Ports represented by the "Internet Relay Chat" checkbox. 
- * (6660-6669,6697) */
-#define PORTS_IRC    (QStringList() << "6660-6669" << "6697")
+ * (6660-6669,6697,7000-7001) */
+#define PORTS_IRC    (QStringList() << "6660-6669" << "6697" << "7000-7001")
 
 
 /** Constructor */