Skip to content

Commit c849c2f

Browse files
committed
Code for compatibility with getdns 0.9.0. More coming.
1 parent 0bd242d commit c849c2f

24 files changed

+1558
-39
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 2016-01-XX: Version 0.11.0
2+
* Updated for compatibility with getdns 0.9.0.
3+
14
* 2015-11-20: Version 0.10.0
25
* Updated for compatibility with getdns 0.5.1.
36
* Added php_getdns_context_get_tls_authentication()

php_getdns.h

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ZEND_END_MODULE_GLOBALS(getdns)
5757

5858
/* Miscellaneous definitions. */
5959

60-
#define PHP_GETDNS_VERSION "0.10.0"
60+
#define PHP_GETDNS_VERSION "0.11.0"
6161
#define PHP_GETDNS_EXTNAME "getdns"
6262

6363
/* PHP environment setup functions. */
@@ -145,6 +145,7 @@ PHP_FUNCTION(php_getdns_dict_set_list);
145145
PHP_FUNCTION(php_getdns_dict_util_get_string);
146146
PHP_FUNCTION(php_getdns_dict_util_set_string);
147147
PHP_FUNCTION(php_getdns_display_ip_address);
148+
PHP_FUNCTION(php_getdns_fp2rr_list);
148149
PHP_FUNCTION(php_getdns_general);
149150
PHP_FUNCTION(php_getdns_general_sync);
150151
PHP_FUNCTION(php_getdns_get_errorstr_by_id);
@@ -171,13 +172,25 @@ PHP_FUNCTION(php_getdns_pretty_print_dict);
171172
PHP_FUNCTION(php_getdns_pretty_print_list);
172173
PHP_FUNCTION(php_getdns_print_json_dict);
173174
PHP_FUNCTION(php_getdns_print_json_list);
175+
PHP_FUNCTION(php_getdns_pubkey_pin_create_from_string);
176+
PHP_FUNCTION(php_getdns_pubkey_pinset_sanity_check);
174177
PHP_FUNCTION(php_getdns_root_trust_anchor);
178+
PHP_FUNCTION(php_getdns_rr_dict2str);
179+
PHP_FUNCTION(php_getdns_rr_dict2str_buf);
180+
PHP_FUNCTION(php_getdns_rr_dict2str_scan);
181+
PHP_FUNCTION(php_getdns_rr_dict2wire);
182+
PHP_FUNCTION(php_getdns_rr_dict2wire_buf);
183+
PHP_FUNCTION(php_getdns_rr_dict2wire_scan);
175184
PHP_FUNCTION(php_getdns_service);
176185
PHP_FUNCTION(php_getdns_service_sync);
186+
PHP_FUNCTION(php_getdns_str2rr_dict);
177187
PHP_FUNCTION(php_getdns_util_convert_array);
178188
PHP_FUNCTION(php_getdns_util_convert_dict);
179189
PHP_FUNCTION(php_getdns_util_convert_list);
180190
PHP_FUNCTION(php_getdns_validate_dnssec);
191+
PHP_FUNCTION(php_getdns_wire2rr_dict);
192+
PHP_FUNCTION(php_getdns_wire2rr_dict_buf);
193+
PHP_FUNCTION(php_getdns_wire2rr_dict_scan);
181194

182195
extern zend_module_entry getdns_module_entry;
183196
#define phpext_getdns_ptr &getdns_module_entry

0 commit comments

Comments
 (0)