Commit cfc780b2 authored by Ralf S. Engelschall's avatar Ralf S. Engelschall
Browse files

Use different namespace for internal defines.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89027 13f79535-47bb-0310-9956-ffa450edef68
parent 885e57f8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -61,8 +61,8 @@
                                  trying to perfect the art of
                                  never finishing something.''
                                             -- Rob Hartill         */
#ifndef MOD_SSL_H
#define MOD_SSL_H 1
#ifndef __MOD_SSL_H__
#define __MOD_SSL_H__

/* 
 * Optionally enable the experimental stuff, but allow the user to
@@ -702,4 +702,4 @@ void ssl_util_thread_setup(void);

#endif /* XXX */

#endif /* MOD_SSL_H */
#endif /* __MOD_SSL_H__ */
+3 −3
Original line number Diff line number Diff line
@@ -58,8 +58,8 @@
 */
                             /* ``May all your PUSHes be POPed.'' */

#ifndef SSL_EXPR_H
#define SSL_EXPR_H
#ifndef __SSL_EXPR_H__
#define __SSL_EXPR_H__

#ifndef FALSE
#define FALSE 0
@@ -133,4 +133,4 @@ extern char *ssl_expr_get_error(void);
extern ssl_expr *ssl_expr_make(ssl_expr_node_op, void *, void *);
extern BOOL      ssl_expr_eval(request_rec *, ssl_expr *);

#endif /* SSL_EXPR_H */
#endif /* __SSL_EXPR_H__ */
+3 −3
Original line number Diff line number Diff line
@@ -57,8 +57,8 @@
 * ====================================================================
 */

#ifndef SSL_UTIL_SSL_H
#define SSL_UTIL_SSL_H
#ifndef __SSL_UTIL_SSL_H__
#define __SSL_UTIL_SSL_H__

/*
 * Determine SSL library version number
@@ -114,4 +114,4 @@ char *SSL_SESSION_id2sz(unsigned char *, int);

#endif /* XXX */

#endif /* SSL_UTIL_SSL_H */
#endif /* __SSL_UTIL_SSL_H__ */
+3 −3
Original line number Diff line number Diff line
@@ -80,8 +80,8 @@
 * without express or implied warranty.
 */

#ifndef SSL_UTIL_TABLE_H
#define SSL_UTIL_TABLE_H
#ifndef __SSL_UTIL_TABLE_H__
#define __SSL_UTIL_TABLE_H__

#if 0 /* XXX */

@@ -188,4 +188,4 @@ extern int table_entry_info(table_t *table_p, table_entry_t *entry_p

#endif /* XXX */

#endif /* ! SSL_UTIL_TABLE_H */
#endif /* __SSL_UTIL_TABLE_H__ */