|
Hi there, I've got the following simple socket test:
testUdpSockets
| testMessage dst src buff count |
testMessage := 'a test'.
dst := Socket newUDP setPort: 55555.
src := Socket newUDP.
src sendUDPData: testMessage toHost: (ByteArray withAll: {127. 0. 0.
1.}) port: dst port.
buff := ByteArray new: 100.
dst waitForData.
count := dst receiveUDPDataInto: buff.
self assert: (buff copyFrom: 1 to: count first) asString = testMessage.
dst closeAndDestroy.
src closeAndDestroy.
With Linux it just works. However, with the downloadable Win32-SqueakVM
(from squeak.org) it fails... A somehow self compiled (therefore
instable) vm for windows doesnt fail.
Is the windows vm still maintained by anyone? Will there be a new binary
release in the near future?
Regards,
Martin
|