Mailing List Archive

cvs commit: httpd-docs-1.3/apidoc TODO api.list
coar 00/09/19 07:00:27

Modified: apidoc TODO api.list
Log:
Some more minor additions.. just examples, and simple-minded ones
at that.

Revision Changes Path
1.12 +0 -7 httpd-docs-1.3/apidoc/TODO

Index: TODO
===================================================================
RCS file: /home/cvs/httpd-docs-1.3/apidoc/TODO,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -u -r1.11 -r1.12
--- TODO 2000/09/19 02:11:04 1.11
+++ TODO 2000/09/19 14:00:24 1.12
@@ -85,12 +85,6 @@
BUFF

The following items need examples:
- ap_base64encode
- ap_base64encode_binary
- ap_base64encode_len
- ap_bfileno
- ap_bflsbuf
- ap_bflush
ap_bgetflag
ap_bgetopt
ap_bgets
@@ -98,7 +92,6 @@
ap_block_alarms
ap_blookc
ap_bnonblock
- ap_bonerror
ap_bprintf
ap_bpushfd
ap_bpushh



1.32 +20 -7 httpd-docs-1.3/apidoc/api.list

Index: api.list
===================================================================
RCS file: /home/cvs/httpd-docs-1.3/apidoc/api.list,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -u -r1.31 -r1.32
--- api.list 2000/09/19 02:11:05 1.31
+++ api.list 2000/09/19 14:00:25 1.32
@@ -1857,17 +1857,19 @@
|<dict-$*.html
R|ap_bfileno\
|int $*(BUFF *fb, int direction);\
- |\
+ |ap_pclosef(c-&gt;req-&gt;pool, $*(c-&gt;fp, B_WR);\
|SA-BUFF\
|
R|ap_bflsbuf\
|int $*(int c, BUFF *fb);\
- |\
+ |<i>Not used directly, only through the ap_bputc() macro.</i>\
|SA-BUFF\
|
R|ap_bflush\
|int $*(BUFF *fb);\
- |\
+ |BUFF *script_out;\n\
+int rc;\n\
+rc = $*(script_out);\
|SA-BUFF\
|
M|ap_bgetc\
@@ -1922,7 +1924,7 @@
|
R|ap_bonerror\
|void $*(BUFF *fb, void (*error) (BUFF *b, int, void *), void *data);\
- |\
+ |<i>No examples available; not currently used in Apaceh 1.3.</i>\
|\
|
R|ap_bpushfd\
@@ -4105,17 +4107,28 @@
|
R|ap_base64encode\
|int $*(char *coded_dst, const char *plain_src, int len_plain_src);\
+ |int l;\n\
+char *optarg;\n\
+char *tmp;\n\
+l = $*(tmp, optarg, strlen(optarg));\
|\
- |\
|
R|ap_base64encode_binary\
|int $*(char *coded_dst, const unsigned char *plain_src, int len_plain_src);\
- |\
+ |int l;\n\
+char *out;\n\
+unsigned char digest[16];\n\
+l = $*(out, digest, sizeof(digest));\
|\
|
R|ap_base64encode_len\
|int $*(int len);\
- |\
+ |int needed;\n\
+int l;\n\
+char *string;\n\
+needed = $*(strlen(string));\n\
+buffer = (char *) ap_palloc(p, needed + 1);\n\
+l = ap_base64encode(buffer, string, strlen(string));\
|\
|
R|ap_exists_config_define\