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

  1. WinSNTP
  2. -------
  3.  
  4. WinSNTP is an implementation of the Simple Network Time Protocol and
  5. runs as a Windows application.  SNTP is a subset of the Network Time
  6. Protocol described in RFC-1305.  NTP is a set of algorithms
  7. and protocol that is designed to keep a distributed set of computer
  8. clocks synchronized to the correct time with a very high degree of
  9. accuracy.
  10.  
  11. WinSNTP uses SNTP to synchronize the clock of a PC running Windows
  12. to within 100-200 mS of the time information provided
  13. by an NTP server.  The time is corrected for differences in time zones
  14. and daylight savings time.  WinSNTP will periodically poll the NTP
  15. server in order to keep the PC clock accurate within a configurable
  16. limit.  The poll interval is extended or reduced to maintain the
  17. accuracy of the PC clock and balance this with the load placed on the
  18. NTP server.
  19.  
  20. WinSNTP uses the Winsock TCP/IP Sockets interface to access the network
  21. services required to implement SNTP.  WinSNTP has been tested with a
  22. large number of Winsock compliant TCP/IP products and verified for
  23. correct operation.  See the WinSNTP Help information for a list of
  24. the TCP/IP stacks known to interoperate at the time of release.
  25.  
  26. To use WinSNTP you need a PC running Microsoft Windows equipped with
  27. network access and a Winsock compliant TCP/IP implementation.  WinSNTP
  28. will operate correctly over a wide range of different network connections
  29. from SLIP links to high speed local area networks.
  30.  
  31. You will also need access to an NTP server - contact you local system
  32. or network administrator for pointers to a nearby NTP server.
  33.  
  34. WinSNTP has extensive help and configuration information that provides
  35. an on-line reference and users guide.
  36.  
  37.  
  38. Note on BWCC.DLL
  39. ----------------
  40.  
  41. BWCC.DLL is a dynamic link library containing the Borland Custom Window
  42. Controls.  This DLL is commonly used to give applications a more modern
  43. look and feel than the original Windows style of controls and windows.
  44.  
  45. While BWCC.DLL is BACKWARD compatible with earlier versions, WinSNTP requires
  46. a compatible release of BWCC.DLL.  WinSNTP will check the version of BWCC.DLL
  47. that is loaded when WinSNTP is run and will output a fatal error message if
  48. the version of BWCC is incompatible.
  49.  
  50. When WinSNTP is run, it asks Windows to load the BWCC.DLL; Windows will look
  51. in:
  52.     a) Memory to see if the DLL is already loaded.
  53.     b) The working directory
  54.     c) The WINDOWS\SYSTEM directory
  55.     d) All directories on the search path (DOS PATH)
  56. to try and locate the DLL.
  57.  
  58. Note that if you run another application that has an incompatible version
  59. of BWCC in its directory, the incompatible version will be loaded into memory
  60. and WinSNTP will issue its error message and abort.
  61.  
  62. The version of BWCC.DLL supplied with WinSNTP is the latest version as of
  63. August 1994.  Its file size is 157,472 bytes.
  64.  
  65. If WinSNTP displays its fatal error that the version of BWCC found is
  66. back level, you need to find the incompatible versions of BWCC on your
  67. system AND DELETE THEM.  You should exit Windows BEFORE beginning your
  68. search since Windows locks a DLL when it is loaded.  You will not be able
  69. to delete a loaded DLL while Windows is running.
  70.  
  71. The best approach is to keep a single copy of BWCC.DLL in your WINDOWS\SYSTEM
  72. directory and share this version across all the applications that use the
  73. Borland Custom Controls.  Not only will this save you disk space but it
  74. enables you to easily upgrade and manage your PC in the future.
  75.  
  76.  
  77. Installation
  78. ------------
  79.  
  80. Installation of WinSNTP is very straight forward.
  81.  
  82. 1. Create a directory on your hard drive;
  83.  
  84.     mkdir \winsntp
  85.  
  86. IMPORTANT!
  87. *********
  88. 2. Make sure that this directory is included in your DOS PATH
  89.    or alternatively, after you have unpacked the .ZIP file, copy
  90.    the file BWCC.DLL to a directory currently listed in the PATH
  91.    or to your WINDOWS\SYSTEM directory.
  92.  
  93.    WinSNTP requires BWCC.DLL to be available either in WINDOWS\SYSTEM
  94.    or in a directory in your PATH.  An error message will be displayed
  95.    if WinSNTP cannot load the file.
  96.  
  97. 3. Change to the newly created directory;
  98.  
  99.     cd \winsntp
  100.  
  101. 4. Unpack the .ZIP archive using PKUNZIP into the current directory;
  102.  
  103.     pkunzip a:wsntp15f.zip
  104.  
  105. 5. Run the Windows Program Manager.  Using the File|New option, create
  106.    a new program item called WinSNTP. Fill in the dialog box as follows;
  107.  
  108.     Description:        WinSNTP
  109.     Command Line:        x:\winsntp\winsntp.exe
  110.     Working Directory:    x:\winsntp
  111.  
  112.     Where x: is the drive containing the \winsntp directory.
  113.  
  114. 6. Copy the file BWCC.DLL to your WINDOWS\SYSTEM directory and then
  115.    delete the copy in the \winsntp directory.  See the section Note on BWCC
  116.    above.
  117.  
  118.  
  119. Thats it!  You can run WinSNTP by double clicking on the WinSNTP icon.
  120.  
  121.