. Updated CHANGES with information from debian/changelog
[infodrom/cgilib] / cgiSetHeader.3
index 81902d9..f8a70df 100644 (file)
@@ -15,7 +15,7 @@
 .\" along with this program; if not, write to the Free Software
 .\" Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 .\"
-.TH cgiSetHeader 3 "15 August 1999" "CGI Library" "Programmer's Manual"
+.TH cgiSetHeader 3 "20 August 1999" "CGI Library" "Programmer's Manual"
 .SH NAME
 cgiSetHeader \- Specify an additional HTTP header
 .SH SYNOPSYS
@@ -45,6 +45,20 @@ 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.
 
@@ -55,4 +69,6 @@ please get in touch with him.
 
 .SH "SEE ALSO"
 .BR cgiHeader (3),
+.BR cgiGetCookies (3),
+.BR cgiGetCookie (3),
 .BR cgiInit (3).