home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / winsock / finger10 / readme.txt < prev    next >
Encoding:
Text File  |  1995-05-19  |  3.2 KB  |  88 lines

  1.          Finger 1.0: a Windows Sockets Finger Client
  2.                 by Zoran Dukic
  3.             e-mail: dukic@olimp.irb.hr
  4.  
  5. Introduction
  6.  
  7. After the summer holiday, I have no idea what to do, and was not ready to
  8. start working on my master degree.
  9.  
  10. Finger 3.1,  by Lee Murach  (Internet: lee@nrc.com, CompuServe: 71161,651
  11. Tel:(805) 484-2128), program that I've used very often for finding out
  12. whether my friends on Internet logged or not, becomes an inspiration.
  13. Since this is my first attempt to program something for Windows Sockets,
  14. functions written by Lee Murach were very helpful, and this is the right
  15. place to thank him a lot.
  16.  
  17. Finger 1.0 is a Windows Sockets finger client.  You may use Finger to query
  18. for users on a remote host.  Finger 1.0 uses the asynchronous WS extensions.
  19.  
  20.  
  21. Contents
  22.  
  23. The Finger 1.0 was built with the Borland C++ 3.1, using Borland OWL 1.0.
  24.  
  25. finger.prj      Finger's project file.
  26. finger.cpp      Finger's user interface.  This module processes all user
  27.         input, and displays query results and errors.
  28. netwrkm.cpp     Finger's network module.  It isolates the network
  29.         interface from the rest of the program, and uses 
  30.         asynchronous WS calls to query the remote host.
  31. finger.rc       Specifies resources.
  32. finger.h        Finger's header file.
  33. fingerrc.h      Constants used in resource script file.
  34. finger.def      Definition file.
  35. finger.ico      The finger icon.
  36. readme.*        You're reading it now.
  37. winsock.h       Header file for winsock.dll.
  38. winsock.lib     Import library for winsock.dll.
  39. finger.exe      The executable.
  40.  
  41.  
  42. Requirements
  43.  
  44. To run Finger, you'll need access to a remote host which runs a finger
  45. server.
  46.  
  47. Since finger dynamically links to the winsock.dll, you'll need a TCP/IP
  48. implementation that provides a Windows Sockets interface.
  49.  
  50.  
  51. Release Notes
  52.  
  53. At the beginning I have no intention to upload this, but at the end I like
  54. what came out and decided to upload. That is the reason that the source
  55. code is not commented very well and the documentation is also very poor.
  56. Apologize for that.
  57.  
  58.  
  59. Program information and copyright:
  60.  
  61. Author:
  62.  
  63. Zoran Dukic,
  64. Kopernikova 58, 41000 Zagreb
  65. CROATIA, EUROPE
  66. e-mail: dukic@olimp.irb.hr
  67.  
  68. THE INFORMATION AND CODE PROVIDED IS PROVIDED AS IS WITHOUT
  69. WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT
  70. NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  71. FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL ZORAN
  72. DUKIC BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT,
  73. INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS
  74. OR SPECIAL DAMAGES, EVEN IF ZORAN DUKIC HAS BEEN ADVISED OF
  75. THE POSSIBILITY OF SUCH DAMAGES.
  76.  
  77. Finger Version 1.0, a Windows Sockets Finger Client
  78.  
  79. Copyright (C) 1994 by Zoran Dukic.
  80.  
  81. **********************************************************************
  82. * Permission to use, modify, and distribute this software and its    *
  83. * documentation for any purpose and without fee is hereby granted,   *
  84. * provided that the above copyright notice appears in all copies and *
  85. * that both that copyright notice and this permission notice appear  *
  86. * in supporting documentation.                                       *
  87. **********************************************************************
  88.