1--TEST--
2Bug - socket_export_stream() with wrong protocol
3--EXTENSIONS--
4sockets
5--FILE--
6<?php
7$sock = socket_create(AF_INET, SOCK_DGRAM, 0);
8$stream = socket_export_stream($sock);
9echo stream_get_meta_data($stream)['stream_type']. "\n";
10?>
11--EXPECT--
12udp_socket
13