zeev Sat Mar 17 18:32:04 2001 EDT Modified files: /php4/main SAPI.c SAPI.h Log: These functions are not necessary - that's what sapi_register_post_entry() and sapi_unregister_post_entry() are for... Also, please maintain K&R code layout, it's very messy to have different styles intermixed in the same codebase, and especially in the same files! Index: php4/main/SAPI.c diff -u php4/main/SAPI.c:1.100 php4/main/SAPI.c:1.101 --- php4/main/SAPI.c:1.100 Sun Feb 25 22:07:30 2001 +++ php4/main/SAPI.c Sat Mar 17 18:32:04 2001 @@ -538,49 +538,6 @@ zend_hash_del(&known_post_content_types, post_entry->content_type, post_entry->content_type_len+1); } -SAPI_API int sapi_add_post_entry(char *content_type - , void (*post_reader)(SLS_D) - , void (*post_handler)(char *content_type_dup - , void *arg SLS_DC)) { - - sapi_post_entry *post_entry = (sapi_post_entry *)malloc(sizeof(sapi_post_entry)); - if(!post_entry) return 0; - - post_entry->content_type = strdup(content_type); - if(post_entry->content_type == NULL) return 0; - post_entry->content_type_len = strlen(content_type); - post_entry->post_reader = post_reader; - post_entry->post_handler = post_handler; - - return zend_hash_add(&known_post_content_types - , post_entry->content_type - , post_entry->content_type_len+1 - , (void *) post_entry - , sizeof(sapi_post_entry) - , NULL - ); -} - -SAPI_API void sapi_remove_post_entry(char *content_type) { - sapi_post_entry *post_entry; - - zend_hash_find(&known_post_content_types - ,content_type - ,strlen(content_type)+1 - ,(void **)&post_entry - ); - - if(post_entry != NULL) { - zend_hash_del(&known_post_content_types - ,content_type - ,strlen(content_type)+1 - ); - free(post_entry->content_type); - free(post_entry); - } else { - php_error(E_WARNING,"unregister post handler failed in fdf"); - } -} SAPI_API int sapi_register_default_post_reader(void (*default_post_reader)(SLS_D)) { Index: php4/main/SAPI.h diff -u php4/main/SAPI.h:1.67 php4/main/SAPI.h:1.68 --- php4/main/SAPI.h:1.67 Sun Feb 25 22:07:31 2001 +++ php4/main/SAPI.h Sat Mar 17 18:32:04 2001 @@ -146,10 +146,6 @@ SAPI_API int sapi_register_post_entries(sapi_post_entry *post_entry); SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry); -SAPI_API int sapi_add_post_entry(char *content_type - , void (*post_reader)(SLS_D) - , void (*post_handler)(char *content_type_dup, void *arg SLS_DC)); -SAPI_API void sapi_remove_post_entry(char *content_type); SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry); SAPI_API int sapi_register_default_post_reader(void (*default_post_reader)(SLS_D)); -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]