DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH
 

(guile.info.gz) Internet Socket Client

Info Catalog (guile.info.gz) Internet Socket Examples (guile.info.gz) Internet Socket Server
 
 38.11.4.1 Internet Socket Client Example
 ........................................
 
 The following example demonstrates an Internet socket client.  It
 connects to the HTTP daemon running on the local machine and returns
 the contents of the root index URL.
 
      (let ((s (socket PF_INET SOCK_STREAM 0)))
        (connect s AF_INET (inet-aton "127.0.0.1") 80)
        (display "GET / HTTP/1.0\r\n\r\n" s)
 
        (do ((line (read-line s) (read-line s)))
            ((eof-object? line))
          (display line)
          (newline)))
 
Info Catalog (guile.info.gz) Internet Socket Examples (guile.info.gz) Internet Socket Server
automatically generated byinfo2html