Browse Source

Fixed bug #44233 (MSG_PEEK undefined under BeOS R5)

PECL
Ilia Alshanetsky 18 years ago
parent
commit
425c4bca2e
  1. 4
      main/streams/xp_socket.c

4
main/streams/xp_socket.c

@ -35,6 +35,10 @@
# define MSG_DONTWAIT 0
#endif
#ifndef MSG_PEEK
# define MSG_PEEK 0
#endif
php_stream_ops php_stream_generic_socket_ops;
PHPAPI php_stream_ops php_stream_socket_ops;
php_stream_ops php_stream_udp_socket_ops;

Loading…
Cancel
Save