httpsclient recv - part-cw/lambdanative GitHub Wiki
(httpsclient-recv buf)
httpsclient-recv obtains data from an https server. Warning: This request blocks one most platforms
Parameter | Description |
---|---|
buf | u8vector to which the received data are copied |
Example
Example 1: Please see the source of (httpsclient-test host src) for an example.
Example 2: Get front page of www.google.com
(define httpsclient:buf (##still-copy (make-u8vector 1024)))
(if (fx= (httpsclient-open "www.google.com") 1) (begin
(httpsclient-send (string->u8vector "GET / HTTP/1.0\r\nHost: www.google.com\r\n\r\n"))
(if (fx> (httpsclient-recv httpsclient:buf) 0)
(display (u8vector->string httpsclient:buf))(newline))
(httpsclient-close)
))