dougm 01/08/19 09:06:57
Modified: include apr_uri.h
uri apr_uri.c
Log:
s/APU_URI_/APR_URI_/g
Revision Changes Path
1.7 +18 -18 apr-util/include/apr_uri.h
Index: apr_uri.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_uri.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- apr_uri.h 2001/08/19 16:00:21 1.6
+++ apr_uri.h 2001/08/19 16:06:57 1.7
@@ -75,24 +75,24 @@
* @package Apache URI library
*/
-#define APU_URI_FTP_DEFAULT_PORT 21
-#define APU_URI_SSH_DEFAULT_PORT 22
-#define APU_URI_TELNET_DEFAULT_PORT 23
-#define APU_URI_GOPHER_DEFAULT_PORT 70
-#define APU_URI_HTTP_DEFAULT_PORT 80
-#define APU_URI_POP_DEFAULT_PORT 110
-#define APU_URI_NNTP_DEFAULT_PORT 119
-#define APU_URI_IMAP_DEFAULT_PORT 143
-#define APU_URI_PROSPERO_DEFAULT_PORT 191
-#define APU_URI_WAIS_DEFAULT_PORT 210
-#define APU_URI_LDAP_DEFAULT_PORT 389
-#define APU_URI_HTTPS_DEFAULT_PORT 443
-#define APU_URI_RTSP_DEFAULT_PORT 554
-#define APU_URI_SNEWS_DEFAULT_PORT 563
-#define APU_URI_ACAP_DEFAULT_PORT 674
-#define APU_URI_NFS_DEFAULT_PORT 2049
-#define APU_URI_TIP_DEFAULT_PORT 3372
-#define APU_URI_SIP_DEFAULT_PORT 5060
+#define APR_URI_FTP_DEFAULT_PORT 21
+#define APR_URI_SSH_DEFAULT_PORT 22
+#define APR_URI_TELNET_DEFAULT_PORT 23
+#define APR_URI_GOPHER_DEFAULT_PORT 70
+#define APR_URI_HTTP_DEFAULT_PORT 80
+#define APR_URI_POP_DEFAULT_PORT 110
+#define APR_URI_NNTP_DEFAULT_PORT 119
+#define APR_URI_IMAP_DEFAULT_PORT 143
+#define APR_URI_PROSPERO_DEFAULT_PORT 191
+#define APR_URI_WAIS_DEFAULT_PORT 210
+#define APR_URI_LDAP_DEFAULT_PORT 389
+#define APR_URI_HTTPS_DEFAULT_PORT 443
+#define APR_URI_RTSP_DEFAULT_PORT 554
+#define APR_URI_SNEWS_DEFAULT_PORT 563
+#define APR_URI_ACAP_DEFAULT_PORT 674
+#define APR_URI_NFS_DEFAULT_PORT 2049
+#define APR_URI_TIP_DEFAULT_PORT 3372
+#define APR_URI_SIP_DEFAULT_PORT 5060
/* Flags passed to unparse_uri_components(): */
#define APR_URI_UNP_OMITSITEPART (1U<<0) /* suppress "scheme://[EMAIL
PROTECTED]:port" */
1.10 +20 -20 apr-util/uri/apr_uri.c
Index: apr_uri.c
===================================================================
RCS file: /home/cvs/apr-util/uri/apr_uri.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- apr_uri.c 2001/08/19 16:00:21 1.9
+++ apr_uri.c 2001/08/19 16:06:57 1.10
@@ -85,26 +85,26 @@
/* they are sorted by their expected frequency */
static schemes_t schemes[] =
{
- {"http", APU_URI_HTTP_DEFAULT_PORT},
- {"ftp", APU_URI_FTP_DEFAULT_PORT},
- {"https", APU_URI_HTTPS_DEFAULT_PORT},
- {"gopher", APU_URI_GOPHER_DEFAULT_PORT},
- {"ldap", APU_URI_LDAP_DEFAULT_PORT},
- {"nntp", APU_URI_NNTP_DEFAULT_PORT},
- {"snews", APU_URI_SNEWS_DEFAULT_PORT},
- {"imap", APU_URI_IMAP_DEFAULT_PORT},
- {"pop", APU_URI_POP_DEFAULT_PORT},
- {"sip", APU_URI_SIP_DEFAULT_PORT},
- {"rtsp", APU_URI_RTSP_DEFAULT_PORT},
- {"wais", APU_URI_WAIS_DEFAULT_PORT},
- {"z39.50r", APU_URI_WAIS_DEFAULT_PORT},
- {"z39.50s", APU_URI_WAIS_DEFAULT_PORT},
- {"prospero", APU_URI_PROSPERO_DEFAULT_PORT},
- {"nfs", APU_URI_NFS_DEFAULT_PORT},
- {"tip", APU_URI_TIP_DEFAULT_PORT},
- {"acap", APU_URI_ACAP_DEFAULT_PORT},
- {"telnet", APU_URI_TELNET_DEFAULT_PORT},
- {"ssh", APU_URI_SSH_DEFAULT_PORT},
+ {"http", APR_URI_HTTP_DEFAULT_PORT},
+ {"ftp", APR_URI_FTP_DEFAULT_PORT},
+ {"https", APR_URI_HTTPS_DEFAULT_PORT},
+ {"gopher", APR_URI_GOPHER_DEFAULT_PORT},
+ {"ldap", APR_URI_LDAP_DEFAULT_PORT},
+ {"nntp", APR_URI_NNTP_DEFAULT_PORT},
+ {"snews", APR_URI_SNEWS_DEFAULT_PORT},
+ {"imap", APR_URI_IMAP_DEFAULT_PORT},
+ {"pop", APR_URI_POP_DEFAULT_PORT},
+ {"sip", APR_URI_SIP_DEFAULT_PORT},
+ {"rtsp", APR_URI_RTSP_DEFAULT_PORT},
+ {"wais", APR_URI_WAIS_DEFAULT_PORT},
+ {"z39.50r", APR_URI_WAIS_DEFAULT_PORT},
+ {"z39.50s", APR_URI_WAIS_DEFAULT_PORT},
+ {"prospero", APR_URI_PROSPERO_DEFAULT_PORT},
+ {"nfs", APR_URI_NFS_DEFAULT_PORT},
+ {"tip", APR_URI_TIP_DEFAULT_PORT},
+ {"acap", APR_URI_ACAP_DEFAULT_PORT},
+ {"telnet", APR_URI_TELNET_DEFAULT_PORT},
+ {"ssh", APR_URI_SSH_DEFAULT_PORT},
{ NULL, 0xFFFF } /* unknown port */
};