diff options
Diffstat (limited to 'ext/standard/file.h')
| -rw-r--r-- | ext/standard/file.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/standard/file.h b/ext/standard/file.h index d423475386..a9b96d6b38 100644 --- a/ext/standard/file.h +++ b/ext/standard/file.h @@ -129,6 +129,11 @@ typedef struct { HashTable *stream_filters; /* per-request copy of stream_filters_hash */ HashTable *wrapper_errors; /* key: wrapper address; value: linked list of char* */ int pclose_wait; +#if defined(HAVE_GETHOSTBYNAME_R) + struct hostent tmp_host_info; + char *tmp_host_buf; + size_t tmp_host_buf_len; +#endif } php_file_globals; #ifdef ZTS |
