projects
/
m6w6
/
ext-http
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
620dcb8
)
- missing include
author
Michael Wallner
<mike@php.net>
Tue, 2 Aug 2005 17:23:28 +0000
(17:23 +0000)
committer
Michael Wallner
<mike@php.net>
Tue, 2 Aug 2005 17:23:28 +0000
(17:23 +0000)
http_request_object.c
patch
|
blob
|
history
diff --git
a/http_request_object.c
b/http_request_object.c
index eb72e93f55f5d4acd83672b427ef6a74ac80701d..0c68635b1a662f1af3814bdf8b1abeb4336938b9 100644
(file)
--- a/
http_request_object.c
+++ b/
http_request_object.c
@@
-34,6
+34,8
@@
#include "php_http_message_object.h"
#include "php_http_exception_object.h"
+#include "missing.h"
+
#ifdef PHP_WIN32
# include <winsock2.h>
#endif
@@
-278,7
+280,7
@@
zend_function_entry http_request_object_fe[] = {
HTTP_REQUEST_ALIAS(methodUnregister, http_request_method_unregister)
HTTP_REQUEST_ALIAS(methodName, http_request_method_name)
HTTP_REQUEST_ALIAS(methodExists, http_request_method_exists)
-
+
{NULL, NULL, NULL}
};
static zend_object_handlers http_request_object_handlers;