Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
16
Task/DNS-query/Haskell/dns-query-1.hs
Normal file
16
Task/DNS-query/Haskell/dns-query-1.hs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
module Main where
|
||||
|
||||
import Network.Socket
|
||||
|
||||
getWebAddresses :: HostName -> IO [SockAddr]
|
||||
getWebAddresses host = do
|
||||
results <- getAddrInfo (Just defaultHints) (Just host) (Just "http")
|
||||
return [ addrAddress a | a <- results, addrSocketType a == Stream ]
|
||||
|
||||
showIPs :: HostName -> IO ()
|
||||
showIPs host = do
|
||||
putStrLn $ "IP addresses for " ++ host ++ ":"
|
||||
addresses <- getWebAddresses host
|
||||
mapM_ (putStrLn . (" "++) . show) addresses
|
||||
|
||||
main = showIPs "www.kame.net"
|
||||
4
Task/DNS-query/Haskell/dns-query-2.hs
Normal file
4
Task/DNS-query/Haskell/dns-query-2.hs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
procedure main(A)
|
||||
host := gethost( A[1] | "www.kame.net") | stop("can't translate")
|
||||
write(host.name, ": ", host.addresses)
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue