X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_request_factory.h;h=fd6a09257ab33f2b6c376194c6a8beb895171664;hp=881025a846c74fd5ff6c0120987ab09121d3c898;hb=c52a84fd06e87bf72eb98e83abfff29779b0681c;hpb=df06e2dbf48a3b0d96f2c62071c1b5fc907a98d0 diff --git a/php_http_request_factory.h b/php_http_request_factory.h index 881025a..fd6a092 100644 --- a/php_http_request_factory.h +++ b/php_http_request_factory.h @@ -1,11 +1,24 @@ +/* + +--------------------------------------------------------------------+ + | PECL :: http | + +--------------------------------------------------------------------+ + | Redistribution and use in source and binary forms, with or without | + | modification, are permitted provided that the conditions mentioned | + | in the accompanying LICENSE file are met. | + +--------------------------------------------------------------------+ + | Copyright (c) 2004-2011, Michael Wallner | + +--------------------------------------------------------------------+ +*/ + #ifndef PHP_HTTP_REQUEST_FACTORY_H #define PHP_HTTP_REQUEST_FACTORY_H #include "php_http_request.h" #include "php_http_request_pool.h" +#include "php_http_request_datashare.h" typedef struct php_http_request_factory_driver { - php_http_request_ops_t *request_ops; + php_http_client_ops_t *request_ops; php_http_request_pool_ops_t *request_pool_ops; php_http_request_datashare_ops_t *request_datashare_ops; } php_http_request_factory_driver_t; @@ -30,3 +43,13 @@ extern PHP_MINIT_FUNCTION(http_request_factory); extern PHP_MSHUTDOWN_FUNCTION(http_request_factory); #endif /* PHP_HTTP_REQUEST_FACTORY_H */ + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + * vim600: noet sw=4 ts=4 fdm=marker + * vim<600: noet sw=4 ts=4 + */ +