home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / os / os2 / networki / 2942 < prev    next >
Encoding:
Internet Message Format  |  1993-01-28  |  1.3 KB

  1. From: yuk@hpopd.pwd.hp.com (Yuk Lun Chan)
  2. Date: Tue, 26 Jan 1993 12:47:41 GMT
  3. Subject: Re: Name pipes over TCP/IP
  4. Message-ID: <-159809995@hpopd.pwd.hp.com>
  5. Organization: Hewlett-Packard, CCSY Messaging Centre, UK.
  6. Path: sparky!uunet!UB.com!pacbell.com!decwrl!spool.mu.edu!howland.reston.ans.net!usc!sdd.hp.com!hpscit.sc.hp.com!hplextra!otter.hpl.hp.com!hpopd!yuk
  7. Newsgroups: comp.os.os2.networking
  8. References: <C1FJ0A.JG6@well.sf.ca.us>
  9. Lines: 16
  10.  
  11. >comp.os.os2.networking / kellmeye@ux1.cso.uiuc.edu (kellmeyer steven l) /  2:15 am  Jan 26, 1993 /
  12. >Shoot me for a newbie idiot, but what the hell is a named pipe, anyway?
  13. >I read the Novell manual, and it describes how to set them up, but never
  14. >tells you what bloody good they do.  Why use them?  What are they?  What
  15. >do they taste like?  Are they better with ketchup?  I don't get it.
  16.  
  17. Named pipe is introduced into DOS and OS/2 in Lan manager 1.0. It is simply
  18. a first in first out queue with name. Your server program creates a
  19. named pipe (of course, you need to name it) and waiting for thing from 
  20. other end. And then your client program can open it (instead of 
  21. open("filename"), it is open("\\pipe\pipename")). Then your server and
  22. client program can talk to each other!!! with simple read() and write().
  23.  
  24. Details can be obtained from OS/2 programmer's reference.
  25.  
  26. Yuk
  27.