diff options
author | Ian Price <ianprice90@googlemail.com> | 2012-05-08 00:18:59 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-07-06 22:18:13 +0200 |
commit | 64ead01db7d5110e94be5d6d984aaa8ead4e5e8c (patch) | |
tree | c93fe0891e45a8c67f4ad77ba55f30ed0bbd13a3 /doc/ref | |
parent | 312e79f8d5bc5a70fccb0dc8b13260acf688493b (diff) | |
download | guile-64ead01db7d5110e94be5d6d984aaa8ead4e5e8c.tar.gz |
Document and export `declare-opaque-header!'
* module/web/http.scm (declare-opaque-header!): Add docstring. New export.
* doc/ref/web.texi (HTTP): Add documentation.
Diffstat (limited to 'doc/ref')
-rw-r--r-- | doc/ref/web.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/ref/web.texi b/doc/ref/web.texi index d4eec1021..2051979f3 100644 --- a/doc/ref/web.texi +++ b/doc/ref/web.texi @@ -398,6 +398,11 @@ HTTP stack like this: (display (inet-ntoa ip) port))) @end example +@deffn {Scheme Procedure} declare-opaque-header! name +A specialised version of @code{declare-header!} for the case in which +you want a header's value to be returned/written ``as-is''. +@end deffn + @deffn {Scheme Procedure} valid-header? sym val Return a true value iff @var{val} is a valid Scheme value for the header with name @var{sym}. |