Browse Source

Allow unregistering content types as well.

experimental/newoperator
Zeev Suraski 28 years ago
parent
commit
4f545f9c6b
  1. 6
      main/SAPI.c
  2. 1
      main/SAPI.h

6
main/SAPI.c

@ -259,3 +259,9 @@ SAPI_API int sapi_register_post_reader(sapi_post_content_type_reader *post_conte
{
return zend_hash_add(&known_post_content_types, post_content_type_reader->content_type, post_content_type_reader->content_type_len+1, (void *) post_content_type_reader, sizeof(sapi_post_content_type_reader), NULL);
}
SAPI_API void sapi_unregister_post_reader(sapi_post_content_type_reader *post_content_type_reader)
{
zend_hash_del(&known_post_content_types, post_content_type_reader->content_type, post_content_type_reader->content_type_len+1);
}

1
main/SAPI.h

@ -101,6 +101,7 @@ SAPI_API int sapi_add_header(char *header_line, uint header_line_len);
SAPI_API int sapi_send_headers();
SAPI_API int sapi_register_post_reader(sapi_post_content_type_reader *post_content_type_reader);
SAPI_API void sapi_unregister_post_reader(sapi_post_content_type_reader *post_content_type_reader);
struct _sapi_module_struct {
char *name;

Loading…
Cancel
Save