gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r688 - GNUnet-docs/WWW/test


From: durner
Subject: [GNUnet-SVN] r688 - GNUnet-docs/WWW/test
Date: Mon, 25 Apr 2005 12:00:46 -0700 (PDT)

Author: durner
Date: 2005-04-25 11:57:50 -0700 (Mon, 25 Apr 2005)
New Revision: 688

Added:
   GNUnet-docs/WWW/test/gnunet-logo-color.png
   GNUnet-docs/WWW/test/gnunet-logo-color.xcf
   GNUnet-docs/WWW/test/gnunet-setup-gconf.png
   GNUnet-docs/WWW/test/gnunet-setup-wizard.png
   GNUnet-docs/WWW/test/index.php
   GNUnet-docs/WWW/test/news_20041225.inc
   GNUnet-docs/WWW/test/news_20050123.inc
   GNUnet-docs/WWW/test/news_20050125.inc
   GNUnet-docs/WWW/test/news_20050126.inc
   GNUnet-docs/WWW/test/news_20050209.inc
   GNUnet-docs/WWW/test/news_20050224.inc
   GNUnet-docs/WWW/test/news_20050227.inc
   GNUnet-docs/WWW/test/news_20050228.inc
   GNUnet-docs/WWW/test/overview.fig
   GNUnet-docs/WWW/test/overview.png
Log:
add new files to test site

Added: GNUnet-docs/WWW/test/gnunet-logo-color.png
===================================================================
(Binary files differ)


Property changes on: GNUnet-docs/WWW/test/gnunet-logo-color.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: GNUnet-docs/WWW/test/gnunet-logo-color.xcf
===================================================================
(Binary files differ)


Property changes on: GNUnet-docs/WWW/test/gnunet-logo-color.xcf
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: GNUnet-docs/WWW/test/gnunet-setup-gconf.png
===================================================================
(Binary files differ)


Property changes on: GNUnet-docs/WWW/test/gnunet-setup-gconf.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: GNUnet-docs/WWW/test/gnunet-setup-wizard.png
===================================================================
(Binary files differ)


