1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070
|
<?php
/** @generate-class-entries */
/**
* @var int
* @cvalue AF_UNIX
*/
const AF_UNIX = UNKNOWN;
/**
* @var int
* @cvalue AF_INET
*/
const AF_INET = UNKNOWN;
#ifdef HAVE_IPV6
/**
* @var int
* @cvalue AF_INET6
*/
const AF_INET6 = UNKNOWN;
#endif
#ifdef AF_DIVERT
/**
* @var int
* @cvalue AF_DIVERT
*/
const AF_DIVERT = UNKNOWN;
#endif
/**
* @var int
* @cvalue SOCK_STREAM
*/
const SOCK_STREAM = UNKNOWN;
/**
* @var int
* @cvalue SOCK_DGRAM
*/
const SOCK_DGRAM = UNKNOWN;
/**
* @var int
* @cvalue SOCK_RAW
*/
const SOCK_RAW = UNKNOWN;
/**
* @var int
* @cvalue SOCK_SEQPACKET
*/
const SOCK_SEQPACKET = UNKNOWN;
#ifdef SOCK_RDM
/**
* @var int
* @cvalue SOCK_RDM
*/
const SOCK_RDM = UNKNOWN;
#endif
#ifdef SOCK_CONN_DGRAM
/**
* @var int
* @cvalue SOCK_CONN_DGRAM
*/
const SOCK_CONN_DGRAM = UNKNOWN;
#endif
#ifdef SOCK_DCCP
/**
* is an alias of SOCK_CONN_DGRAM on some platforms
* @var int
* @cvalue SOCK_DCCP
*/
const SOCK_DCCP = UNKNOWN;
#endif
#ifdef SOCK_CLOEXEC
/**
* @var int
* @cvalue SOCK_CLOEXEC
*/
const SOCK_CLOEXEC = UNKNOWN;
#endif
#ifdef SOCK_NONBLOCK
/**
* @var int
* @cvalue SOCK_NONBLOCK
*/
const SOCK_NONBLOCK = UNKNOWN;
#endif
/**
* @var int
* @cvalue MSG_OOB
*/
const MSG_OOB = UNKNOWN;
/**
* @var int
* @cvalue MSG_WAITALL
*/
const MSG_WAITALL = UNKNOWN;
/**
* @var int
* @cvalue MSG_CTRUNC
*/
const MSG_CTRUNC = UNKNOWN;
/**
* @var int
* @cvalue MSG_TRUNC
*/
const MSG_TRUNC = UNKNOWN;
/**
* @var int
* @cvalue MSG_PEEK
*/
const MSG_PEEK = UNKNOWN;
/**
* @var int
* @cvalue MSG_DONTROUTE
*/
const MSG_DONTROUTE = UNKNOWN;
#ifdef MSG_EOR
/**
* @var int
* @cvalue MSG_EOR
*/
const MSG_EOR = UNKNOWN;
#endif
#ifdef MSG_EOF
/**
* @var int
* @cvalue MSG_EOF
*/
const MSG_EOF = UNKNOWN;
#endif
#ifdef MSG_CONFIRM
/**
* @var int
* @cvalue MSG_CONFIRM
*/
const MSG_CONFIRM = UNKNOWN;
#endif
#ifdef MSG_ERRQUEUE
/**
* @var int
* @cvalue MSG_ERRQUEUE
*/
const MSG_ERRQUEUE = UNKNOWN;
#endif
#ifdef MSG_NOSIGNAL
/**
* @var int
* @cvalue MSG_NOSIGNAL
*/
const MSG_NOSIGNAL = UNKNOWN;
#endif
#ifdef MSG_DONTWAIT
/**
* @var int
* @cvalue MSG_DONTWAIT
*/
const MSG_DONTWAIT = UNKNOWN;
#endif
#ifdef MSG_MORE
/**
* @var int
* @cvalue MSG_MORE
*/
const MSG_MORE = UNKNOWN;
#endif
#ifdef MSG_WAITFORONE
/**
* @var int
* @cvalue MSG_WAITFORONE
*/
const MSG_WAITFORONE = UNKNOWN;
#endif
#ifdef MSG_CMSG_CLOEXEC
/**
* @var int
* @cvalue MSG_CMSG_CLOEXEC
*/
const MSG_CMSG_CLOEXEC = UNKNOWN;
#endif
#ifdef MSG_ZEROCOPY
/**
* @var int
* @cvalue MSG_ZEROCOPY
*/
const MSG_ZEROCOPY = UNKNOWN;
#endif
/**
* @var int
* @cvalue SO_DEBUG
*/
const SO_DEBUG = UNKNOWN;
/**
* @var int
* @cvalue SO_REUSEADDR
*/
const SO_REUSEADDR = UNKNOWN;
#ifdef SO_REUSEPORT
/**
* @var int
* @cvalue SO_REUSEPORT
*/
const SO_REUSEPORT = UNKNOWN;
#endif
#ifdef SO_REUSEPORT_LB
/**
* @var int
* @cvalue SO_REUSEPORT_LB
*/
const SO_REUSEPORT_LB = UNKNOWN;
#endif
/**
* @var int
* @cvalue SO_KEEPALIVE
*/
const SO_KEEPALIVE = UNKNOWN;
/**
* @var int
* @cvalue SO_DONTROUTE
*/
const SO_DONTROUTE = UNKNOWN;
/**
* @var int
* @cvalue SO_LINGER
*/
const SO_LINGER = UNKNOWN;
#ifdef SO_LINGER_SEC
/**
* @var int
* @cvalue SO_LINGER_SEC
*/
const SO_LINGER_SEC = UNKNOWN;
#endif
/**
* @var int
* @cvalue SO_BROADCAST
*/
const SO_BROADCAST = UNKNOWN;
/**
* @var int
* @cvalue SO_OOBINLINE
*/
const SO_OOBINLINE = UNKNOWN;
/**
* @var int
* @cvalue SO_SNDBUF
*/
const SO_SNDBUF = UNKNOWN;
/**
* @var int
* @cvalue SO_RCVBUF
*/
const SO_RCVBUF = UNKNOWN;
/**
* @var int
* @cvalue SO_SNDLOWAT
*/
const SO_SNDLOWAT = UNKNOWN;
/**
* @var int
* @cvalue SO_RCVLOWAT
*/
const SO_RCVLOWAT = UNKNOWN;
/**
* @var int
* @cvalue SO_SNDTIMEO
*/
const SO_SNDTIMEO = UNKNOWN;
/**
* @var int
* @cvalue SO_RCVTIMEO
*/
const SO_RCVTIMEO = UNKNOWN;
/**
* @var int
* @cvalue SO_TYPE
*/
const SO_TYPE = UNKNOWN;
#ifdef SO_FAMILY
/**
* @var int
* @cvalue SO_FAMILY
*/
const SO_FAMILY = UNKNOWN;
#endif
/**
* @var int
* @cvalue SO_ERROR
*/
const SO_ERROR = UNKNOWN;
#ifdef SO_BINDTODEVICE
/**
* @var int
* @cvalue SO_BINDTODEVICE
*/
const SO_BINDTODEVICE = UNKNOWN;
#endif
#ifdef SO_BINDTOIFINDEX
/**
* @var int
* @cvalue SO_BINDTOIFINDEX
*/
const SO_BINDTOIFINDEX = UNKNOWN;
#endif
#ifdef SO_USER_COOKIE
/**
* @var int
* @cvalue SO_LABEL
*/
const SO_LABEL = UNKNOWN;
/**
* @var int
* @cvalue SO_PEERLABEL
*/
const SO_PEERLABEL = UNKNOWN;
/**
* @var int
* @cvalue SO_LISTENQLIMIT
*/
const SO_LISTENQLIMIT = UNKNOWN;
/**
* @var int
* @cvalue SO_LISTENQLEN
*/
const SO_LISTENQLEN = UNKNOWN;
/**
* @var int
* @cvalue SO_USER_COOKIE
*/
const SO_USER_COOKIE = UNKNOWN;
#endif
#ifdef SO_SETFIB
/**
* @var int
* @cvalue SO_SETFIB
*/
const SO_SETFIB = UNKNOWN;
#endif
#ifdef SO_ACCEPTFILTER
/**
* @var int
* @cvalue SO_ACCEPTFILTER
*/
const SO_ACCEPTFILTER = UNKNOWN;
#endif
#ifdef SO_RERROR
/**
* @var int
* @cvalue SO_RERROR
*/
const SO_RERROR = UNKNOWN;
#endif
#ifdef SO_SOPLICE
/**
* @var int
* @cvalue SO_SPLICE
*/
const SO_SPLICE = UNKNOWN;
#endif
#ifdef SO_ZEROIZE
/**
* @var int
* @cvalue SO_ZEROIZE
*/
const SO_ZEROIZE = UNKNOWN;
#endif
#ifdef SOL_FILTER
/**
* @var int
* @cvalue SOL_FILTER
*/
const SOL_FILTER = UNKNOWN;
/**
* @var int
* @cvalue FIL_ATTACH
*/
const FIL_ATTACH = UNKNOWN;
/**
* @var int
* @cvalue FIL_DETACH
*/
const FIL_DETACH = UNKNOWN;
#endif
#ifdef SO_DONTTRUNC
/**
* @var int
* @cvalue SO_DONTTRUNC
*/
const SO_DONTTRUNC = UNKNOWN;
#endif
#ifdef SO_WANTMORE
/**
* @var int
* @cvalue SO_WANTMORE
*/
const SO_WANTMORE = UNKNOWN;
#endif
/**
* @var int
* @cvalue SOL_SOCKET
*/
const SOL_SOCKET = UNKNOWN;
/**
* @var int
* @cvalue SOMAXCONN
*/
const SOMAXCONN = UNKNOWN;
#ifdef SO_MARK
/**
* @var int
* @cvalue SO_MARK
*/
const SO_MARK = UNKNOWN;
#endif
#ifdef SO_RTABLE
/**
* @var int
* @cvalue SO_RTABLE
*/
const SO_RTABLE = UNKNOWN;
#endif
#ifdef SO_INCOMING_CPU
/**
* @var int
* @cvalue SO_INCOMING_CPU
*/
const SO_INCOMING_CPU = UNKNOWN;
#endif
#ifdef SO_MEMINFO
/**
* @var int
* @cvalue SO_MEMINFO
*/
const SO_MEMINFO = UNKNOWN;
#endif
#ifdef SO_BPF_EXTENSIONS
/**
* @var int
* @cvalue SO_BPF_EXTENSIONS
*/
const SO_BPF_EXTENSIONS = UNKNOWN;
#endif
#ifdef SO_EXCLBIND
/**
* @var int
* @cvalue SO_EXCLBIND
*/
const SO_EXCLBIND = UNKNOWN;
#endif
#ifdef SKF_AD_OFF
/**
* @var int
* @cvalue SKF_AD_OFF
*/
const SKF_AD_OFF = UNKNOWN;
#endif
#ifdef SKF_AD_PROTOCOL
/**
* @var int
* @cvalue SKF_AD_PROTOCOL
*/
const SKF_AD_PROTOCOL = UNKNOWN;
#endif
#ifdef SKF_AD_PKTTYPE
/**
* @var int
* @cvalue SKF_AD_PKTTYPE
*/
const SKF_AD_PKTTYPE = UNKNOWN;
#endif
#ifdef SKF_AD_IFINDEX
/**
* @var int
* @cvalue SKF_AD_IFINDEX
*/
const SKF_AD_IFINDEX = UNKNOWN;
#endif
#ifdef SKF_AD_NLATTR
/**
* @var int
* @cvalue SKF_AD_NLATTR
*/
const SKF_AD_NLATTR = UNKNOWN;
#endif
#ifdef SKF_AD_NLATTR_NEST
/**
* @var int
* @cvalue SKF_AD_NLATTR_NEST
*/
const SKF_AD_NLATTR_NEST = UNKNOWN;
#endif
#ifdef SKF_AD_MARK
/**
* @var int
* @cvalue SKF_AD_MARK
*/
const SKF_AD_MARK = UNKNOWN;
#endif
#ifdef SKF_AD_QUEUE
/**
* @var int
* @cvalue SKF_AD_QUEUE
*/
const SKF_AD_QUEUE = UNKNOWN;
#endif
#ifdef SKF_AD_HATYPE
/**
* @var int
* @cvalue SKF_AD_HATYPE
*/
const SKF_AD_HATYPE = UNKNOWN;
#endif
#ifdef SKF_AD_RXHASH
/**
* @var int
* @cvalue SKF_AD_RXHASH
*/
const SKF_AD_RXHASH = UNKNOWN;
#endif
#ifdef SKF_AD_CPU
/**
* @var int
* @cvalue SKF_AD_CPU
*/
const SKF_AD_CPU = UNKNOWN;
#endif
#ifdef SKF_AD_ALU_XOR_X
/**
* @var int
* @cvalue SKF_AD_ALU_XOR_X
*/
const SKF_AD_ALU_XOR_X = UNKNOWN;
#endif
#ifdef SKF_AD_VLAN_TAG
/**
* @var int
* @cvalue SKF_AD_VLAN_TAG
*/
const SKF_AD_VLAN_TAG = UNKNOWN;
#endif
#ifdef SKF_AD_VLAN_TAG_PRESENT
/**
* @var int
* @cvalue SKF_AD_VLAN_TAG_PRESENT
*/
const SKF_AD_VLAN_TAG_PRESENT = UNKNOWN;
#endif
#ifdef SKF_AD_PAY_OFFSET
/**
* @var int
* @cvalue SKF_AD_PAY_OFFSET
*/
const SKF_AD_PAY_OFFSET = UNKNOWN;
#endif
#ifdef SKF_AD_RANDOM
/**
* @var int
* @cvalue SKF_AD_RANDOM
*/
const SKF_AD_RANDOM = UNKNOWN;
#endif
#ifdef SKF_AD_VLAN_TPID
/**
* @var int
* @cvalue SKF_AD_VLAN_TPID
*/
const SKF_AD_VLAN_TPID = UNKNOWN;
#endif
#ifdef SKF_AD_MAX
/**
* @var int
* @cvalue SKF_AD_MAX
*/
const SKF_AD_MAX = UNKNOWN;
#endif
#ifdef TCP_CONGESTION
/**
* @var int
* @cvalue TCP_CONGESTION
*/
const TCP_CONGESTION = UNKNOWN;
#endif
#ifdef TCP_SYNCNT
/**
* @var int
* @cvalue TCP_SYNCNT
*/
const TCP_SYNCNT = UNKNOWN;
#endif
#ifdef SO_ZEROCOPY
/**
* @var int
* @cvalue SO_ZEROCOPY
*/
const SO_ZEROCOPY = UNKNOWN;
#endif
#ifdef TCP_NODELAY
/**
* @var int
* @cvalue TCP_NODELAY
*/
const TCP_NODELAY = UNKNOWN;
#endif
#ifdef TCP_NOTSENT_LOWAT
/**
* @var int
* @cvalue TCP_NOTSENT_LOWAT
*/
const TCP_NOTSENT_LOWAT = UNKNOWN;
#endif
#ifdef TCP_DEFER_ACCEPT
/**
* @var int
* @cvalue TCP_DEFER_ACCEPT
*/
const TCP_DEFER_ACCEPT = UNKNOWN;
#endif
#ifdef TCP_KEEPALIVE
/**
* @var int
* @cvalue TCP_KEEPALIVE
*/
const TCP_KEEPALIVE = UNKNOWN;
#endif
#ifdef TCP_KEEPIDLE
/**
* @var int
* @cvalue TCP_KEEPIDLE
*/
const TCP_KEEPIDLE = UNKNOWN;
/**
* @var int
* @cvalue TCP_KEEPINTVL
*/
const TCP_KEEPINTVL = UNKNOWN;
/**
* @var int
* @cvalue TCP_KEEPCNT
*/
const TCP_KEEPCNT = UNKNOWN;
#endif
/**
* @var int
* @cvalue PHP_NORMAL_READ
*/
const PHP_NORMAL_READ = UNKNOWN;
/**
* @var int
* @cvalue PHP_BINARY_READ
*/
const PHP_BINARY_READ = UNKNOWN;
/**
* @var int
* @cvalue PHP_MCAST_JOIN_GROUP
*/
const MCAST_JOIN_GROUP = UNKNOWN;
/**
* @var int
* @cvalue PHP_MCAST_LEAVE_GROUP
*/
const MCAST_LEAVE_GROUP = UNKNOWN;
#ifdef HAS_MCAST_EXT
/**
* @var int
* @cvalue PHP_MCAST_BLOCK_SOURCE
*/
const MCAST_BLOCK_SOURCE = UNKNOWN;
/**
* @var int
* @cvalue PHP_MCAST_UNBLOCK_SOURCE
*/
const MCAST_UNBLOCK_SOURCE = UNKNOWN;
/**
* @var int
* @cvalue PHP_MCAST_JOIN_SOURCE_GROUP
*/
const MCAST_JOIN_SOURCE_GROUP = UNKNOWN;
/**
* @var int
* @cvalue PHP_MCAST_LEAVE_SOURCE_GROUP
*/
const MCAST_LEAVE_SOURCE_GROUP = UNKNOWN;
#endif
/**
* @var int
* @cvalue IP_MULTICAST_IF
*/
const IP_MULTICAST_IF = UNKNOWN;
/**
* @var int
* @cvalue IP_MULTICAST_TTL
*/
const IP_MULTICAST_TTL = UNKNOWN;
/**
* @var int
* @cvalue IP_MULTICAST_LOOP
*/
const IP_MULTICAST_LOOP = UNKNOWN;
#ifdef IP_BIND_ADDRESS_NO_PORT
/**
* @var int
* @cvalue IP_BIND_ADDRESS_NO_PORT
*/
const IP_BIND_ADDRESS_NO_PORT = UNKNOWN;
#endif
#ifdef HAVE_IPV6
/**
* @var int
* @cvalue IPV6_MULTICAST_IF
*/
const IPV6_MULTICAST_IF = UNKNOWN;
/**
* @var int
* @cvalue IPV6_MULTICAST_HOPS
*/
const IPV6_MULTICAST_HOPS = UNKNOWN;
/**
* @var int
* @cvalue IPV6_MULTICAST_LOOP
*/
const IPV6_MULTICAST_LOOP = UNKNOWN;
#endif
#ifdef IPV6_V6ONLY
/**
* @var int
* @cvalue IPV6_V6ONLY
*/
const IPV6_V6ONLY = UNKNOWN;
#endif
#ifdef IP_PORTRANGE
/**
* @var int
* @cvalue IP_PORTRANGE
*/
const IP_PORTRANGE = UNKNOWN;
/**
* @var int
* @cvalue IP_PORTRANGE_DEFAULT
*/
const IP_PORTRANGE_DEFAULT = UNKNOWN;
/**
* @var int
* @cvalue IP_PORTRANGE_HIGH
*/
const IP_PORTRANGE_HIGH = UNKNOWN;
/**
* @var int
* @cvalue IP_PORTRANGE_LOW
*/
const IP_PORTRANGE_LOW = UNKNOWN;
#endif
#ifdef EPERM
/**
* Operation not permitted
* @var int
* @cvalue EPERM
*/
const SOCKET_EPERM = UNKNOWN;
#endif
#ifdef ENOENT
/**
* No such file or directory
* @var int
* @cvalue ENOENT
*/
const SOCKET_ENOENT = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EINTR
/**
* Interrupted system call
* @var int
* @cvalue PHP_SOCKET_EINTR
*/
const SOCKET_EINTR = UNKNOWN;
#endif
#ifdef EIO
/**
* I/O error
* @var int
* @cvalue EIO
*/
const SOCKET_EIO = UNKNOWN;
#endif
#ifdef ENXIO
/**
* No such device or address
* @var int
* @cvalue ENXIO
*/
const SOCKET_ENXIO = UNKNOWN;
#endif
#ifdef E2BIG
/**
* Arg list too long
* @var int
* @cvalue E2BIG
*/
const SOCKET_E2BIG = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EBADF
/**
* Bad file number
* @var int
* @cvalue PHP_SOCKET_EBADF
*/
const SOCKET_EBADF = UNKNOWN;
#endif
#ifdef EAGAIN
/**
* Try again
* @var int
* @cvalue EAGAIN
*/
const SOCKET_EAGAIN = UNKNOWN;
#endif
#ifdef ENOMEM
/**
* Out of memory
* @var int
* @cvalue ENOMEM
*/
const SOCKET_ENOMEM = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EACCES
/**
* Permission denied
* @var int
* @cvalue PHP_SOCKET_EACCES
*/
const SOCKET_EACCES = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EFAULT
/**
* Bad address
* @var int
* @cvalue PHP_SOCKET_EFAULT
*/
const SOCKET_EFAULT = UNKNOWN;
#endif
#ifdef ENOTBLK
/**
* Block device required
* @var int
* @cvalue ENOTBLK
*/
const SOCKET_ENOTBLK = UNKNOWN;
#endif
#ifdef EBUSY
/**
* Device or resource busy
* @var int
* @cvalue EBUSY
*/
const SOCKET_EBUSY = UNKNOWN;
#endif
#ifdef EEXIST
/**
* File exists
* @var int
* @cvalue EEXIST
*/
const SOCKET_EEXIST = UNKNOWN;
#endif
#ifdef EXDEV
/**
* Cross-device link
* @var int
* @cvalue EXDEV
*/
const SOCKET_EXDEV = UNKNOWN;
#endif
#ifdef ENODEV
/**
* No such device
* @var int
* @cvalue ENODEV
*/
const SOCKET_ENODEV = UNKNOWN;
#endif
#ifdef ENOTDIR
/**
* Not a directory
* @var int
* @cvalue ENOTDIR
*/
const SOCKET_ENOTDIR = UNKNOWN;
#endif
#ifdef EISDIR
/**
* Is a directory
* @var int
* @cvalue EISDIR
*/
const SOCKET_EISDIR = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EINVAL
/**
* Invalid argument
* @var int
* @cvalue PHP_SOCKET_EINVAL
*/
const SOCKET_EINVAL = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENFILE
/**
* File table overflow
* @var int
* @cvalue PHP_SOCKET_ENFILE
*/
const SOCKET_ENFILE = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EMFILE
/**
* Too many open files
* @var int
* @cvalue PHP_SOCKET_EMFILE
*/
const SOCKET_EMFILE = UNKNOWN;
#endif
#ifdef ENOTTY
/**
* Not a typewriter
* @var int
* @cvalue ENOTTY
*/
const SOCKET_ENOTTY = UNKNOWN;
#endif
#ifdef ENOSPC
/**
* No space left on device
* @var int
* @cvalue ENOSPC
*/
const SOCKET_ENOSPC = UNKNOWN;
#endif
#ifdef ESPIPE
/**
* Illegal seek
* @var int
* @cvalue ESPIPE
*/
const SOCKET_ESPIPE = UNKNOWN;
#endif
#ifdef EROFS
/**
* Read-only file system
* @var int
* @cvalue EROFS
*/
const SOCKET_EROFS = UNKNOWN;
#endif
#ifdef EMLINK
/**
* Too many links
* @var int
* @cvalue EMLINK
*/
const SOCKET_EMLINK = UNKNOWN;
#endif
#ifdef EPIPE
/**
* Broken pipe
* @var int
* @cvalue EPIPE
*/
const SOCKET_EPIPE = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENAMETOOLONG
/**
* File name too long
* @var int
* @cvalue PHP_SOCKET_ENAMETOOLONG
*/
const SOCKET_ENAMETOOLONG = UNKNOWN;
#endif
#ifdef ENOLCK
/**
* No record locks available
* @var int
* @cvalue ENOLCK
*/
const SOCKET_ENOLCK = UNKNOWN;
#endif
#ifdef ENOSYS
/**
* Function not implemented
* @var int
* @cvalue ENOSYS
*/
const SOCKET_ENOSYS = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENOTEMPTY
/**
* Directory not empty
* @var int
* @cvalue PHP_SOCKET_ENOTEMPTY
*/
const SOCKET_ENOTEMPTY = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ELOOP
/**
* Too many symbolic links encountered
* @var int
* @cvalue PHP_SOCKET_ELOOP
*/
const SOCKET_ELOOP = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EWOULDBLOCK
/**
* Operation would block
* @var int
* @cvalue PHP_SOCKET_EWOULDBLOCK
*/
const SOCKET_EWOULDBLOCK = UNKNOWN;
#endif
#ifdef ENOMSG
/**
* No message of desired type
* @var int
* @cvalue ENOMSG
*/
const SOCKET_ENOMSG = UNKNOWN;
#endif
#ifdef EIDRM
/**
* Identifier removed
* @var int
* @cvalue EIDRM
*/
const SOCKET_EIDRM = UNKNOWN;
#endif
#ifdef ECHRNG
/**
* Channel number out of range
* @var int
* @cvalue ECHRNG
*/
const SOCKET_ECHRNG = UNKNOWN;
#endif
#ifdef EL2NSYNC
/**
* Level 2 not synchronized
* @var int
* @cvalue EL2NSYNC
*/
const SOCKET_EL2NSYNC = UNKNOWN;
#endif
#ifdef EL3HLT
/**
* Level 3 halted
* @var int
* @cvalue EL3HLT
*/
const SOCKET_EL3HLT = UNKNOWN;
#endif
#ifdef EL3RST
/**
* Level 3 reset
* @var int
* @cvalue EL3RST
*/
const SOCKET_EL3RST = UNKNOWN;
#endif
#ifdef ELNRNG
/**
* Link number out of range
* @var int
* @cvalue ELNRNG
*/
const SOCKET_ELNRNG = UNKNOWN;
#endif
#ifdef EUNATCH
/**
* Protocol driver not attached
* @var int
* @cvalue EUNATCH
*/
const SOCKET_EUNATCH = UNKNOWN;
#endif
#ifdef ENOCSI
/**
* No CSI structure available
* @var int
* @cvalue ENOCSI
*/
const SOCKET_ENOCSI = UNKNOWN;
#endif
#ifdef EL2HLT
/**
* Level 2 halted
* @var int
* @cvalue EL2HLT
*/
const SOCKET_EL2HLT = UNKNOWN;
#endif
#ifdef EBADE
/**
* Invalid exchange
* @var int
* @cvalue EBADE
*/
const SOCKET_EBADE = UNKNOWN;
#endif
#ifdef EBADR
/**
* Invalid request descriptor
* @var int
* @cvalue EBADR
*/
const SOCKET_EBADR = UNKNOWN;
#endif
#ifdef EXFULL
/**
* Exchange full
* @var int
* @cvalue EXFULL
*/
const SOCKET_EXFULL = UNKNOWN;
#endif
#ifdef ENOANO
/**
* No anode
* @var int
* @cvalue ENOANO
*/
const SOCKET_ENOANO = UNKNOWN;
#endif
#ifdef EBADRQC
/**
* Invalid request code
* @var int
* @cvalue EBADRQC
*/
const SOCKET_EBADRQC = UNKNOWN;
#endif
#ifdef EBADSLT
/**
* Invalid slot
* @var int
* @cvalue EBADSLT
*/
const SOCKET_EBADSLT = UNKNOWN;
#endif
#ifdef ENOSTR
/**
* Device not a stream
* @var int
* @cvalue ENOSTR
*/
const SOCKET_ENOSTR = UNKNOWN;
#endif
#ifdef ENODATA
/**
* No data available
* @var int
* @cvalue ENODATA
*/
const SOCKET_ENODATA = UNKNOWN;
#endif
#ifdef ETIME
/**
* Timer expired
* @var int
* @cvalue ETIME
*/
const SOCKET_ETIME = UNKNOWN;
#endif
#ifdef ENOSR
/**
* Out of streams resources
* @var int
* @cvalue ENOSR
*/
const SOCKET_ENOSR = UNKNOWN;
#endif
#ifdef ENONET
/**
* Machine is not on the network
* @var int
* @cvalue ENONET
*/
const SOCKET_ENONET = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EREMOTE
/**
* Object is remote
* @var int
* @cvalue PHP_SOCKET_EREMOTE
*/
const SOCKET_EREMOTE = UNKNOWN;
#endif
#ifdef ENOLINK
/**
* Link has been severed
* @var int
* @cvalue ENOLINK
*/
const SOCKET_ENOLINK = UNKNOWN;
#endif
#ifdef EADV
/**
* Advertise error
* @var int
* @cvalue EADV
*/
const SOCKET_EADV = UNKNOWN;
#endif
#ifdef ESRMNT
/**
* Srmount error
* @var int
* @cvalue ESRMNT
*/
const SOCKET_ESRMNT = UNKNOWN;
#endif
#ifdef ECOMM
/**
* Communication error on send
* @var int
* @cvalue ECOMM
*/
const SOCKET_ECOMM = UNKNOWN;
#endif
#ifdef EPROTO
/**
* Protocol error
* @var int
* @cvalue EPROTO
*/
const SOCKET_EPROTO = UNKNOWN;
#endif
#ifdef EMULTIHOP
/**
* Multihop attempted
* @var int
* @cvalue EMULTIHOP
*/
const SOCKET_EMULTIHOP = UNKNOWN;
#endif
#ifdef EBADMSG
/**
* Not a data message
* @var int
* @cvalue EBADMSG
*/
const SOCKET_EBADMSG = UNKNOWN;
#endif
#ifdef ENOTUNIQ
/**
* Name not unique on network
* @var int
* @cvalue ENOTUNIQ
*/
const SOCKET_ENOTUNIQ = UNKNOWN;
#endif
#ifdef EBADFD
/**
* File descriptor in bad state
* @var int
* @cvalue EBADFD
*/
const SOCKET_EBADFD = UNKNOWN;
#endif
#ifdef EREMCHG
/**
* Remote address changed
* @var int
* @cvalue EREMCHG
*/
const SOCKET_EREMCHG = UNKNOWN;
#endif
#ifdef ERESTART
/**
* Interrupted system call should be restarted
* @var int
* @cvalue ERESTART
*/
const SOCKET_ERESTART = UNKNOWN;
#endif
#ifdef ESTRPIPE
/**
* Streams pipe error
* @var int
* @cvalue ESTRPIPE
*/
const SOCKET_ESTRPIPE = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EUSERS
/**
* Too many users
* @var int
* @cvalue PHP_SOCKET_EUSERS
*/
const SOCKET_EUSERS = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENOTSOCK
/**
* Socket operation on non-socket
* @var int
* @cvalue PHP_SOCKET_ENOTSOCK
*/
const SOCKET_ENOTSOCK = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EDESTADDRREQ
/**
* Destination address required
* @var int
* @cvalue PHP_SOCKET_EDESTADDRREQ
*/
const SOCKET_EDESTADDRREQ = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EMSGSIZE
/**
* Message too long
* @var int
* @cvalue PHP_SOCKET_EMSGSIZE
*/
const SOCKET_EMSGSIZE = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EPROTOTYPE
/**
* Protocol wrong type for socket
* @var int
* @cvalue PHP_SOCKET_EPROTOTYPE
*/
const SOCKET_EPROTOTYPE = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENOPROTOOPT
/**
* Protocol not available
* @var int
* @cvalue PHP_SOCKET_ENOPROTOOPT
*/
const SOCKET_ENOPROTOOPT = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EPROTONOSUPPORT
/**
* Protocol not supported
* @var int
* @cvalue PHP_SOCKET_EPROTONOSUPPORT
*/
const SOCKET_EPROTONOSUPPORT = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ESOCKTNOSUPPORT
/**
* Socket type not supported
* @var int
* @cvalue PHP_SOCKET_ESOCKTNOSUPPORT
*/
const SOCKET_ESOCKTNOSUPPORT = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EOPNOTSUPP
/**
* Operation not supported on transport endpoint
* @var int
* @cvalue PHP_SOCKET_EOPNOTSUPP
*/
const SOCKET_EOPNOTSUPP = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EPFNOSUPPORT
/**
* Protocol family not supported
* @var int
* @cvalue PHP_SOCKET_EPFNOSUPPORT
*/
const SOCKET_EPFNOSUPPORT = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EAFNOSUPPORT
/**
* Address family not supported by protocol
* @var int
* @cvalue PHP_SOCKET_EAFNOSUPPORT
*/
const SOCKET_EAFNOSUPPORT = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EADDRINUSE
/**
* Address already in use
* @var int
* @cvalue PHP_SOCKET_EADDRINUSE
*/
const SOCKET_EADDRINUSE = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EADDRNOTAVAIL
/**
* Cannot assign requested address
* @var int
* @cvalue PHP_SOCKET_EADDRNOTAVAIL
*/
const SOCKET_EADDRNOTAVAIL = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENETDOWN
/**
* Network is down
* @var int
* @cvalue PHP_SOCKET_ENETDOWN
*/
const SOCKET_ENETDOWN = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENETUNREACH
/**
* Network is unreachable
* @var int
* @cvalue PHP_SOCKET_ENETUNREACH
*/
const SOCKET_ENETUNREACH = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENETRESET
/**
* Network dropped connection because of reset
* @var int
* @cvalue PHP_SOCKET_ENETRESET
*/
const SOCKET_ENETRESET = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ECONNABORTED
/**
* Software caused connection abort
* @var int
* @cvalue PHP_SOCKET_ECONNABORTED
*/
const SOCKET_ECONNABORTED = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ECONNRESET
/**
* Connection reset by peer
* @var int
* @cvalue PHP_SOCKET_ECONNRESET
*/
const SOCKET_ECONNRESET = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENOBUFS
/**
* No buffer space available
* @var int
* @cvalue PHP_SOCKET_ENOBUFS
*/
const SOCKET_ENOBUFS = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EISCONN
/**
* Transport endpoint is already connected
* @var int
* @cvalue PHP_SOCKET_EISCONN
*/
const SOCKET_EISCONN = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ENOTCONN
/**
* Transport endpoint is not connected
* @var int
* @cvalue PHP_SOCKET_ENOTCONN
*/
const SOCKET_ENOTCONN = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ESHUTDOWN
/**
* Cannot send after transport endpoint shutdown
* @var int
* @cvalue PHP_SOCKET_ESHUTDOWN
*/
const SOCKET_ESHUTDOWN = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ETOOMANYREFS
/**
* Too many references: cannot splice
* @var int
* @cvalue PHP_SOCKET_ETOOMANYREFS
*/
const SOCKET_ETOOMANYREFS = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ETIMEDOUT
/**
* Connection timed out
* @var int
* @cvalue PHP_SOCKET_ETIMEDOUT
*/
const SOCKET_ETIMEDOUT = UNKNOWN;
#endif
#ifdef PHP_SOCKET_ECONNREFUSED
/**
* Connection refused
* @var int
* @cvalue PHP_SOCKET_ECONNREFUSED
*/
const SOCKET_ECONNREFUSED = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EHOSTDOWN
/**
* Host is down
* @var int
* @cvalue PHP_SOCKET_EHOSTDOWN
*/
const SOCKET_EHOSTDOWN = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EHOSTUNREACH
/**
* No route to host
* @var int
* @cvalue PHP_SOCKET_EHOSTUNREACH
*/
const SOCKET_EHOSTUNREACH = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EALREADY
/**
* Operation already in progress
* @var int
* @cvalue PHP_SOCKET_EALREADY
*/
const SOCKET_EALREADY = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EINPROGRESS
/**
* Operation now in progress
* @var int
* @cvalue PHP_SOCKET_EINPROGRESS
*/
const SOCKET_EINPROGRESS = UNKNOWN;
#endif
#ifdef EISNAM
/**
* Is a named type file
* @var int
* @cvalue EISNAM
*/
const SOCKET_EISNAM = UNKNOWN;
#endif
#ifdef EREMOTEIO
/**
* Remote I/O error
* @var int
* @cvalue EREMOTEIO
*/
const SOCKET_EREMOTEIO = UNKNOWN;
#endif
#ifdef PHP_SOCKET_EDQUOT
/**
* Quota exceeded
* @var int
* @cvalue PHP_SOCKET_EDQUOT
*/
const SOCKET_EDQUOT = UNKNOWN;
#endif
#ifdef ENOMEDIUM
/**
* No medium found
* @var int
* @cvalue ENOMEDIUM
*/
const SOCKET_ENOMEDIUM = UNKNOWN;
#endif
#ifdef EMEDIUMTYPE
/**
* Wrong medium type
* @var int
* @cvalue EMEDIUMTYPE
*/
const SOCKET_EMEDIUMTYPE = UNKNOWN;
#endif
#ifdef PHP_WIN32
/**
* @var int
* @cvalue WSAESTALE
*/
const SOCKET_ESTALE = UNKNOWN;
/**
* @var int
* @cvalue WSAEDISCON
*/
const SOCKET_EDISCON = UNKNOWN;
/**
* @var int
* @cvalue WSASYSNOTREADY
*/
const SOCKET_SYSNOTREADY = UNKNOWN;
/**
* @var int
* @cvalue WSAVERNOTSUPPORTED
*/
const SOCKET_VERNOTSUPPORTED = UNKNOWN;
/**
* @var int
* @cvalue WSANOTINITIALISED
*/
const SOCKET_NOTINITIALISED = UNKNOWN;
/**
* @var int
* @cvalue WSAHOST_NOT_FOUND
*/
const SOCKET_HOST_NOT_FOUND = UNKNOWN;
/**
* @var int
* @cvalue WSATRY_AGAIN
*/
const SOCKET_TRY_AGAIN = UNKNOWN;
/**
* @var int
* @cvalue WSANO_RECOVERY
*/
const SOCKET_NO_RECOVERY = UNKNOWN;
/**
* @var int
* @cvalue WSANO_DATA
*/
const SOCKET_NO_DATA = UNKNOWN;
/**
* @var int
* @cvalue WSANO_ADDRESS
*/
const SOCKET_NO_ADDRESS = UNKNOWN;
#endif
/**
* @var int
* @cvalue IPPROTO_IP
*/
const IPPROTO_IP = UNKNOWN;
#ifdef HAVE_IPV6
/**
* @var int
* @cvalue IPPROTO_IPV6
*/
const IPPROTO_IPV6 = UNKNOWN;
#endif
/**
* @var int
* @cvalue IPPROTO_TCP
*/
const SOL_TCP = UNKNOWN;
/**
* @var int
* @cvalue IPPROTO_UDP
*/
const SOL_UDP = UNKNOWN;
#ifdef IPPROTO_UDPLITE
/**
* @var int
* @cvalue IPPROTO_UDPLITE
*/
const SOL_UDPLITE = UNKNOWN;
#endif
#ifdef HAVE_IPV6
/**
* @var int
* @cvalue IPV6_UNICAST_HOPS
*/
const IPV6_UNICAST_HOPS = UNKNOWN;
#endif
/**
* @var int
* @cvalue AI_PASSIVE
*/
const AI_PASSIVE = UNKNOWN;
/**
* @var int
* @cvalue AI_CANONNAME
*/
const AI_CANONNAME = UNKNOWN;
/**
* @var int
* @cvalue AI_NUMERICHOST
*/
const AI_NUMERICHOST = UNKNOWN;
#ifdef AI_V4MAPPED
/**
* @var int
* @cvalue AI_V4MAPPED
*/
const AI_V4MAPPED = UNKNOWN;
#endif
#ifdef AI_ALL
/**
* @var int
* @cvalue AI_ALL
*/
const AI_ALL = UNKNOWN;
#endif
/**
* @var int
* @cvalue AI_ADDRCONFIG
*/
const AI_ADDRCONFIG = UNKNOWN;
#ifdef AI_IDN
/**
* @var int
* @cvalue AI_IDN
*/
const AI_IDN = UNKNOWN;
/**
* @var int
* @cvalue AI_CANONIDN
*/
const AI_CANONIDN = UNKNOWN;
#endif
#ifdef AI_NUMERICSERV
/**
* @var int
* @cvalue AI_NUMERICSERV
*/
const AI_NUMERICSERV = UNKNOWN;
#endif
#ifdef SOL_LOCAL
/**
* @var int
* @cvalue SOL_LOCAL
*/
const SOL_LOCAL = UNKNOWN;
#endif
#if (defined(IPV6_RECVPKTINFO) && defined(HAVE_IPV6))
/**
* IPv6 ancillary data
* @var int
* @cvalue IPV6_RECVPKTINFO
*/
const IPV6_RECVPKTINFO = UNKNOWN;
/**
* @var int
* @cvalue IPV6_PKTINFO
*/
const IPV6_PKTINFO = UNKNOWN;
#endif
#if (defined(IPV6_RECVHOPLIMIT) && defined(HAVE_IPV6))
/**
* @var int
* @cvalue IPV6_RECVHOPLIMIT
*/
const IPV6_RECVHOPLIMIT = UNKNOWN;
/**
* @var int
* @cvalue IPV6_HOPLIMIT
*/
const IPV6_HOPLIMIT = UNKNOWN;
#endif
#if (defined(IPV6_RECVTCLASS) && defined(HAVE_IPV6))
/**
* @var int
* @cvalue IPV6_RECVTCLASS
*/
const IPV6_RECVTCLASS = UNKNOWN;
/**
* @var int
* @cvalue IPV6_TCLASS
*/
const IPV6_TCLASS = UNKNOWN;
#endif
#ifdef SCM_RIGHTS
/**
* @var int
* @cvalue SCM_RIGHTS
*/
const SCM_RIGHTS = UNKNOWN;
#endif
#ifdef SO_PASSCRED
#ifdef SCM_CREDENTIALS
/**
* @var int
* @cvalue SCM_CREDENTIALS
*/
const SCM_CREDENTIALS = UNKNOWN;
#else
/**
* @var int
* @cvalue SCM_CREDS
*/
const SCM_CREDS = UNKNOWN;
#endif
/**
* @var int
* @cvalue SO_PASSCRED
*/
const SO_PASSCRED = UNKNOWN;
#endif
#if defined(LOCAL_CREDS_PERSISTENT)
/**
* @var int
* @cvalue SCM_CREDS2
*/
const SCM_CREDS2 = UNKNOWN;
/**
* @var int
* @cvalue LOCAL_CREDS_PERSISTENT
*/
const LOCAL_CREDS_PERSISTENT = UNKNOWN;
#endif
#if (!defined(LOCAL_CREDS_PERSISTENT) && defined(LOCAL_CREDS))
/**
* @var int
* @cvalue SCM_CREDS
*/
const SCM_CREDS = UNKNOWN;
/**
* @var int
* @cvalue LOCAL_CREDS
*/
const LOCAL_CREDS = UNKNOWN;
#endif
#if defined(SO_ATTACH_REUSEPORT_CBPF)
/**
* @var int
* @cvalue SO_ATTACH_REUSEPORT_CBPF
*/
const SO_ATTACH_REUSEPORT_CBPF = UNKNOWN;
#endif
#if defined(SO_DETACH_FILTER)
/**
* @var int
* @cvalue SO_DETACH_FILTER
*/
const SO_DETACH_FILTER = UNKNOWN;
#endif
#if defined(SO_DETACH_BPF)
/**
* @var int
* @cvalue SO_DETACH_BPF
*/
const SO_DETACH_BPF = UNKNOWN;
#endif
#if defined(SO_EXCLUSIVEADDRUSE)
/**
* @var int
* @cvalue SO_EXCLUSIVEADDRUSE
*/
const SO_EXCLUSIVEADDRUSE = UNKNOWN;
#endif
#if defined(SO_NOSIGPIPE)
/**
* @var int
* @cvalue SO_NOSIGPIPE
*/
const SO_NOSIGPIPE = UNKNOWN;
#endif
#if defined(TCP_QUICKACK)
/**
* @var int
* @cvalue TCP_QUICKACK
*/
const TCP_QUICKACK = UNKNOWN;
#endif
#if defined(TCP_REPAIR)
/**
* @var int
* @cvalue TCP_REPAIR
*/
const TCP_REPAIR = UNKNOWN;
#endif
#if defined(IP_DONTFRAG)
/**
* @var int
* @cvalue IP_DONTFRAG
*/
const IP_DONTFRAG = UNKNOWN;
#endif
#if defined(IP_MTU_DISCOVER)
/**
* @var int
* @cvalue IP_MTU_DISCOVER
*/
const IP_MTU_DISCOVER = UNKNOWN;
#endif
#if defined(IP_PMTUDISC_DO)
/**
* @var int
* @cvalue IP_PMTUDISC_DO
*/
const IP_PMTUDISC_DO = UNKNOWN;
#endif
#if defined(IP_PMTUDISC_DONT)
/**
* @var int
* @cvalue IP_PMTUDISC_DONT
*/
const IP_PMTUDISC_DONT = UNKNOWN;
#endif
#if defined(IP_PMTUDISC_WANT)
/**
* @var int
* @cvalue IP_PMTUDISC_WANT
*/
const IP_PMTUDISC_WANT = UNKNOWN;
#endif
#if defined(IP_PMTUDISC_PROBE)
/**
* @var int
* @cvalue IP_PMTUDISC_PROBE
*/
const IP_PMTUDISC_PROBE = UNKNOWN;
#endif
#if defined(IP_PMTUDISC_INTERFACE)
/**
* @var int
* @cvalue IP_PMTUDISC_INTERFACE
*/
const IP_PMTUDISC_INTERFACE = UNKNOWN;
#endif
#if defined(IP_PMTUDISC_OMIT)
/**
* @var int
* @cvalue IP_PMTUDISC_OMIT
*/
const IP_PMTUDISC_OMIT = UNKNOWN;
#endif
#if defined(UDPLITE_SEND_CSCOV)
/**
* @var int
* @cvalue UDPLITE_SEND_CSCOV
*/
const UDPLITE_SEND_CSCOV = UNKNOWN;
#endif
#if defined(UDPLITE_RECV_CSCOV)
/**
* @var int
* @cvalue UDPLITE_RECV_CSCOV
*/
const UDPLITE_RECV_CSCOV = UNKNOWN;
#endif
/**
* @strict-properties
* @not-serializable
*/
final class Socket
{
}
/**
* @strict-properties
* @not-serializable
*/
final class AddressInfo
{
}
function socket_select(?array &$read, ?array &$write, ?array &$except, ?int $seconds, int $microseconds = 0): int|false {}
function socket_create_listen(int $port, int $backlog = SOMAXCONN): Socket|false {}
function socket_accept(Socket $socket): Socket|false {}
function socket_set_nonblock(Socket $socket): bool {}
function socket_set_block(Socket $socket): bool {}
function socket_listen(Socket $socket, int $backlog = 0): bool {}
function socket_close(Socket $socket): void {}
function socket_write(Socket $socket, string $data, ?int $length = null): int|false {}
function socket_read(Socket $socket, int $length, int $mode = PHP_BINARY_READ): string|false {}
/**
* @param string $address
* @param int $port
*/
function socket_getsockname(Socket $socket, &$address, &$port = null): bool {}
/**
* @param string $address
* @param int $port
*/
function socket_getpeername(Socket $socket, &$address, &$port = null): bool {}
function socket_create(int $domain, int $type, int $protocol): Socket|false {}
function socket_connect(Socket $socket, string $address, ?int $port = null): bool {}
function socket_strerror(int $error_code): string {}
function socket_bind(Socket $socket, string $address, int $port = 0): bool {}
/** @param string|null $data */
function socket_recv(Socket $socket, &$data, int $length, int $flags): int|false {}
function socket_send(Socket $socket, string $data, int $length, int $flags): int|false {}
/**
* @param string $data
* @param string $address
* @param int $port
*/
function socket_recvfrom(Socket $socket, &$data, int $length, int $flags, &$address, &$port = null): int|false {}
function socket_sendto(Socket $socket, string $data, int $length, int $flags, string $address, ?int $port = null): int|false {}
/**
* @return array<string, mixed>|int|false
* @refcount 1
*/
function socket_get_option(Socket $socket, int $level, int $option): array|int|false {}
/**
* @return array<string, mixed>|int|false
* @alias socket_get_option
*/
function socket_getopt(Socket $socket, int $level, int $option): array|int|false {}
/** @param array|string|int $value */
function socket_set_option(Socket $socket, int $level, int $option, $value): bool {}
/**
* @param array|string|int $value
* @alias socket_set_option
*/
function socket_setopt(Socket $socket, int $level, int $option, $value): bool {}
#ifdef HAVE_SOCKETPAIR
/** @param array $pair */
function socket_create_pair(int $domain, int $type, int $protocol, &$pair): bool {}
#endif
#ifdef HAVE_SHUTDOWN
function socket_shutdown(Socket $socket, int $mode = 2): bool {}
#endif
#ifdef HAVE_SOCKATMARK
function socket_atmark(Socket $socket): bool {}
#endif
function socket_last_error(?Socket $socket = null): int {}
function socket_clear_error(?Socket $socket = null): void {}
/** @param resource $stream */
function socket_import_stream($stream): Socket|false {}
/** @return resource|false */
function socket_export_stream(Socket $socket) {}
function socket_sendmsg(Socket $socket, array $message, int $flags = 0): int|false {}
function socket_recvmsg(Socket $socket, array &$message, int $flags = 0): int|false {}
function socket_cmsg_space(int $level, int $type, int $num = 0): ?int {}
/**
* @return array<int, AddressInfo>|false
* @refcount 1
*/
function socket_addrinfo_lookup(string $host, ?string $service = null, array $hints = []): array|false {}
function socket_addrinfo_connect(AddressInfo $address): Socket|false {}
function socket_addrinfo_bind(AddressInfo $address): Socket|false {}
/**
* @return array<string, int|string|array>
* @refcount 1
*/
function socket_addrinfo_explain(AddressInfo $address): array {}
#ifdef PHP_WIN32
function socket_wsaprotocol_info_export(Socket $socket, int $process_id): string|false {}
function socket_wsaprotocol_info_import(string $info_id): Socket|false {}
function socket_wsaprotocol_info_release(string $info_id): bool {}
#endif
|