[ds6-devel] nc6 BUGS,1.2,1.3 CREDITS,1.3,1.4 NEWS,1.3,1.4
README,1.3,1.4 README.Maint,1.4,1.5
mauro@deepspace6.net
mauro@deepspace6.net
Fri Jan 3 00:14:41 2003
Update of /cvs/nc6
Modified Files:
BUGS CREDITS NEWS README README.Maint
Log Message:
started code cleanup for next 0.3 release
Index: BUGS
===================================================================
RCS file: /cvs/nc6/BUGS,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- BUGS 1 Jan 2003 14:04:14 -0000 1.2
+++ BUGS 3 Jan 2003 00:14:39 -0000 1.3
@@ -1,4 +1,6 @@
-Known bugs that have not been resolved:
+
+Known bugs that have not been resolved yet:
+
-----------------------------------------------------------------------------
Sending data to a UDP host that isn't listening gives a strange error:
Index: CREDITS
===================================================================
RCS file: /cvs/nc6/CREDITS,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CREDITS 28 Nov 2002 20:24:48 -0000 1.3
+++ CREDITS 3 Jan 2003 00:14:39 -0000 1.4
@@ -31,4 +31,4 @@
Mauro Tortonesi
- <mauro _at_ ferrara.linux.it>
+ <mauro _at_ deepspace6.net>
Index: NEWS
===================================================================
RCS file: /cvs/nc6/NEWS,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- NEWS 28 Nov 2002 20:24:48 -0000 1.3
+++ NEWS 3 Jan 2003 00:14:39 -0000 1.4
@@ -38,4 +38,4 @@
Mauro Tortonesi
- <mauro _at_ ferrara.linux.it>
+ <mauro _at_ deepspace6.net>
Index: README
===================================================================
RCS file: /cvs/nc6/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- README 1 Jan 2003 20:40:27 -0000 1.3
+++ README 3 Jan 2003 00:14:39 -0000 1.4
@@ -20,7 +20,7 @@
3. The source is well structured, documented and very easy to follow.
One of the main objectives of netcat6 is to produce an excellent example of
AF independant networking and efficient data transfer.
-4. Greatly improved configuration and platform indendance.
+4. Greatly improved configuration and platform indipendence.
5. Can support servers or clients that use TCP half-close.
Index: README.Maint
===================================================================
RCS file: /cvs/nc6/README.Maint,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- README.Maint 1 Jan 2003 21:15:50 -0000 1.4
+++ README.Maint 3 Jan 2003 00:14:39 -0000 1.5
@@ -47,7 +47,7 @@
and implementation are public).
* Economy of mechanism: Keep the design as simple as possible.
* Least astonishment: The application behavior should match what is
- naively expected.
+ naively expected.
* Simplicity of function: The application should perform functions that are
useful in the context of general use of the application (eg. it should
not become bloated with oft unnecessary features).
@@ -65,9 +65,21 @@
* 8-column indent.
-* Always open curly bracket on same line as keyword. If this is not possible
- (but there must be a __REALLY__ valid reason) put it on the following line,
- vertically aligned with the keyword.
+* Always open curly bracket on same line as keyword. e.g.:
+
+ /* this is the preferred layout */
+ for (i = 0; i < len; ++i) {
+ ...
+ }
+
+ If this is not possible (but there must be a __REALLY__ valid reason)
+ put it on the following line, vertically aligned with the keyword. e.g.:
+
+ /* this is also acceptable, but deprecated */
+ for (i = 0; i < len; ++i)
+ {
+ ...
+ }
* No space before the semicolon.
More information about the ds6-devel
mailing list