File tree 7 files changed +4
-4
lines changed
7 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if (PHP_MYSQLND != "no") {
16
16
"mysqlnd_ext_plugin.c " +
17
17
"mysqlnd_loaddata.c " +
18
18
"mysqlnd_reverse_api.c " +
19
- "mysqlnd_net .c " +
19
+ "mysqlnd_vio .c " +
20
20
"mysqlnd_plugin.c " +
21
21
"mysqlnd_ps.c " +
22
22
"mysqlnd_ps_codec.c " +
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ dnl If some extension uses mysqlnd it will get compiled in PHP core
19
19
if test "$PHP_MYSQLND" != "no" || test "$PHP_MYSQLND_ENABLED" = "yes"; then
20
20
mysqlnd_ps_sources="mysqlnd_ps.c mysqlnd_ps_codec.c"
21
21
mysqlnd_base_sources="mysqlnd.c mysqlnd_alloc.c mysqlnd_charset.c mysqlnd_wireprotocol.c \
22
- mysqlnd_loaddata.c mysqlnd_reverse_api.c mysqlnd_net .c \
22
+ mysqlnd_loaddata.c mysqlnd_reverse_api.c mysqlnd_vio .c \
23
23
mysqlnd_statistics.c mysqlnd_driver.c mysqlnd_ext_plugin.c mysqlnd_auth.c \
24
24
mysqlnd_result.c mysqlnd_result_meta.c mysqlnd_debug.c\
25
25
mysqlnd_block_alloc.c mysqlnd_plugin.c php_mysqlnd.c"
Original file line number Diff line number Diff line change 21
21
/* $Id$ */
22
22
#include "php.h"
23
23
#include "mysqlnd.h"
24
+ #include "mysqlnd_vio.h"
24
25
#include "mysqlnd_wireprotocol.h"
25
26
#include "mysqlnd_priv.h"
26
27
#include "mysqlnd_result.h"
Original file line number Diff line number Diff line change 21
21
/* $Id: mysqlnd.c 317989 2011-10-10 20:49:28Z andrey $ */
22
22
#include "php.h"
23
23
#include "mysqlnd.h"
24
+ #include "mysqlnd_vio.h"
24
25
#include "mysqlnd_wireprotocol.h"
25
26
#include "mysqlnd_priv.h"
26
27
#include "mysqlnd_result.h"
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 23
23
#ifndef MYSQLND_WIREPROTOCOL_H
24
24
#define MYSQLND_WIREPROTOCOL_H
25
25
26
- #include "mysqlnd_net.h"
27
-
28
26
#define MYSQLND_HEADER_SIZE 4
29
27
#define COMPRESSED_HEADER_SIZE 3
30
28
You can’t perform that action at this time.
0 commit comments