home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-02.Z / 94-02 / text0154.txt < prev    next >
Encoding:
Text File  |  1994-02-28  |  8.0 KB  |  217 lines

  1. In article <egarcia.24.0017CDCF@trumpet.calpoly.edu> egarcia@trumpet.calpoly.edu (Ed Garcia) writes:
  2. >From: egarcia@trumpet.calpoly.edu (Ed Garcia)
  3. >Subject: What's the most recent version of Winsock?
  4. >Date: Thu, 10 Feb 1994 23:48:09
  5.  
  6. >1.0a
  7.  
  8. 1.0 Rev A.
  9.  
  10. >or 1.0b #5?   <---  this refers to 1.0 Final beta #5
  11.  
  12. Peter
  13.  
  14.  
  15.  
  16.  
  17. ----------------------------------------------------------------------------
  18. P.Tattam                                    International Phone 61-02-202346
  19. Programmer, Psychology Department           Australia     Phone   002-202346
  20. University of Tasmania, Hobart, Tasmania, Australia
  21. ----------------------------------------------------------------------------
  22. From davidtr@microsoft.com Tue Feb 15 14:45:00 1994
  23. Received: from netmail2.microsoft.com by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  24.           id AA02277; Wed, 16 Feb 1994 01:46:08 -0500
  25. Received:  by netmail2.microsoft.com (5.65/25-eef)
  26.     id AA23422; Tue, 15 Feb 94 22:47:03 -0800
  27. Received: by netmail2 using fxenixd 1.0 Tue, 15 Feb 94 22:47:03 PST
  28. Message-Id: <9402160646.AA04407@itgmsm>
  29. From: davidtr@microsoft.com
  30. To: winsock@sunsite.unc.edu, winsock@sunsite.unc.edu
  31. Subject: RE: Windows NT Handles and Sockets
  32. Date: Tue, 15 Feb 94 22:45:00 PST
  33. X-Mailer: Microsoft Mail V3.0
  34.  
  35.  
  36.  
  37.  ----------
  38. |From: winsock
  39. |
  40. |Hello,
  41. |
  42. |I'm doing some programming with NT and sockets.  I was under the impression 
  43.  
  44. |that in NT, sockets were implemented as HANDLES.  This would make it 
  45. possible
  46. |to use sockets on functions like ReadFile/WriteFile.  However, when I try 
  47. to
  48. |insert a SOCKET in place of the HANDLE in the function call, Visual C++
  49. |(NT version) refuses to accept this.  Is it possible to use sockets and
  50. |HANDLES interchangeably in any of the NT file calls?
  51.  
  52. cast the SOCKET returned from socket() to a HANDLE when passing to 
  53. ReadFile() etc.  that should do the trick.
  54.  
  55. one caveat: NT sockets are opened as overlapped handles, so you need to 
  56. specify the LPOVERLAPPED handle on ReadFile() in order to successfully use 
  57. that routine with a socket handle.
  58.  
  59. dave
  60. From davidtr@microsoft.com Tue Feb 15 14:49:00 1994
  61. Received: from netmail2.microsoft.com by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  62.           id AA02522; Wed, 16 Feb 1994 01:49:49 -0500
  63. Received:  by netmail2.microsoft.com (5.65/25-eef)
  64.     id AA23464; Tue, 15 Feb 94 22:50:46 -0800
  65. Received: by netmail2 using fxenixd 1.0 Tue, 15 Feb 94 22:50:46 PST
  66. Message-Id: <9402160649.AA04828@itgmsm>
  67. From: davidtr@microsoft.com
  68. To: winsock@sunsite.unc.edu
  69. Subject: RE: Winsock on Windows NT
  70. Date: Tue, 15 Feb 94 22:49:00 PST
  71. X-Mailer: Microsoft Mail V3.0
  72.  
  73.  
  74.  
  75.  
  76. |From: netmail!finken@conware.de (Michael Finken)
  77. |
  78. |I'm in the process of doing some design work for a gateway program,
  79. |which should on one side be based on WINSOCK.  The gateway should be
  80. |able to handle between 100 and 300 TCP connections concurrently.
  81. |
  82. |I've browsed through some doc about the WIN32 API, but didn't find
  83. |anything about WINSOCK there.  I've some questions...
  84. |
  85. |1) Is there a limit of sockets available to one task? Can this limit
  86. |   be configured?
  87.  
  88. no static limit, it just depends on how much physical memory your machine 
  89. has.
  90.  
  91. |2) From what I've seen a SO_REUSEADDR socket option is supported.
  92. |   Can two tasks use the same listener port, then? How are incoming
  93. |   connect requests multiplexed between those tasks? Does always the
  94. |   first one in the queue with enough available backlog in listen()
  95. |   get it?
  96.  
  97. both tasks can listen() on sockets bound to the same port, but there are no 
  98. guarantees as to which one will get incoming connections.  because of this, 
  99. it is usually better to have a single listening socket which passes accepted 
  100. sockets off to other threads or processes.  that way, you have control over 
  101. where each socket goes and can implement any necessary round-robining 
  102. yourself.
  103.  
  104. davidtr@microsoft.com
  105. From wagnermi@informatik.tu-muenchen.de Wed Feb 16 09:54:55 1994
  106. Received: from tuminfo2.informatik.tu-muenchen.de by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  107.           id AA06834; Wed, 16 Feb 1994 02:55:36 -0500
  108. Received: from hpschlichter8.informatik.tu-muenchen.de ([131.159.24.23])
  109.      by tuminfo2.informatik.tu-muenchen.de
  110.      with SMTP id <326726>; Wed, 16 Feb 1994 08:55:16 +0100
  111. Received: by hpschlichter8.informatik.tu-muenchen.de id <49421>; Wed, 16 Feb 1994 08:55:02 +0100
  112. From: Wagner Michael <wagnermi@informatik.tu-muenchen.de>
  113. To: winsock@sunsite.unc.edu
  114. Subject: public NFS
  115. Cc: wagnermi@hpschlichter8.informatik.tu-muenchen.de
  116. Message-Id: <94Feb16.085502mesz.49421@hpschlichter8.informatik.tu-muenchen.de>
  117. Date:     Wed, 16 Feb 1994 08:54:55 +0100
  118.  
  119.  
  120. Is there a non-commercial NFS-client for Windows ?
  121.  
  122. Or paraphrased: if I have a Winsock running, how do I make my Windows-tasks
  123. (e.g. filemgr) see a Unix filesystem ?
  124.  
  125.  
  126. ;-)
  127.  
  128.     Mike
  129. From news@bigblue.oit.unc.edu Wed Feb 16 11:11:27 1994
  130. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  131.           id AA19911; Wed, 16 Feb 1994 06:56:49 -0500
  132. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  133.           id AA10842; Wed, 16 Feb 1994 06:27:46 -0500
  134. Received: from GATEWAY by bigblue with netnews
  135.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  136. To: winsock@sunsite.unc.edu
  137. Date: Wed, 16 Feb 1994 11:11:27 GMT
  138. From: birkhead_j@lincoln.gpsemi.com (Steve Kirkham)
  139. Message-Id: <birkhead_j.27.000B313C@lincoln.gpsemi.com>
  140. Organization: GEC Plessey Semiconductors
  141. Sender: ses
  142. Subject: Sockets version of whois and archie
  143.  
  144. Can someone suggest a source of a sockets version of whois and archie?
  145.  
  146.  
  147.  
  148. Thanks in anticipation,
  149. John Birkhead
  150. From news@bigblue.oit.unc.edu Wed Feb 16 08:56:50 1994
  151. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  152.           id AA29050; Wed, 16 Feb 1994 08:56:50 -0500
  153. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  154.           id AA14527; Wed, 16 Feb 1994 08:44:07 -0500
  155. Received: from GATEWAY by bigblue with netnews
  156.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  157. To: winsock@sunsite.unc.edu
  158. Date: Wed, 16 Feb 1994 08:21:55
  159. From: jobrien@mcs.umes.umd.edu (James M. O'Brien, Jr)
  160. Message-Id: <jobrien.340.00085DCB@mcs.umes.umd.edu>
  161. Organization: University of Maryland Eastern Shore
  162. Sender: ses
  163. References: <gregg.12.030A4BA7@panix.com>
  164. Subject: Re: WSFinger Problem
  165.  
  166. In article <gregg.12.030A4BA7@panix.com> gregg@panix.com (Gregg Gonsalves) writes:
  167.  
  168. >I've downloaded WSFinger which includes two files: wsfinger.exe and 
  169. >wsfinger.doc.  When I try to run it my computer says it can't find the file or 
  170. >one of its components is missing: check filename and path.  I'm running it 
  171. >like I've run the rest of my WS applications, so I'm not sure what the problem 
  172. >is.  Am I missing something?
  173.  
  174. Where did you DL it?   I forgot to include bwcc.dll in the first archive 
  175. file.You can get the complete archive at sparky.umd.edu in /pub/winsock.
  176.  
  177. - Jim O'Brien
  178.  
  179.  
  180. Jim O'Brien, CNE                University of Maryland Eastern Shore
  181. jobrien@mcs.umes.umd.edu        Network Manager
  182. From news@bigblue.oit.unc.edu Wed Feb 16 10:56:55 1994
  183. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  184.           id AA15435; Wed, 16 Feb 1994 10:56:55 -0500
  185. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  186.           id AA09732; Wed, 16 Feb 1994 10:33:48 -0500
  187. Received: from GATEWAY by bigblue with netnews
  188.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  189. To: winsock@sunsite.unc.edu
  190. Date: Wed, 16 Feb 1994 08:59:08
  191. From: xris@ccwf.cc.utexas.edu (Chris Nappi)
  192. Message-Id: <xris.38.0008FC90@ccwf.cc.utexas.edu>
  193. Organization: UT Austin
  194. Sender: ses
  195. References: <2js8oj$4rm@news-feed-2.PeachNet.EDU>
  196. Subject: Re: Xwindemo question
  197.  
  198. In article <2js8oj$4rm@news-feed-2.PeachNet.EDU> tbailey@sun.cc.westga.edu writes:
  199. >From: tbailey@sun.cc.westga.edu
  200. >Subject: Xwindemo question
  201. >Date: 15 Feb 94 23:59:49 GMT
  202.  
  203.  
  204. >I am able to use Xwindemo and log into a Sun across the state.
  205. >However, it is exactly the same as a Telnet session.  
  206. >What is wrong?  I thought that there would a graphical 
  207. >interface as in Windows.
  208.  
  209. >Cordially,
  210.  
  211. >Terry Bailey
  212. >tbailey@sun.cc.westga.edu
  213. Try typing xgopher, xclock, and xman...
  214. Xris
  215.  
  216.  
  217.