mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Change mostly all old module structure hooks and EAPI hooks to
ap_hook_xxx equivalents. More work has to be done here to clean all this up and reduce to a minimum... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89020 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -62,31 +62,37 @@
|
||||
-- Unknown */
|
||||
#include "mod_ssl.h"
|
||||
|
||||
#if 0 /* XXX */
|
||||
|
||||
/* _________________________________________________________________
|
||||
**
|
||||
** I/O Hooks
|
||||
** _________________________________________________________________
|
||||
*/
|
||||
|
||||
#if 0 /* XXX */
|
||||
static int ssl_io_hook_read(BUFF *fb, char *buf, int len);
|
||||
static int ssl_io_hook_write(BUFF *fb, char *buf, int len);
|
||||
#endif /* XXX */
|
||||
|
||||
void ssl_io_register(void)
|
||||
{
|
||||
#if 0 /* XXX */
|
||||
ap_hook_register("ap::buff::read", ssl_io_hook_read, AP_HOOK_NOCTX);
|
||||
ap_hook_register("ap::buff::write", ssl_io_hook_write, AP_HOOK_NOCTX);
|
||||
#endif /* XXX */
|
||||
return;
|
||||
}
|
||||
|
||||
void ssl_io_unregister(void)
|
||||
{
|
||||
#if 0 /* XXX */
|
||||
ap_hook_unregister("ap::buff::read", ssl_io_hook_read);
|
||||
ap_hook_unregister("ap::buff::write", ssl_io_hook_write);
|
||||
#endif /* XXX */
|
||||
return;
|
||||
}
|
||||
|
||||
#if 0 /* XXX */
|
||||
|
||||
static int ssl_io_hook_read(BUFF *fb, char *buf, int len)
|
||||
{
|
||||
SSL *ssl;
|
||||
|
Reference in New Issue
Block a user