Re: TCP (or UDP) daytime client in Smalltalk

"[email protected]" <[email protected]>
Newsgroups gmane.comp.lang.smalltalk.gnu.general
Message-ID <[email protected]>
The docs have an incorrect reference:

https://www.gnu.org/software/smalltalk/manual/html_node/Network-support.html#Network-support

if you click on " Network programming with Sockets " that link is broken.

I've tried the following:

Eval [

PackageLoader fileInPackage: 'Sockets'.
PackageLoader fileInPackage: 'NetClients'.

s _ Socket remote:(SocketAddress createLoopbackHost) port:13.
(s upTo: Character cr) printNl.
s close.

]

This fails:

Object: nil error: did not understand #createLoopbackHost
MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
UndefinedObject(Object)>>doesNotUnderstand: #createLoopbackHost (SysExcept.st:1408)
UndefinedObject>>executeStatements (daytime.st:7)


Apparently it does not know about the SocketAdress class (subclass of
IPAddress).  There must be some other way apparently to load that class.

Shouldn't loading the packages be sufficient to get the SocketAdress class ?

David
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.