File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1723,7 +1723,7 @@ PHP_FUNCTION(socket_cmsg_space)
1723
1723
RETURN_LONG ((long )CMSG_SPACE (entry -> size + n * entry -> var_el_size ));
1724
1724
}
1725
1725
1726
- void _socket_sendrecvmsg_init (INIT_FUNC_ARGS )
1726
+ void php_socket_sendrecvmsg_init (INIT_FUNC_ARGS )
1727
1727
{
1728
1728
/* IPv6 ancillary data
1729
1729
* Note that support for sticky options via setsockopt() is not implemented
@@ -1763,7 +1763,7 @@ void _socket_sendrecvmsg_init(INIT_FUNC_ARGS)
1763
1763
#endif
1764
1764
}
1765
1765
1766
- void _socket_sendrecvmsg_shutdown (SHUTDOWN_FUNC_ARGS )
1766
+ void php_socket_sendrecvmsg_shutdown (SHUTDOWN_FUNC_ARGS )
1767
1767
{
1768
1768
#ifdef ZTS
1769
1769
tsrm_mutex_free (ancillary_mutex );
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ PHP_FUNCTION(socket_sendmsg);
4
4
PHP_FUNCTION (socket_recvmsg );
5
5
PHP_FUNCTION (socket_cmsg_space );
6
6
7
- void _socket_sendrecvmsg_init (INIT_FUNC_ARGS );
8
- void _socket_sendrecvmsg_shutdown (SHUTDOWN_FUNC_ARGS );
7
+ void php_socket_sendrecvmsg_init (INIT_FUNC_ARGS );
8
+ void php_socket_sendrecvmsg_shutdown (SHUTDOWN_FUNC_ARGS );
Original file line number Diff line number Diff line change @@ -751,7 +751,7 @@ PHP_MINIT_FUNCTION(sockets)
751
751
REGISTER_LONG_CONSTANT ("IPV6_UNICAST_HOPS" , IPV6_UNICAST_HOPS , CONST_CS | CONST_PERSISTENT );
752
752
#endif
753
753
754
- _socket_sendrecvmsg_init (INIT_FUNC_ARGS_PASSTHRU );
754
+ php_socket_sendrecvmsg_init (INIT_FUNC_ARGS_PASSTHRU );
755
755
756
756
return SUCCESS ;
757
757
}
@@ -774,7 +774,7 @@ PHP_RSHUTDOWN_FUNCTION(sockets)
774
774
efree (SOCKETS_G (strerror_buf ));
775
775
SOCKETS_G (strerror_buf ) = NULL ;
776
776
}
777
- _socket_sendrecvmsg_shutdown (SHUTDOWN_FUNC_ARGS_PASSTHRU );
777
+ php_socket_sendrecvmsg_shutdown (SHUTDOWN_FUNC_ARGS_PASSTHRU );
778
778
779
779
return SUCCESS ;
780
780
}
You can’t perform that action at this time.
0 commit comments