home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / tcp_netwrk_obj.README < prev    next >
Encoding:
Text File  |  1990-06-08  |  1.7 KB  |  39 lines

  1.         TCP NETWORK OBJECTS
  2.     by Ian Smith
  3.     of the Software Engineering Research Center's Multimedia Lab 
  4.  
  5. I think that most of you by looking at the source can figure out most of the
  6. stuff involved in what/how to use these objects so I'll skip that.
  7.  
  8. If you want to compile a file using these objects you need (I think) to
  9. link with the sys_s and NeXT_s libraries.  
  10.  
  11. As I guess you will notice, I didn't hack these objects up to multiplex 
  12. connections over one TCP socket, I plan on doing that at some future point
  13. (or if some nice person volunteers they can do it).  There are a lot of
  14. choices for doing that, and they all need to be thought out carefully.  There
  15. is a set of objects like this (UDP TCP SERVER CLIENT) available from 
  16. SERC for C++ if anyone is interested.  Even though I didn't hack up these
  17. objects to multiplex connections, you can still hack up network software
  18. (at least the first cut) pretty quickly with these.  They also seem to be
  19. attracting attention for network gaming.
  20.  
  21. Also, if you stop one of the program using these objects before it can close 
  22. the tcp connection, it may cause problems.  Since this is a reliable connection
  23. (tcp guarantees delivery) there may be data in a buffer somewhere that 
  24. is waiting to be sent/delivered.  In this case if you run the program again,
  25. it may cause the address to not bind correctly and generate an error.  I've
  26. tried to do what I can about this with setsockopts but without much success.
  27. (On the Sparcstations, the setsockopt solution seems to work.... go figure.)
  28. If anyone out there can isolate and fix the problem, please send me the
  29. workaround.
  30.  
  31. Please send me your suggestions on how I can improve/modify these objects.
  32.  
  33. thanks,
  34. ian
  35.  
  36. iansmith@warhol.gatech.edu
  37.  
  38.  
  39.