Ethan Ferguson GitHub 4 mesi fa
parent
commit
98f40a2633
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: B5690EEEBB952194
1 ha cambiato i file con 8 aggiunte e 2 eliminazioni
  1. +8
    -2
      1991.fs

+ 8
- 2
1991.fs Vedi File

@@ -347,11 +347,17 @@ s" image/x-icon" filetype: ico
0
then ;

: substring-to-end ( index c-addr u -- c-addr u )
rot dup rot swap - rot rot + swap ;

: read-request-body ( socket u -- )
\ Takes the socket and the length of the
\ body (Content-Length).
here swap aligned read-socket
set-request-body ;
2over swap drop swap -
2over substring-to-end
set-request-body
drop ;

: read-request ( socket -- addr u )
\ Returns the request header
\ but also collects the request body.


Loading…
Annulla
Salva