home *** CD-ROM | disk | FTP | other *** search
/ nisttime.carsoncity.k12.mi.us / nisttime.carsoncity.k12.mi.us.tar / nisttime.carsoncity.k12.mi.us / pub / daytime / vms_tcp_wollongong.c < prev   
C/C++ Source or Header  |  1996-11-18  |  919b  |  42 lines

  1.     The following changes should be made to vax_tcp_time_client.c
  2. file to support Wollongong's Pathway TCP/IP for VMS:
  3.  
  4. Top of file:
  5. #include stsdef
  6. #include stdio
  7. #include string
  8. #include ctype
  9. #ifdef WOLLONGONG
  10. #include <sys/types.h>
  11. #include <sys/socket.h>
  12. #include <netinet/in.h>
  13. #include <arpa/inet.h>
  14. #include <sys/time.h>
  15. #define read netread
  16. #define close netclose
  17. #else
  18. #include types
  19. #include socket
  20. #include time
  21. #include inet
  22. #include <sys$library:ucx$inetdef.h>
  23. #endif
  24.  
  25. Comment block:
  26. Revised 15-Dec-1994 by Peter Cascio for Wollongong Pathway TCP/IP for VMS
  27.  
  28.         $ @twg$tcp:[netdist.misc]def
  29.         $ cc/define=WOLLONGONG  vms_tcp_time_client
  30.         $ link  vms_tcp_time_client, sys$input/opt
  31.         sys$share:twglib/share
  32.         sys$share:vaxcrtl.exe/share
  33.  
  34. Questions to:
  35. Pete Cascio           
  36. Home:  pete@nuthatch.blackforest.co.us
  37. DEC:   cascio@cxo.mts.dec.com
  38. MCI:   cascio_p@kant.cs.mci.com
  39.  
  40.  
  41.  
  42.