Property changes on: GNUnet-docs/WWW/test/gnunet-setup-wizard.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: GNUnet-docs/WWW/test/index.php
===================================================================
--- GNUnet-docs/WWW/test/index.php      2005-04-25 18:48:28 UTC (rev 687)
+++ GNUnet-docs/WWW/test/index.php      2005-04-25 18:57:50 UTC (rev 688)
@@ -0,0 +1,83 @@
+<?php
+include("scripts.php3");
+$title = "GNUnet";
+$description="GNUnet - an anonymous distributed backup system :-)";
+include("html_header.php3");
+
+H2("About GNUnet");
+gnunetlogo();
+
+W("GNUnet is a framework for secure peer-to-peer networking that does not use 
any centralized or otherwise trusted services.");
+W("A first service implemented on top of the networking layer allows anonymous 
censorship-resistant file-sharing.");
+W("GNUnet uses a simple, excess-based economic model to allocate resources.");
+W("Peers in GNUnet monitor each others behavior with respect to resource 
usage; peers that contribute to the network are rewarded with better service.");
+P();
+
+W("GNUnet is part of the %s.",
+  extlink_("http://www.gnu.org/","GNU project"));
+W("Our official GNU website can be found at %s.",
+  
extlink_("http://www.gnu.org/software/gnunet/","http://www.gnu.org/software/gnunet/";));
+W("GNUnet can be downloaded from this site or the %s.",
+  extlink_("http://www.gnu.org/prep/ftp.html","GNU mirrors"));
+
+P();
+H2("News");
+W("Older news can be found %s.\n",
+  intlink_("old_news.php3", "here"));
+echo "<dl>\n";
+
+function convert_time($mysql_timestamp){
+if (ereg("^([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})" .
+           "([0-9]{2})([0-9]{2})",$mysql_timestamp,$res)):
+  $year=$res[1];
+  $month=$res[2];
+  $day=$res[3];
+  $hour=$res[4];
+  $min=$res[5];
+  $sec=$res[6];
+
+ return(array($year,$month,$day,$hour,$min,$sec));
+  else:
+     return(false);
+ endif;
+}
+
+// definition: news is what is less than 3 months old :-)
+$query = "SELECT title,include,posted FROM news " .
+   "WHERE TO_DAYS(NOW())-TO_DAYS(posted) < 90 " .
+   "ORDER BY posted DESC";
+$result = mysql_query($query, $connection);
+$num = 0;
+if ($result) {
+  $num = mysql_numrows($result);
+}
+for ($i=0;$i<$num;$i++) {
+  $row = mysql_fetch_array($result);
+  $pd = convert_time($row["posted"]);
+  echo "<dt>" . $pd[0] . "-" . $pd[1] . "-" . $pd[2] .  ": " . 
W_($row["title"]) . "</dt>\n";
+  echo "<dd>\n";
+  include($row["include"]);
+  echo "</dd>\n";
+}
+echo "</dl>\n";
+P();
+H2("Roadmap");
+W("Here is the current development plan:");
+echo "<ul>\n";
+LI("fix %s",
+   extlink_("https://gnunet.org/mantis/","bugs";));
+LI("improve handling of pseudonyms (manage reputation in namespaces)");
+LI("add testbed harness to allow automated testing and profiling (%s)",
+   extlink_("mailto:address@hidden","contact";));
+LI("extend GTK UI (delete, statistics, configuration, recursive insertion)");
+LI("add download-daemon that manages ongoing/completed/stalled downloads");
+echo "</ul>\n";
+P();
+H2("Contact");
+W("GNUnet is developed by %s.",
+  extlink_("http://www.gnu.org/software/gnunet/","the GNUnet developers"));
+W("For questions about GNUnet send E-Mail to %s.",
+  extlink_("mailto:address@hidden","address@hidden";));
+
+include("html_footer.php3");
+?>

Added: GNUnet-docs/WWW/test/news_20041225.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20041225.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20041225.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,9 @@
+<?php
+W("Version %s of %s has been released.",
+  
ARRAY(extlink_("http://ovmj.org/libextractor/download/libextractor-0.4.0.tar.gz";,
+                "0.4.0"),
+       extlink_("http://ovmj.org/libextractor/","libextractor";)));
+W("This release improves support for different character encodings.");
+W("Furthermore, the genre is now extracted from id3 tags.");
+W("Also, compressed PNG comments are now supported.");
+?>

Added: GNUnet-docs/WWW/test/news_20050123.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20050123.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20050123.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,21 @@
+<?php
+W("Download %s.",
+  extlink_("http://ovmj.org/GNUnet/download/GNUnet-0.6.6.tar.bz2";,
+          "GNUnet 0.6.6 here"));
+W("This release features:");
+echo "<ul>";
+LI("various OS X bugfixes");
+LI("big-endian problems with CRC32 when downloading");
+LI("a download manager for gnunet-gtk");
+LI("support for the latest pthread updates");
+LI("build-in log rotation");
+LI("working progressbar when downloading directories larger than 2 GB");
+LI("improved database size estimates for the SQLite backend");
+LI("crash of gnunetd after deletion of indexed file");
+LI("various other minor bugs were resolved");
+echo "</ul>";
+W("Most importantly, the new release is also now available for Win32 systems, 
you can find the windows setup binaries %s.",
+  extlink_("http://ovmj.org/GNUnet/download/win/Setup-0.6.6.exe";, "here"));
+W("All protocols and storage formats are unchanged (and thus compatible).");
+W("Updating from 0.6.5 should be trivial.");
+?>

Added: GNUnet-docs/WWW/test/news_20050125.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20050125.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20050125.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,8 @@
+<?php
+W("The new webpage features the %s for blogs, forums, polls, stories and 
collaborative documentation writing.",
+  extlink_("/drupal/", "drupal"));
+W("The CVS repositories are history, from now on GNUnet uses %s.",
+  extlink_("http://subversion.tigris.org/";, "subversion"));
+W("You can access the GNUnet subversion repository %s.",
+  extlink_("https://gnunet.org/svn/";, "here"));
+?>

Added: GNUnet-docs/WWW/test/news_20050126.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20050126.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20050126.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,8 @@
+<?php
+W("Version %s of %s has been released.",
+  
ARRAY(extlink_("http://gnunet.org/libextractor/download/libextractor-0.4.1.tar.gz";,
+                "0.4.1"),
+       extlink_("http://gnunet.org/libextractor/","libextractor";)));
+W("This release fixes a security issue (inherited from xpdf).");
+W("It also extracts more meta-data from files of TAR or QuickTime format.");
+?>

Added: GNUnet-docs/WWW/test/news_20050209.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20050209.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20050209.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,16 @@
+<?php
+W("Download %s.",
+  extlink_("http://gnunet.org/download/GNUnet-0.6.6a.tar.bz2";,
+          "GNUnet 0.6.6a here"));
+W("This release features:");
+echo "<ul>";
+LI("deletion of non-log files by logrotation");
+LI("fixes deadlock (rare)");
+LI("fixes assertion failure (crash, rare)");
+LI("improvements for GNUnet on OS X");
+LI("various Win32 bugfixes and improvements");
+LI("other minor problems");
+echo "</ul>";
+W("All protocols and storage formats are unchanged (and thus compatible).");
+W("Updating from 0.6.6 should be trivial.");
+?>

Added: GNUnet-docs/WWW/test/news_20050224.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20050224.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20050224.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,10 @@
+<?php
+W("Version %s of %s has been released.",
+  
ARRAY(extlink_("http://gnunet.org/libextractor/download/libextractor-0.4.2.tar.gz";,
+                "0.4.2"),
+       extlink_("http://gnunet.org/libextractor/","libextractor";)));
+
+W("This release fixes some bugs in the ID3, PDF, PNG and REAL extractors.");
+W("The REAL extractor now also handles the new Helix formats.");
+W("libextractor can now also be used to extract thumbnails from images (using 
ImageMagick).");
+?>

Added: GNUnet-docs/WWW/test/news_20050227.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20050227.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20050227.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,54 @@
+<?php
+W("Download %s here.",
+  extlink_("http://gnunet.org/download/GNUnet-0.7.0pre0.tar.bz2";,
+          "GNUnet 0.7.0pre0"));
+W("This is <strong>not</strong> your usual GNUnet release.");
+W("You are strongly encouraged to read this before trying to use it.");
+W("Starting with the good news, these are the highlights:");
+
+echo "<ul>";
+LI("highly modular and pluggable architecture");
+LI("extensive test-suite for testing individual modules");
+LI("improved session key exchange protocol");
+LI("support for peer-to-peer messages up to 64k");
+LI("remote procedure call API");
+LI("distributed hash table API");
+LI("simple but powerful APIs for writing GNUnet user interfaces");
+LI("clear separation of anonymous routing and file-sharing concerns");
+LI("new meta-data encoding allows arbitrary meta-data including thumbnails");
+LI("new database abstraction for improved performance (only MySQL and SQLite 
supported)");
+LI("new ECRS encoding with KBlocks for improved security against 
router-in-the-middle data corruption attacks");
+LI("content expiration (after originator dies) without breaking properties of 
the GNUnet anonymity protocol");
+LI("different anonymity requirements can be specified for each shared file");
+LI("improved internationalization and localization");
+echo "</ul>";
+
+W("This was achieved by doing an almost complete re-write of the code.");
+W("The list is incomplete in that for the final 0.7.0 release additional 
changes are planned.");
+W("In particular various aspects of how content and peer-to-peer messages are 
encoded will change (a bit more).");
+W("In consequence, this release:");
+echo "<ul>";
+LI("breaks compatibility with all previous versions");
+LI("will also not be compatible with any future version");
+LI("does not feature a graphical user interface");
+LI("will not bootstrap (as in, there is no hostlist to find other peers)");
+LI("has terrible performance (intentionally for debugging)");
+LI("has known critical bugs");
+echo "</ul>";
+
+W("So why release the code at this stage?");
+W("The answer is, this is a pre-release with the goal to:");
+echo "<ul>";
+LI("give packagers a chance to update their build-process");
+LI("give developers an opportunity to create (graphical) user interfaces based 
on the new APIs");
+LI("get some early feedback about critical problems");
+LI("find portability problems for platforms that we do not have access to");
+echo "</ul>";
+W("In summary, run this code if you feel adventurous.");
+W("If you want to actually <strong>use</strong> GNUnet, stick to the 0.6.x 
branch.");
+W("Please report any bugs you find to %s.",
+  extlink_("https://gnunet.org/mantis/";, "mantis"));
+W("Note that all protocols and storage formats have changed, so you may want 
to make sure that when trying 0.7.0 you do not accidentially overwrite or use 
files from 0.6.x.");
+W("Migrating data from 0.6.x is not possible.");
+W("However, you can run 0.7.x and 0.6.x in parallel if you use different ports 
and directories.");
+?>

Added: GNUnet-docs/WWW/test/news_20050228.inc
===================================================================
--- GNUnet-docs/WWW/test/news_20050228.inc      2005-04-25 18:48:28 UTC (rev 
687)
+++ GNUnet-docs/WWW/test/news_20050228.inc      2005-04-25 18:57:50 UTC (rev 
688)
@@ -0,0 +1,18 @@
+<?php
+W("Download %s.",
+  extlink_("http://gnunet.org/download/GNUnet-0.6.6b.tar.bz2";,
+          "GNUnet 0.6.6b here"));
+W("This release fixes many bugs:");
+echo "<ul>";
+LI("problems with gnunet-insert and libextractor");
+LI("problems with descriptions for inserted directories in gnunet-gtk");
+LI("problems with the copy files button in gnunet-gtk for uploading 
directories");
+LI("crash of gnunetd with gnunet-download and the -a option");
+LI("crash with libgcrypt and hashing (concurrency problem)");
+LI("crash in gnunetd if peer has 0 connections");
+LI("various minor problems in the Win32 code");
+LI("various other minor bugs were resolved");
+echo "</ul>";
+W("All protocols and storage formats are unchanged (and thus compatible).");
+W("Updating from 0.6.6a should be trivial.");
+?>

Added: GNUnet-docs/WWW/test/overview.fig
===================================================================
--- GNUnet-docs/WWW/test/overview.fig   2005-04-25 18:48:28 UTC (rev 687)
+++ GNUnet-docs/WWW/test/overview.fig   2005-04-25 18:57:50 UTC (rev 688)
@@ -0,0 +1,135 @@
+#FIG 3.2  Produced by xfig version 3.2.5-alpha5
+Landscape
+Center
+Metric
+A4      
+100.00
+Single
+-2
+1200 2
+1 2 0 1 0 7 50 -1 -1 0.000 1 0.0000 11677 7942 607 203 11070 8145 12285 7740
+1 2 0 1 0 7 50 -1 -1 0.000 1 0.0000 7132 4882 338 202 6795 5085 7470 4680
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        12060 1125 12060 3285
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        11340 855 3240 855
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        2610 1080 2610 8640
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        8820 8820 3510 8820
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        7110 4635 7110 3735
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        6750 4860 4410 4365
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        7110 5085 5310 6885
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        7515 4860 11340 1035
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        9225 8595 5895 7380
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        9450 8595 4230 4635
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        2970 1080 3600 4185
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        11655 1125 5895 6885
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        11340 990 3870 4185
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        3825 4635 4860 6885
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        9675 8595 11835 1125
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        2790 8640 3600 4635
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        3015 8640 4860 7380
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        6255 3735 8055 3735 8055 3240 6255 3240 6255 3735
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        3015 4635 4410 4635 4410 4185 3015 4185 3015 4635
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        2115 1080 3240 1080 3240 630 2115 630 2115 1080
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        12600 630 11340 630 11340 1125 12600 1125 12600 630
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        11430 3690 12690 3690 12690 3285 11430 3285 11430 3690
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        4725 7380 6075 7380 6075 6885 4725 6885 4725 7380
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        2160 9090 3510 9090 3510 8640 2160 8640 2160 9090
+2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
+        10440 9090 10440 8640 8865 8640 8865 9090 10440 9090
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        11070 7200 12285 7200 12285 7650 11070 7650 11070 7200
+2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
+        12645 6570 12645 7110 11070 7110 11070 6570 12645 6570
+2 3 0 1 0 7 50 -1 -1 0.000 0 0 0 0 0 7
+        3915 1755 3653 1751 3518 1976 3645 2205 3915 2205 4042 1984
+        3915 1755
+2 3 0 1 0 7 50 -1 -1 0.000 0 0 0 0 0 7
+        11970 8565 11745 8175 11295 8175 11070 8565 11295 8955 11745 8955
+        11970 8565
+2 3 0 1 0 7 50 -1 -1 0.000 0 0 0 0 0 7
+        4537 1759 4275 1755 4140 1980 4267 2209 4545 2205 4664 1988
+        4537 1759
+2 3 0 1 0 7 50 -1 -1 0.000 0 0 0 0 0 7
+        5122 1759 4860 1755 4725 1980 4852 2209 5114 2213 5249 1988
+        5122 1759
+2 3 0 1 0 7 50 -1 -1 0.000 0 0 0 0 0 7
+        5752 1759 5490 1755 5355 1980 5482 2209 5744 2213 5879 1988
+        5752 1759
+2 3 0 1 0 7 50 -1 -1 0.000 0 0 0 0 0 7
+        6382 1759 6120 1755 5985 1980 6112 2209 6374 2213 6509 1988
+        6382 1759
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        3735 4185 3735 2250
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        3735 4185 4410 2250
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        3735 4185 4950 2250
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        3735 4185 5580 2250
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+       0 0 1.00 60.00 120.00
+        3735 4185 6255 2250
+2 2 0 3 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+        10980 6435 12735 6435 12735 9135 10980 9135 10980 6435
+4 0 0 50 -1 0 18 0.0000 4 195 795 2250 900 session\001
+4 0 0 50 -1 0 18 0.0000 4 255 1050 2295 8955 pingpong\001
+4 0 0 50 -1 0 18 0.0000 4 255 1260 9045 8910 advertising\001
+4 0 0 50 -1 0 18 0.0000 4 255 1065 11520 3555 bootstrap\001
+4 0 0 50 -1 0 18 0.0000 4 225 1050 3195 4455 transport\001
+4 0 0 50 -1 0 18 0.0000 4 255 1635 6345 3555 fragmentation\001
+4 0 0 50 -1 0 18 0.0000 4 135 480 6885 4950 core\001
+4 0 0 50 -1 0 18 0.0000 4 255 870 4995 7200 identity\001
+4 0 0 50 -1 0 18 0.0000 4 255 975 11520 900 topology\001
+4 0 0 50 -1 0 18 0.0000 4 195 840 11250 7515 Service\001
+4 0 0 50 -1 0 18 0.0000 4 255 930 11250 8010 gnunetd\001
+4 0 0 50 -1 0 18 0.0000 4 255 1335 11205 6975 Application\001
+4 0 0 50 -1 0 12 0.0000 4 165 390 3600 2025 smtp\001
+4 0 0 50 -1 0 12 0.0000 4 165 720 11160 8640 transport\001
+4 0 0 50 -1 0 12 0.0000 4 165 255 4275 2025 tcp\001
+4 0 0 50 -1 0 12 0.0000 4 120 255 6120 2025 nat\001
+4 0 0 50 -1 0 12 0.0000 4 180 330 5445 2025 http\001
+4 0 0 50 -1 0 12 0.0000 4 180 315 4815 2025 udp\001

Added: GNUnet-docs/WWW/test/overview.png
===================================================================
(Binary files differ)


Property changes on: GNUnet-docs/WWW/test/overview.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream





reply via email to

[Prev in Thread] Current Thread [Next in Thread]