Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 67862 invoked by uid 500); 19 Sep 2000 14:00:32 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 67840 invoked by uid 500); 19 Sep 2000 14:00:31 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 19 Sep 2000 14:00:29 -0000 Message-ID: <20000919140029.67817.qmail@locus.apache.org> From: coar@locus.apache.org To: httpd-docs-1.3-cvs@apache.org Subject: 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 @@ |Not used directly, only through the ap_bputc() macro.\ |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);\ - |\ + |No examples available; not currently used in Apaceh 1.3.\ |\ | 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\