Update to the new FSF address
[infodrom/cgilib] / cgiSetHeader.3
index 81902d9..c06bb19 100644 (file)
@@ -1,5 +1,5 @@
 .\" cgiSetHeader - Specify an additional HTTP header
-.\" Copyright (c) 1999 by Martin Schulze <joey@infodrom.north.de>
+.\" Copyright (c) 1999,2008 by Martin Schulze <joey@infodrom.org>
 .\" 
 .\" This program is free software; you can redistribute it and/or modify
 .\" it under the terms of the GNU General Public License as published by
 .\" GNU General Public License for more details.
 .\" 
 .\" You should have received a copy of the GNU General Public License
-.\" along with this program; if not, write to the Free Software
-.\" Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+.\" along with this program; if not, write to the Free Software Foundation
+.\" Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .\"
-.TH cgiSetHeader 3 "15 August 1999" "CGI Library" "Programmer's Manual"
+.TH cgiSetHeader 3 "6 April 2008" "CGI Library" "Programmer's Manual"
 .SH NAME
 cgiSetHeader \- Specify an additional HTTP header
 .SH SYNOPSYS
@@ -45,14 +45,30 @@ will be truncated.  The
 .I value
 must not contain any newline, otherwise it will be truncated as well.
 
+To set a cookie in your program you'll need to manually add additional
+header lines.  Please take a look at
+.IR cgitest.c .
+Basically, you'll need to add the following code:
+
+.nf
+   cgiSetHeader ("Set-Cookie", "Version=1; name=value; Path=/");
+   cgiHeader();
+.fi
+
+Please read the included file
+.I cookies.txt
+as well.
+
 .SH "RETURN VALUE"
 On success 1 is returned, otherwise 0.
 
 .SH "AUTHOR"
 This CGI library is written by Martin Schulze
-<joey@infodrom.north.de>.  If you have additions or improvements
+<joey@infodrom.org>.  If you have additions or improvements
 please get in touch with him.
 
 .SH "SEE ALSO"
 .BR cgiHeader (3),
+.BR cgiGetCookies (3),
+.BR cgiGetCookie (3),
 .BR cgiInit (3).