2 Little Smalltalk, Version 5
4 Copyright (C) 1987-2005 by Timothy A. Budd
5 Copyright (C) 2007 by Charles R. Childers
6 Copyright (C) 2005-2007 by Danny Reinhold
7 Copyright (C) 2010 by Ketmar // Vampire Avalon
9 ============================================================================
10 This license applies to the virtual machine and to the initial image of
11 the Little Smalltalk system and to all files in the Little Smalltalk
12 packages except the files explicitly licensed with another license(s).
13 ============================================================================
14 Permission is hereby granted, free of charge, to any person obtaining a copy
15 of this software and associated documentation files (the 'Software'), to deal
16 in the Software without restriction, including without limitation the rights
17 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18 copies of the Software, and to permit persons to whom the Software is
19 furnished to do so, subject to the following conditions:
21 The above copyright notice and this permission notice shall be included in
22 all copies or substantial portions of the Software.
24 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 DEALINGS IN THE SOFTWARE.
37 Object subclass: SocketTest [
38 ^lookupHost: hostName [
39 ^Inet firstIpStringFromHostname: hostName.
45 rc := s connect: 'dict.tugraz.at' port: 2628.
46 rc < 0 ifTrue: [ ^'cannot connect' ].
47 'receiving handshake...' printNl.
49 s send: 'DEFINE * "' + word + '"' + (Char cr asString) + (String newline).
50 'receiving definition...' printNl.
51 buf := s recvAll. buf printNl.
52 s send: 'QUIT ' + (Char cr asString) + (String newline).
53 'receiving bye...' printNl.
60 {(SocketTest lookupHost: 'google.com') printNl}
61 {(SocketTest lookupHost: 'dict.tugraz.at') printNl}
62 {(SocketTest lookupWord: 'faery') printNl}