Browse Source

+ missing CVS logs added

Tomas Hajny 21 years ago
parent
commit
4e64f86456
2 changed files with 37 additions and 7 deletions
  1. 17 5
      rtl/os2/so32dll.pas
  2. 20 2
      rtl/os2/sockets.pas

+ 17 - 5
rtl/os2/so32dll.pas

@@ -1,7 +1,12 @@
 {
+    $Id$
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2000, 2001 by madded2 ([email protected]).
+    Copyright (c) 2002, 2004 Yuri Prokushev ([email protected]).
 
-            /c/ 2000, 2001 by madded2 ([email protected]).
-            (C) 2002, 2004 Yuri Prokushev ([email protected]
+    Interface to OS/2 32-bit sockets library
+
+ **********************************************************************
 
   Inet & Sockets Unit v1.04.
   /c/ 2000, 2001 by madded2 ([email protected]).
@@ -10,13 +15,12 @@
   for help use tcppr.inf and C samples from toolkit.
 
   without res_* and dh_* funcs, and have very
-  bad suppot for select() and ioctl() funcs
+  bad support for select() and ioctl() funcs
 
   new in ver 1.04 : little ioctl() & iptrace support + errors SOCE* constants
   new in ver 1.03 : used inet_lib.lib file for fixing VP linker bug
   new in ver 1.02 : $saves sections, need for correct registers operations
   new in ver 1.01 : ip header struct
-
 }
 {
 @abstract(a unit to handle sockets)
@@ -1573,4 +1577,12 @@ const
 ³ 00038 ³ WINSOCKCLEANUPSOCKETS
 ³ 00039 ³ GETSOCKETFROMLIST
 À´Done
-*)
+*)
+
+{
+  $Log$
+  Revision 1.2  2004-07-17 10:13:09  hajny
+    + missing CVS logs added
+
+
+}

+ 20 - 2
rtl/os2/sockets.pas

@@ -1,8 +1,18 @@
 {
+    $Id$
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2002 Yuri Prokushev
 
-                   (C) 2002 Yuri Prokushev
+    Sockets implementation for OS/2
 
-}
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
 
 {$MODE ObjFPC}
 unit Sockets;
@@ -295,3 +305,11 @@ end;
 Begin
   so32dll.sock_init;
 End.
+
+{
+  $Log$
+  Revision 1.2  2004-07-17 10:13:09  hajny
+    + missing CVS logs added
+
+
+}