Re: [q-lang-users] stream socket
Brought to you by:
agraef
From: Albert G. <Dr....@t-...> - 2008-02-15 07:32:26
|
Humbert Francis wrote: > My socket first try does not work (Windows Vista) : > [...] > ==> accept 336 > accept 336 Works fine on Windows XP (and on Linux): ==> def SERVER = ("localhost",2000) ==> def FD = socket AF_INET SOCK_STREAM 0 ==> bind FD SERVER () ==> listen FD 5 () // open http://localhost:2000/ in Firefox ==> accept FD (1784,("127.0.0.1",1058)) I think I read somewhere that MS rewrote the network stack for Vista, could there be an ABI incompatibility? In that case a recompile of the system module should fix it. Or maybe it's some security setting that gets in the way? Unfortunately, I don't have Vista to test. Anyone else here running Q on Vista, who would be willing to try this out? Albert -- Dr. Albert Gr"af Dept. of Music-Informatics, University of Mainz, Germany Email: Dr....@t-..., ag...@mu... WWW: http://www.musikinformatik.uni-mainz.de/ag |