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 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<fpdoc-descriptions>
<!--
$Id: sockets.xml,v 1.3 2005/04/30 22:08:57 michael Exp $
This file is part of the FPC documentation.
Copyright (C) 1997, by Michael Van Canneyt
The FPC documentation is free text; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The FPC Documentation is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the FPC documentation; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
-->
<package name="rtl">
<module name="sockets">
<!-- \FPCexampledir{sockex/} -->
<short>TCP/IP Sockets functionality unit</short>
<descr>
This document describes the SOCKETS unit for Free Pascal.
it was written for Linux by Michael Van Canneyt, and ported to Windows
by Florian Klaempfl.
</descr>
<element name="SOCK_STREAM">
<short>Type of socket: stream (connection) type socket (TCP)</short>
</element>
<element name="SOCK_DGRAM">
<short>Type of socket: datagram (conn.less) socket (UDP)</short>
</element>
<element name="SOCK_RAW">
<short>Type of socket: raw socket</short>
</element>
<element name="SOCK_RDM">
<short>Type of socket: reliably-delivered message</short>
</element>
<element name="SOCK_SEQPACKET">
<short>Type of socket: sequential packet socket</short>
</element>
<element name="SOCK_PACKET">
<short>Type of socket: Packet</short>
</element>
<element name="AF_UNSPEC">
<short>Address family Not specified</short>
</element>
<element name="AF_UNIX">
<short>Address family Unix domain sockets</short>
</element>
<element name="AF_INET">
<short>Address family Internet IP Protocol</short>
</element>
<element name="AF_AX25">
<short>Address family Amateur Radio AX.25</short>
</element>
<element name="AF_IPX">
<short>Address family Novell IPX</short>
</element>
<element name="AF_APPLETALK">
<short>Address family Appletalk DDP</short>
</element>
<element name="AF_NETROM">
<short>Address family Amateur radio NetROM</short>
</element>
<element name="AF_BRIDGE">
<short>Address family Multiprotocol bridge</short>
</element>
<element name="AF_AAL5">
<short>Address family Reserved for Werner's ATM</short>
</element>
<element name="AF_X25">
<short>Address family Reserved for X.25 project</short>
</element>
<element name="AF_INET6">
<short>Address family IP version 6</short>
</element>
<element name="AF_MAX">
<short>Address family Maximum value</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ATMPVC">
<short>Address family: ATM PVCs</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ROSE">
<short>Address family: Amateur Radio X.25 PLP</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_NETBEUI">
<short>Address family: Reserved for 802.2LLC project</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_SECURITY">
<short>Address family: Security callback pseudo AF</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_KEY">
<short>Address family: PF_KEY key management API</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_NETLINK">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_PACKET">
<short>Address family: Packet family</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ASH">
<short>Address family: Ash</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ECONET">
<short>Address family: Acorn Econet</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ATMSVC">
<short>Address family: ATM SVCs</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_IRDA">
<short>Address family: IRDA sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_PPPOX">
<short>Address family: PPPoX sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_WANPIPE">
<short>Address family: Wanpipe API Sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_LLC">
<short>Address family: Linux LLC</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_TIPC">
<short>Address family: TIPC sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_BLUETOOTH">
<short>Address family: Bluetooth sockets</short>
</element>
<element name="PF_UNSPEC">
<short>Protocol family: Unspecified</short>
</element>
<element name="PF_INET">
<short>Protocol family: Internet IP Protocol</short>
</element>
<element name="PF_AX25">
<short>Protocol family: Amateur Radio AX.25</short>
</element>
<element name="PF_IPX">
<short>Protocol family: Novell IPX</short>
</element>
<element name="PF_APPLETALK">
<short>Protocol family: Appletalk DDP</short>
</element>
<element name="PF_UNIX">
<short>Protocol family: Unix domain sockets</short>
</element>
<element name="PF_NETROM">
<short>Protocol family:Amateur radio NetROM</short>
</element>
<element name="PF_BRIDGE">
<short>Protocol family: Multiprotocol bridge</short>
</element>
<element name="PF_AAL5">
<short>Protocol family: Reserved for Werner's ATM</short>
</element>
<element name="PF_X25">
<short>Protocol family: Reserved for X.25 project</short>
</element>
<element name="PF_INET6">
<short>Protocol family: IP version 6</short>
</element>
<element name="PF_MAX">
<short>Protocol family: Maximum value</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ATMPVC">
<short>Protocol family: ATM PVCs</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ROSE">
<short>Protocol family: Amateur Radio X.25 PLP</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_NETBEUI">
<short>Protocol family: Reserved for 802.2LLC project</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_SECURITY">
<short>Protocol family: Security callback pseudo PF</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_NETLINK">
<short>Protocol family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_PACKET">
<short>Protocol family: Packet family</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ASH">
<short>Protocol family: Ash</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ECONET">
<short>Protocol family: Acorn Econet</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ATMSVC">
<short>Protocol family: ATM SVCs</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_IRDA">
<short>Protocol family: IRDA sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_PPPOX">
<short>Protocol family: PPPoX sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_WANPIPE">
<short>Protocol family: Wanpipe API Sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_LLC">
<short>Protocol family: Linux LLC</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_TIPC">
<short>Protocol family: TIPC sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_BLUETOOTH">
<short>Protocol family: Bluetooth sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="SOMAXCONN">
<short>Maximum queue length specifiable by listen.</short>
<seealso>
<link id="FPlisten"/>
</seealso>
</element>
<!-- constant Visibility: default -->
<element name="MSG_EOF">
<short>Alias for <var>MSG_FIN</var></short>
</element>
<!-- constant Visibility: default -->
<element name="INVALID_SOCKET">
<short>Invalid socket return value (for kylix compatibility)</short>
</element>
<!-- constant Visibility: default -->
<element name="SOCKET_ERROR">
<short>Socket error indication (for kylix compatibility)</short>
</element>
<!-- alias type Visibility: default -->
<element name="PInAddr">
<short>Alias for <link id="#rtl.sockets.pin_addr">pin_addr</link></short>
</element>
<!-- variable Visibility: default -->
<element name="TUnixSockAddr.family">
<short>Protocol family for UNIX socket</short>
</element>
<!-- variable Visibility: default -->
<element name="TUnixSockAddr.path">
<short>Filename for UNIX socket file</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEACCESS">
<short>Access forbidden error</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEMFILE">
<short>Error code ?</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEMSGSIZE">
<short>Wrong message size error</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockENOBUFS">
<short>No buffer space available error</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockENOTCONN">
<short>Not connected error</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockENOTSOCK">
<short>File descriptor is not a socket error</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEPROTONOSUPPORT">
<short>Protocol not supported error</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEWOULDBLOCK">
<short>Operation would block error</short>
</element>
<element name="sockaddr">
<short>General socket address record</short>
<descr>
<var>sockaddr</var> is used to store a general socket address for the
<link id="FPBind"/>, <link id="FPRecv"/> and <link id="FPSend"/> calls.
</descr>
</element>
<element name="sockaddr.family">
<short>Address family</short>
</element>
<element name="sockaddr.data">
<short>Address data</short>
</element>
<element name="sockaddr.sa_family">
<short>Address family</short>
</element>
<element name="sockaddr.sa_data">
<short>Address data</short>
</element>
<element name="sockaddr.sin_family">
<short>Socket family</short>
</element>
<element name="sockaddr.sin_port">
<short>Socket port</short>
</element>
<element name="sockaddr.sin_addr">
<short>Socket address</short>
</element>
<element name="sockaddr.sin_zero">
<short>Padding bytes</short>
</element>
<element name="sockaddr_un">
<short>Unix socket address record.</short>
<descr>
<var>sockaddr_un</var> is used to store a UNIX socket address for the
<link id="FPBind"/>, <link id="FPRecv"/> and <link id="FPSend"/> calls.
</descr>
</element>
<element name="sockaddr_un.sun_family">
<short>Address family</short>
</element>
<element name="sockaddr_un.sun_path">
<short>File name</short>
</element>
<element name="psockaddr_un">
<short>Pointer to <link id="#rtl.sockets.sockaddr_un">sockaddr_un</link> type.</short>
</element>
<element name="TUnixSockAddr">
<short>Alias for <link id="#rtl.sockets.sockaddr_un">sockaddr_un</link></short>
</element>
<element name="sockaddr_in">
<short>Internet socket address record</short>
<descr>
<var>sockaddr_in</var> is used to store a INET socket address for the
<link id="FPBind"/>, <link id="FPRecv"/> and <link id="FPSend"/> calls.
</descr>
</element>
<element name="psockaddr_in">
<short>Pointer to <link id="#rtl.sockets.sockaddr_in">sockaddr_in</link></short>
</element>
<element name="TInetSockAddr">
<short>Alias for <link id="#rtl.sockets.sockaddr_in">sockaddr_in</link></short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in.sin_family">
<short>Internet socket family</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in.sin_port">
<short>Internet socket port</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in.sin_addr">
<short>Internet socket host address</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in.xpad">
<short>Padding bytes</short>
</element>
<element name="sockaddr_in.family">
<short>Address family</short>
</element>
<element name="sockaddr_in.port">
<short>Port number</short>
</element>
<element name="sockaddr_in.addr">
<short>IP address</short>
</element>
<element name="sockaddr_in.pad">
<short>Pad data. Do not use.</short>
</element>
<element name="TSockArray">
<short>Type returned by the <link id="FPSocketPair"/> call.</short>
</element>
<element name="AF_IMPLINK">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_PUP">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_CHAOS">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_NS">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ISO">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_OSI">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ECMA">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_DATAKIT">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_CCITT">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_SNA">
<short>Address family: Linux SNA project</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_DECnet">
<short>Address family: Reserved for DECnet project.</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_DLI">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_LAT">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_HYLINK">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ROUTE">
<short>Address family: Alias to emulate 4.4BSD.</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_LINK">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="pseudo_AF_XTP">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_COIP">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_CNT">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="pseudo_AF_RTIP">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_SIP">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="pseudo_AF_PIP">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ISDN">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_E164">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="pseudo_AF_KEY">
<short>Address family: key management API.</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_NATM">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_ATM">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="pseudo_AF_HDRCMPLT">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_NETGRAPH">
<short>Address family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SOCK_MAXADDRLEN">
<short>Maximum socket address length for <link id="Bind"/> call.</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- constant Visibility: default -->
<element name="PF_IMPLINK">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_PUP">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_CHAOS">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_NS">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ISO">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_OSI">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ECMA">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_DATAKIT">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_CCITT">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_SNA">
<short>Protocol Family: Linux SNA project</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_DECnet">
<short>Protocol Family: DECNET project</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_DLI">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_LAT">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_HYLINK">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ROUTE">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_LINK">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_XTP">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_COIP">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_CNT">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_SIP">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_RTIP">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_PIP">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ISDN">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_KEY">
<short>Protocol family: Key management API</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_NATM">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_ATM">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_NETGRAPH">
<short>Protocol Family: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SOL_SOCKET">
<short>Socket option level: Socket level</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_DEBUG">
<short>Socket option level: debug</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_REUSEADDR">
<short>Socket option: Reuse address</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_TYPE">
<short>Socket option: Type</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_ERROR">
<short>Socket option: Error</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_DONTROUTE">
<short>Socket option: Don't route</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_BROADCAST">
<short>Socket option: Broadcast</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_SNDBUF">
<short>Socket option: Send buffer</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_RCVBUF">
<short>Socket option: receive buffer</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_KEEPALIVE">
<short>Socket option: keep alive</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_OOBINLINE">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_NO_CHECK">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_PRIORITY">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_LINGER">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_BSDCOMPAT">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_PASSCRED">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_PEERCRED">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_RCVLOWAT">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_SNDLOWAT">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_RCVTIMEO">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_SNDTIMEO">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_SECURITY_AUTHENTICATION">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_SECURITY_ENCRYPTION_TRANSPORT">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_SECURITY_ENCRYPTION_NETWORK">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_BINDTODEVICE">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_ATTACH_FILTER">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_DETACH_FILTER">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_PEERNAME">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_TIMESTAMP">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SCM_TIMESTAMP">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SO_ACCEPTCONN">
<short>Socket option: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="SHUT_RD">
<short>Shutdown read part of full duplex socket</short>
</element>
<!-- constant Visibility: default -->
<element name="SHUT_WR">
<short>Shutdown write part of full duplex socket</short>
</element>
<!-- constant Visibility: default -->
<element name="SHUT_RDWR">
<short>Shutdown read and write part of full duplex socket</short>
</element>
<!-- alias type Visibility: default -->
<element name="sa_family_t">
<short>Address family type</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_LOCAL">
<short>Protocol family: Unix socket</short>
</element>
<!-- constant Visibility: default -->
<element name="PF_FILE">
<short>Protocol family: Unix socket (alias)</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_LOCAL">
<short>Address family: Unix socket</short>
</element>
<!-- constant Visibility: default -->
<element name="AF_FILE">
<short>Address family: Unix socket (alias)</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_OOB">
<short>Receive flags: receive out-of-band data.</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_PEEK">
<short>Receive flags: peek at data, don't remove from buffer.</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_DONTROUTE">
<short>Send flags: don't use gateway</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_TRYHARD">
<short>Receive flags: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_CTRUNC">
<short>Receive flags: Control Data was discarded (buffer too small)</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_PROXY">
<short>Receive flags: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_TRUNC">
<short>Receive flags: packet Data was discarded (buffer too small)</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_DONTWAIT">
<short>Receive flags: Non-blocking operation request.</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_EOR">
<short>Receive flags: End of record</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_WAITALL">
<short>Receive flags: Wait till operation completed.</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_FIN">
<short>Receive flags: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_SYN">
<short>Receive flags: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_CONFIRM">
<short>Send flags: Conform connection</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_RST">
<short>Receive flags: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_ERRQUERE">
<short>Receive flags: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_NOSIGNAL">
<short>Receive flags: Suppress SIG_PIPE signal.</short>
</element>
<!-- constant Visibility: default -->
<element name="MSG_MORE">
<short>Receive flags: ?</short>
</element>
<!-- constant Visibility: default -->
<element name="S_IN">
<short>Input socket in socket pair.</short>
</element>
<!-- constant Visibility: default -->
<element name="S_OUT">
<short>Output socket in socket pair</short>
</element>
<!-- record type Visibility: default -->
<element name="in_addr">
<short>General inet socket address.</short>
</element>
<!-- variable Visibility: default -->
<element name="in_addr.s_addr">
<short>Actual address</short>
</element>
<!-- variable Visibility: default -->
<element name="TSockAddr.sa_family">
<short>General socket address: Address family</short>
</element>
<!-- variable Visibility: default -->
<element name="TSockAddr.sa_data">
<short>General socket address: Address data</short>
</element>
<!-- pointer type Visibility: default -->
<element name="pSockAddr">
<short>Pointer to <link id="TSockAddr"/></short>
</element>
<!-- pointer type Visibility: default -->
<element name="pInetSockAddr">
<short>Pointer to <link id="sockaddr_in"/></short>
</element>
<!-- record type Visibility: default -->
<element name="Tin6_addr">
<short>Alias for <link id="sockaddr_in6"/></short>
</element>
<!-- pointer type Visibility: default -->
<element name="pIn6_Addr">
<short>Pointer to <link id="Tin6_addr"/></short>
</element>
<!-- record type Visibility: default -->
<element name="sockaddr_in6">
<short>Record for IPV6 socket address.</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in6.sin6_family">
<short>Address family</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in6.sin6_port">
<short>Port</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in6.sin6_flowinfo">
<short>Flow information.</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in6.sin6_addr">
<short>IPV6 address</short>
</element>
<!-- variable Visibility: default -->
<element name="sockaddr_in6.sin6_scope_id">
<short></short>
</element>
<!-- alias type Visibility: default -->
<element name="sockaddr_in6">
<short>Alias for <link id="sockaddr_in6"/></short>
</element>
<!-- pointer type Visibility: default -->
<element name="psockaddr_in6">
<short>Pointer to <link id="sockaddr_in6"/></short>
</element>
<element name="plinger">
<short>Pointer to <link id="#rtl.sockets.linger">linger</link> type.</short>
</element>
<!-- record type Visibility: default -->
<element name="linger">
<short>Record used in <link id="#rtl.sockets.fpsetsockopt">setsockopt</link></short>
<descr>
This record is used in the <link id="fpsetsockopt"/> call to specify linger
options.
</descr>
<seealso>
<link id="fpsetsockopt"/>
</seealso>
</element>
<!-- variable Visibility: default -->
<element name="linger.l_onoff">
<short>Linger on or off</short>
</element>
<!-- variable Visibility: default -->
<element name="linger.l_linger">
<short>Time to linger</short>
</element>
<!-- alias type Visibility: default -->
<element name="TLinger">
<short>Alias for <link id="#rtl.sockets.linger">linger</link></short>
</element>
<!-- record type Visibility: default -->
<element name="in6_addr">
<short>General purpose IPV6 address</short>
<descr>
Record used to describe a general IPV6 address.
</descr>
<seealso>
<link id="sockaddr_in6"/>
</seealso>
</element>
<!-- variable Visibility: default -->
<element name="in6_addr.u6_addr8">
<short>Address field using unsigned 8 bit elements</short>
</element>
<!-- variable Visibility: default -->
<element name="in6_addr.u6_addr16">
<short>Address field using unsigned 16 bit elements</short>
</element>
<!-- variable Visibility: default -->
<element name="in6_addr.u6_addr32">
<short>Address field using unsigned 32 bit elements</short>
</element>
<!-- variable Visibility: default -->
<element name="in6_addr.s6_addr8">
<short>Address field using signed 8 bit elements</short>
</element>
<!-- variable Visibility: default -->
<element name="in6_addr.s6_addr">
<short>Address field using signed 8 bit elements</short>
</element>
<!-- variable Visibility: default -->
<element name="in6_addr.s6_addr16">
<short>Address field using signed 16 bit elements</short>
</element>
<!-- variable Visibility: default -->
<element name="in6_addr.s6_addr32">
<short>Address field using signed 32 bit elements</short>
</element>
<!-- alias type Visibility: default -->
<element name="TIn6Addr">
<short>Alias for <link id="#rtl.sockets.in6_addr">in6_addr</link> type.</short>
</element>
<!-- alias type Visibility: default -->
<element name="PIn6Addr">
<short>Pointer to <link id="#rtl.sockets.in6_addr">in6_addr</link> type.</short>
</element>
<!-- alias type Visibility: default -->
<element name="TInetSockAddr6">
<short>Alias for <link id="#rtl.sockets.sockaddr_in6">sockaddr_in6</link></short>
</element>
<!-- alias type Visibility: default -->
<element name="PInetSockAddr6">
<short>Pointer to <link id="#rtl.sockets.sockaddr_in6">sockaddr_in6</link> type</short>
</element>
<!-- alias type Visibility: default -->
<element name="Tsocket">
<short>Alias for easy kylix porting</short>
</element>
<!-- array type Visibility: default -->
<element name="TSockPairArray">
<short>Array of sockets, used in <link id="FPSocketPair"/> call.</short>
</element>
<!-- variable Visibility: default -->
<element name="SocketError">
<short>Contains the error code for the last socket operation.</short>
<descr>
<var>SocketError</var> contains the error code for the last socket
operation. It can be examined to return the last socket error.
</descr>
</element>
<!-- function Visibility: default -->
<element name="CloseSocket">
<short>Closes a socket handle.</short>
<descr>
<var>CloseSocket</var> closes a socket handle. It returns 0 if the socket
was closed successfully, -1 if it failed.
</descr>
<errors>
On error, -1 is returned.
</errors>
<seealso>
<link id="FPSocket"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpsendto">
<short>Send data through an unconnected socket to an address.</short>
<descr>
<var>fpSendTo</var> sends data from buffer <var>Msg</var> with length
<var>len</var> through socket <var>S</var> with options
<var>Flags</var>. The data is sent to address <var>tox</var>, which has
length <var>toLen</var>
</descr>
<errors>
On error, -1 is returned.
</errors>
<seealso>
<link id="fpSocket"/>
<link id="fpSend"/>
<link id="fpRecvFrom"/>
</seealso>
</element>
<element name="fprecvfrom">
<short>Receive data from an unconnected socket</short>
<descr>
<var>fpRecvFrom</var> receives data in buffer <var>Buf</var> with maximum
length <var>Len</var> from socket <var>S</var>.
Receipt is controlled by options in <var>Flags</var>. The location pointed
to by <var>from</var> will be filled with the address from the sender, and
it's length will be stored in <var>fromlen</var>.
The function returns the number of bytes received, or -1 on error.
<var>AddrLen</var>.
</descr>
<errors>
On error, -1 is returned.
</errors>
<seealso>
<link id="fpSocket"/>
<link id="fprecv"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpaccept">
<short>Accept a connection from a socket.</short>
<descr>
<p>
<var>Accept</var> accepts a connection from a socket <var>S</var>, which was
listening for a connection. If a connection is accepted, a file descriptor
is returned (positive number). On error <var>-1</var> is returned.
The returned socket may NOT be used to accept more connections.
The original socket remains open.
</p>
<p>
The <var>Accept</var> call fills the address of the connecting entity in
<var>Addrx</var>, and sets its length in <var>Addrlen</var>. <var>Addrx</var> should
be pointing to enough space, and <var>Addrlen</var> should be set to the
amount of space available, prior to the call.
</p>
</descr>
<errors>
<p>
On error, <var>-1</var> is returned, and errors are reported in
<var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt>SYS_EOPNOTSUPP</dt><dd>The socket type doesn't support the <var>Listen</var> operation.</dd>
<dt><link id="ESockEFAULT"/></dt><dd><var>Addr</var> points outside your address space.</dd>
<dt><link id="ESockEWOULDBLOCK"/></dt><dd>The requested operation would block the process.</dd>
</dl>
</errors>
<seealso>
<link id="fpListen"/>
<link id="fpConnect"/>
<link id="fpBind"/>
</seealso>
<example file="sockex/socksvr"/>
</element>
<element name="Accept">
<short>Accept a connection from a socket (deprecated).</short>
<descr>
<p>
<var>Accept</var> accepts a connection from a socket <var>Sock</var>, which was
listening for a connection. If a connection is accepted, a file descriptor
is returned. On error <var>-1</var> is returned. The returned socket may NOT
be used to accept more connections. The original socket remains open.
</p>
<p>
The <var>Accept</var> call fills the address of the connecting entity in
<var>Addr</var>, and sets its length in <var>Addrlen</var>. <var>Addr</var> should
be pointing to enough space, and <var>Addrlen</var> should be set to the
amount of space available, prior to the call.
</p>
<p>
The alternate forms of the <link id="Accept"/> command, with the
<var>Text</var> or <var>File</var> parameters are equivalent
to subsequently calling the regular <link id="Accept"/> function and the
<link id="Sock2Text"/> or <link id="Sock2File"/> functions.
These functions return <var>True</var> if successful, <var>False</var> otherwise.
</p>
</descr>
<errors>
<p>
On error, <var>-1</var> is returned, and errors are reported in
<var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt>SYS_EOPNOTSUPP</dt><dd>The socket type doesn't support the <var>Listen</var> operation.</dd>
<dt><link id="ESockEFAULT"/></dt><dd><var>Addr</var> points outside your address space.</dd>
<dt><link id="ESockEWOULDBLOCK"/></dt><dd>The requested operation would block the process.</dd>
</dl>
</errors>
<seealso>
<link id="FPListen"/>
<link id="Connect"/>
<link id="FPConnect"/>
<link id="FPBind"/>
</seealso>
<example file="sockex/socksvr"/>
</element>
<!-- function Visibility: default -->
<element name="fpbind">
<short>Bind a socket to an address.</short>
<descr>
<p>
<var>fpBind</var> binds the socket <var>s</var> to address <var>Addrx</var>.
<var>Addrx</var> has length <var>Addrlen</var>.
The function returns <var>0</var> if the call was successful, <var>-1</var> if
not.
</p>
</descr>
<errors>
<p>
Errors are returned in <var>SocketError</var> and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockEINVAL"/></dt><dd>The socket is already bound to an address,</dd>
<dt><link id="ESockEACCESS"/></dt><dd>Address is protected and you don't have permission to open it.</dd>
</dl>
<p>
More errors can be found in the Unix man pages.
</p>
</errors>
<seealso>
<link id="FPSocket"/>
</seealso>
</element>
<element name="Bind">
<short>Alias for <var>fpBind</var>.</short>
<descr>
<p>
<var>Bind</var> is an alias for <link id="fpBind"/> which binds to either a
socket struct (<var>Addr</var>) or a string indicating a UNIX socket file (UNIX
socket).
</p>
<p>
This function is deprecated, use <var>fpBind</var> instead.
</p>
</descr>
<seealso>
<link id="FPBind"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpconnect">
<short>Open a connection to a server socket.</short>
<descr>
<p>
<var>fpConnect</var> uses the socket <var>s</var> to open a connection to a peer, whose address is described by
<var>Name</var>. <var>NameLen</var> contains the length of the address.
The type of <var>Name</var> depends on the kind of connection you are trying to
make, but is generally one of <var>TSockAddr</var> or <var>TUnixSockAddr</var>.
</p>
<p>
The <var>fpConnect</var> function returns zero if the call
was success full, <var>-1</var> in case of error.
</p>
</descr>
<errors>
On error, <var>-1</var> is returned and errors are reported in
<var>SocketError</var>.
</errors>
<seealso>
<link id="fpListen"/>
<link id="fpBind"/>
<link id="fpAccept"/>
</seealso>
<example file="sockex/sockcli"/>
<example file="sockex/pfinger"/>
</element>
<element name="Connect">
<short>Open a connection to a server socket (deprecated).</short>
<descr>
<p>
<var>Connect</var> opens a connection to a peer, whose address is described by
<var>Addr</var>. <var>AddrLen</var> contains the length of the address.
The type of <var>Addr</var> depends on the kind of connection you're trying to
make, but is generally one of <var>TSockAddr</var> or <var>TUnixSockAddr</var>.
</p>
<p>
The forms of the <link id="Connect"/> command with the <var>Text</var> or
<var>File</var> arguments are equivalent to subsequently calling the regular <var>Connect</var>
function and the <link id="Sock2Text"/> or <link id="Sock2File"/> functions.
These functions return <var>True</var> if success full, <var>False</var> otherwise.
</p>
<p>
The <var>Connect</var> function returns a file descriptor if the call
was success full, <var>-1</var> in case of error.
</p>
</descr>
<errors>
On error, <var>-1</var> is returned and errors are reported in
<var>SocketError</var>.
</errors>
<seealso>
<link id="FPListen"/>
<link id="FPBind"/>
<link id="Accept"/>
<link id="FPAccept"/>
</seealso>
<example file="sockex/sockcli"/>
<example file="sockex/pfinger"/>
</element>
<!-- function Visibility: default -->
<element name="fpgetpeername">
<short>Return the name (address) of the connected peer.</short>
<descr>
<p>
<var>fpGetPeerName</var> returns the name of the entity connected to the
specified socket <var>S</var>. The Socket must be connected for this call to
work.
</p>
<p>
<var>Name</var> should point to enough space to store the name, the
amount of space pointed to should be set in <var>Namelen</var>.
When the function returns successfully, <var>Name</var> will be filled with the
name, and <var>Name</var> will be set to the length of <var>Name</var>.
</p>
</descr>
<errors>
<p>
Errors are reported in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOBUFS"/></dt><dd>The system doesn't have enough buffers to perform the operation.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt><link id="ESockEFAULT"/></dt><dd><var>Addr</var> points outside your address space.</dd>
<dt><link id="ESockENOTCONN"/></dt><dd>The socket isn't connected.</dd>
</dl>
</errors>
<seealso>
<link id="fpConnect"/>
<link id="fpSocket"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpgetsockname">
<short>Return name of socket.</short>
<descr>
<var>fpGetSockName</var> returns the current name of the specified socket
<var>S</var>. <var>Name</var> should point to enough space to store the name, the
amount of space pointed to should be set in <var>Namelen</var>.
When the function returns successfully, <var>Name</var> will be filled with the
name, and <var>Namelen</var> will be set to the length of <var>Name</var>.
</descr>
<errors>
<p>
Errors are reported in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOBUFS"/></dt><dd>The system doesn't have enough buffers to perform the operation.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt><link id="ESockEFAULT"/></dt><dd><var>Addr</var> points outside your address space.</dd>
</dl>
</errors>
<seealso>
<link id="fpBind"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpgetsockopt">
<short>Get current socket options</short>
<descr>
<p>
<var>fpGetSockOpt</var> gets the connection option <var>optname</var>, for socket <var>S</var>.
The socket may be obtained from different levels, indicated by <var>Level</var>,
which can be one of the following:
</p>
<dl>
<dt>SOL_SOCKET</dt><dd>From the socket itself.</dd>
<dt>XXX</dt><dd>set <var>Level</var> to <var>XXX</var>, the protocol number of the protocol
which should interpret the option.</dd>
</dl>
<p>
The options are stored in the memory location pointed to by
<var>optval</var>. <var>optlen</var> should point to the initial length of
<var>optval</var>, and on return will contain the actual length of the
stored data.
</p>
<p>
On success, 0 is returned. On Error, -1 is returned.
</p>
</descr>
<errors>
<p>
Errors are reported in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt><link id="ESockEFAULT"/></dt><dd><var>OptVal</var> points outside your address space.</dd>
</dl>
</errors>
<seealso>
<link id="fpSetSockOpt"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fplisten">
<short>Listen for connections on a socket.</short>
<descr>
<p>
<var>fpListen</var> listens for up to <var>backlog</var> connections from socket
<var>S</var>. The socket <var>S</var> must be of type <var>SOCK_STREAM</var> or
<var>Sock_SEQPACKET</var>.
</p>
<p>
The function returns <var>0</var> if a connection was accepted, <var>-1</var>
if an error occurred.
</p>
</descr>
<errors>
<p>
Errors are reported in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt>SYS_EOPNOTSUPP</dt><dd>The socket type doesn't support the <var>Listen</var> operation.</dd>
</dl>
</errors>
<seealso>
<link id="fpSocket"/>
<link id="fpBind"/>
<link id="fpConnect"/>
</seealso>
</element>
<element name="fprecv">
<short>Receive data on socket</short>
<descr>
<p>
<var>fpRecv</var> reads at most <var>len</var> bytes from socket <var>S</var> into
address <var>buf</var>. The socket must be in a connected state.
<var>Flags</var> can be one of the following:
</p>
<dl>
<dt>1</dt><dd>Process out-of band data.</dd>
<dt>4</dt><dd>Bypass routing, use a direct interface.</dd>
<dt>??</dt><dd>Wait for full request or report an error.</dd>
</dl>
<p>
The functions returns the number of bytes actually read from the socket, or
-1 if a detectable error occurred.
</p>
</descr>
<errors>
<p>
Errors are reported in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTCONN"/></dt><dd>The socket isn't connected.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt><link id="ESockEFAULT"/></dt><dd>The address is outside your address space.</dd>
<dt><link id="ESockEMSGSIZE"/></dt><dd>The message cannot be sent atomically.</dd>
<dt><link id="ESockEWOULDBLOCK"/></dt><dd>The requested operation would block the process.</dd>
<dt><link id="ESockENOBUFS"/></dt><dd>The system doesn't have enough free buffers available.</dd>
</dl>
</errors>
<seealso>
<link id="FPSend"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpsend">
<short>Send data through socket</short>
<descr>
<p>
<var>fpSend</var> sends <var>Len</var> bytes starting from address <var>Msg</var>
to socket <var>S</var>. <var>S</var> must be in a connected state. Options
can be passed in <var>Flags</var>.
</p>
<p>
The function returns the number of bytes sent, or -1 if a detectable
error occurred.
</p>
<p>
<var>Flags</var> can be one of the following:
</p>
<dl>
<dt>1</dt><dd>Process out-of band data.</dd>
<dt>4</dt><dd>Bypass routing, use a direct interface.</dd>
</dl>
</descr>
<errors>
<p>
Errors are reported in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt><link id="ESockEFAULT"/></dt><dd>The address is outside your address space.</dd>
<dt><link id="ESockEMSGSIZE"/></dt><dd>The message cannot be sent atomically.</dd>
<dt><link id="ESockEWOULDBLOCK"/></dt><dd>The requested operation would block the process.</dd>
<dt><link id="ESockENOBUFS"/></dt><dd>The system doesn't have enough free buffers available.</dd>
</dl>
</errors>
<seealso>
<link id="fpRecv"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpsetsockopt">
<short>Set socket options.</short>
<descr>
<p>
<var>fpSetSockOpt</var> sets the connection options for socket <var>S</var>.
The socket may be manipulated at different levels, indicated by <var>Level</var>,
which can be one of the following:
</p>
<dl>
<dt>SOL_SOCKET</dt><dd>To manipulate the socket itself.</dd>
<dt>XXX</dt><dd>set <var>Level</var> to <var>XXX</var>, the protocol number of the protocol
which should interpret the option.</dd>
</dl>
<p>
The actual option is stored in a buffer pointed to by <var>optval</var>, with length
<var>optlen</var>.
</p>
<p>
For more information on this call, refer to the UNIX manual page
<file>setsockopt</file>
</p>
</descr>
<errors>
<p>
Errors are reported in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
<dt><link id="ESockEFAULT"/></dt><dd><var>OptVal</var> points outside your address space.</dd>
</dl>
</errors>
<seealso>
<link id="fpGetSockOpt"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpshutdown">
<short>Close one end of full duplex connection.</short>
<descr>
<p>
<var>fpShutDown</var> closes one end of a full duplex socket connection, described
by <var>S</var>. The parameter <var>How</var> determines how the connection
will be shut down, and can be one of the following:
</p>
<dl>
<dt>0</dt><dd>Further receives are disallowed.</dd>
<dt>1</dt><dd>Further sends are disallowed.</dd>
<dt>2</dt><dd>Sending nor receiving are allowed.</dd>
</dl>
<p>
On success, the function returns 0, on error -1 is returned.
</p>
</descr>
<errors>
<p>
<var>SocketError</var> is used to report errors, and includes the following:
</p>
<dl>
<dt><link id="ESockEBADF"/></dt><dd>The socket descriptor is invalid.</dd>
<dt><link id="ESockENOTCONN"/></dt><dd>The socket isn't connected.</dd>
<dt><link id="ESockENOTSOCK"/></dt><dd>The descriptor is not a socket.</dd>
</dl>
</errors>
<seealso>
<link id="fpSocket"/>
<link id="fpConnect"/>
</seealso>
</element>
<element name="Sock2File">
<short>Convert socket to untyped file descriptors</short>
<descr>
<var>Sock2File</var> transforms a socket <var>Sock</var> into 2 Pascal file
descriptors of type <var>File</var>, one for reading from the socket
(<var>SockIn</var>), one for writing to the socket (<var>SockOut</var>).
</descr>
<errors>
None.
</errors>
<seealso>
<link id="FPSocket"/>
<link id="Sock2Text"/>
</seealso>
</element>
<element name="Sock2Text">
<short>Convert socket to text file descriptors</short>
<descr>
<var>Sock2Text</var> transforms a socket <var>Sock</var> into 2 Pascal file
descriptors of type <var>Text</var>, one for reading from the socket
(<var>SockIn</var>), one for writing to the socket (<var>SockOut</var>).
</descr>
<errors>
None.
</errors>
<seealso>
<link id="FPSocket"/>
<link id="Sock2File"/>
</seealso>
</element>
<element name="fpsocket">
<short>Create new socket</short>
<descr>
<p>
<var>fpSocket</var> creates a new socket in domain <var>Domain</var>, from type
<var>xType</var> using protocol <var>Protocol</var>.
The Domain, Socket type and Protocol can be specified using predefined
constants (see the section on constants for available constants)
If successful, the function returns a socket descriptor, which can be passed
to a subsequent <link id="fpBind"/> call. If unsuccessfully, the function returns -1.
</p>
<p>
for an example, see <link id="Accept"/>.
</p>
</descr>
<errors>
<p>
Errors are returned in <var>SocketError</var>, and include the following:
</p>
<dl>
<dt><link id="ESockEPROTONOSUPPORT"/></dt><dd>The protocol type or the specified protocol is not
supported within this domain.</dd>
<dt><link id="ESockEMFILE"/></dt><dd>The per-process descriptor table is full.</dd>
<dt>SYS_ENFILE</dt><dd>The system file table is full.</dd>
<dt><link id="ESockEACCESS"/></dt><dd>Permission to create a socket of the specified type
and/or protocol is denied.</dd>
<dt><link id="ESockENOBUFS"/></dt><dd>Insufficient buffer space is available. The socket
cannot be created until sufficient resources are freed.</dd>
</dl>
</errors>
<seealso>
<link id="FPSocketPair"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="fpsocketpair">
<short>Create socket pair.</short>
<descr>
<var>fpSocketPair</var> creates 2 sockets in domain <var>D</var>, from type
<var>xType</var> and using protocol <var>Protocol</var>.
The pair is returned in <var>sv</var>, and they are indistinguishable.
The function returns -1 upon error and 0 upon success.
</descr>
<errors>
Errors are reported in <var>SocketError</var>, and are the same as in <link id="FPSocket"/>
</errors>
<seealso>
<link id="Str2UnixSockAddr"/>
</seealso>
</element>
<element name="Str2UnixSockAddr">
<short>Convert path to <link id="TUnixSockAddr"/></short>
<descr>
<var>Str2UnixSockAddr</var> transforms a Unix socket address in a string to a
<var>TUnixSockAddr</var> structure which can be passed to the <link id="Bind"/> call.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="FPSocket"/>
<link id="FPBind"/>
</seealso>
</element>
<element name="htonl">
<short>Convert long integer from host ordered to network ordered</short>
<descr>
<var>htonl</var> makes sure that the bytes in <var>host</var> are ordered
in the correct way for sending over the network and returns the correctly
ordered result.
</descr>
<seealso>
<link id="htons"/>
<link id="ntohl"/>
<link id="ntohs"/>
</seealso>
</element>
<element name="htons">
<short>Convert short integer from host ordered to network ordered</short>
<descr>
<var>htons</var> makes sure that the bytes in <var>host</var> are ordered
in the correct way for sending over the network and returns the correctly
ordered result.
</descr>
<seealso>
<link id="htonl"/>
<link id="ntohl"/>
<link id="ntohs"/>
</seealso>
</element>
<element name="ntohl">
<short>Convert long integer from network ordered to host ordered</short>
<descr>
<var>ntohs</var> makes sure that the bytes in <var>Net</var>, received from
the network, are ordered in the correct way for handling by the host
machine, and returns the correctly ordered result.
</descr>
<seealso>
<link id="htonl"/>
<link id="htons"/>
<link id="ntohs"/>
</seealso>
</element>
<element name="ntohs">
<short>Convert short integer from network ordered to host ordered</short>
<descr>
<var>ntohs</var> makes sure that the bytes in <var>Net</var>, received from
the network, are ordered in the correct way for handling by the host
machine, and returns the correctly ordered result.
</descr>
<seealso>
<link id="htonl"/>
<link id="htons"/>
<link id="ntohl"/>
</seealso>
</element>
<!-- unresolved type reference Visibility: default -->
<element name="UnixType">
<short>Basic Unix types</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- alias type Visibility: default -->
<element name="TIn_addr">
<short>Alias for <link id="#rtl.sockets.In_addr">in_addr</link> record type.</short>
</element>
<!-- pointer type Visibility: default -->
<element name="pin_addr">
<short>Pointer to <link id="#rtl.sockets.In_addr">in_addr</link> record.</short>
</element>
<!-- alias type Visibility: default -->
<element name="TInAddr">
<short>Alias for <link id="#rtl.sockets.In_addr">in_addr</link> record type.</short>
</element>
<!-- array type Visibility: default -->
<element name="in_addrbytes">
<short>Array with same length as <link id="#rtl.sockets.In_addr">in_addr</link> record</short>
<descr>
<var>in_addrbytes</var> is used to typecast a <link id="in_addr"/> record to
an array of bytes.
</descr>
</element>
<!-- alias type Visibility: default -->
<element name="Sockaddr">
<short>Alias for <link id="#rtl.sockets.TSockAddr">TSockAddr</link> record type.</short>
</element>
<!-- function Visibility: default -->
<element name="NetAddrToStr">
<short>Convert a network address to a string.</short>
<descr>
<var>NetAddrToStr</var> converts the network address in <var>Entry</var> to
a string representation in human-readable form (a dotted quad).
</descr>
<seealso>
<link id="HostAddrToStr"/>
<link id="StrToNetAddr"/>
<link id="StrToHostAddr"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="HostAddrToStr">
<short>Convert a host address to a string.</short>
<descr>
<p>
<var>HostAddrToStr</var> converts the host address in <var>Entry</var> to
a string representation in human-readable form (a dotted quad).
</p>
<p>
Basically, it is the same as <link id="NetAddrToStr"/>, but with the bytes
in correct order.
</p>
</descr>
<seealso>
<link id="NetAddrToStr"/>
<link id="StrToHostAddr"/>
<link id="StrToNetAddr"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="StrToHostAddr">
<short>Convert a string to a host address.</short>
<descr>
<var>StrToHostAddr</var> converts the string representation in <var>IP</var>
to a host address and returns the host address.
</descr>
<errors>
On error, the host address is filled with zeroes.
</errors>
<seealso>
<link id="NetAddrToStr"/>
<link id="HostAddrToStr"/>
<link id="StrToNetAddr"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="StrToNetAddr">
<short>Convert a string to a network address.</short>
<descr>
<var>StrToNetAddr</var> converts the string representation in <var>IP</var>
to a network address and returns the network address.
</descr>
<errors>
On error, the network address is filled with zeroes.
</errors>
<seealso>
<link id="NetAddrToStr"/>
<link id="HostAddrToStr"/>
<link id="StrToHostAddr"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="HostToNet">
<short>Convert a host address to a network address</short>
<descr>
<var>HostToNet</var> converts a host address to a network address.
It takes care of endianness of the host machine. The address can be
specified as a dotted quad or as a longint.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="NetToHost"/>
<link id="NToHS"/>
<link id="HToNS"/>
<link id="ShortHostToNet"/>
<link id="ShortNetToHost"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="NetToHost">
<short>Convert a network address to a host address.</short>
<descr>
<var>NetToHost</var> converts a network address to a host address.
It takes care of endianness of the host machine. The address can be
specified as a dotted quad or as a longint.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="HostToNet"/>
<link id="NToHS"/>
<link id="HToNS"/>
<link id="ShortHostToNet"/>
<link id="ShortNetToHost"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="ShortHostToNet">
<short>Convert a host port number to a network port number</short>
<descr>
<var>ShortHostToNet</var> converts a host port number to a network port
number. It takes care of endianness of the host machine.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="ShortNetToHost"/>
<link id="HostToNet"/>
<link id="NToHS"/>
<link id="HToNS"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="ShortNetToHost">
<short>Convert a network port number to a host port number</short>
<descr>
<var>ShortNetToHost</var> converts a network port number to a host port
number. It takes care of endianness of the host machine.
</descr>
<errors>
None.
</errors>
<seealso>
<link id="ShortNetToHost"/>
<link id="HostToNet"/>
<link id="NToHS"/>
<link id="HToNS"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="HostAddrToStr6">
<short>Convert a IPV6 host address to a string representation.</short>
<descr>
<p>
<var>HostAddrToStr6</var> converts the IPV6 host address in <var>Entry</var> to
a string representation in human-readable form.
</p>
<p>
Basically, it is the same as <link id="NetAddrToStr6"/>, but with the bytes
in correct order.
</p>
</descr>
<seealso>
<link id="NetAddrToStr"/>
<link id="StrToHostAddr"/>
<link id="StrToNetAddr"/>
<link id="StrToHostAddr6"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="StrToHostAddr6">
<short>Convert a string to a IPV6 host address.</short>
<descr>
<var>StrToHostAddr6</var> converts the string representation in <var>IP</var>
to a IPV6 host address and returns the host address.
</descr>
<errors>
On error, the address is filled with zeroes.
</errors>
<seealso>
<link id="NetAddrToStr6"/>
<link id="HostAddrToStr6"/>
<link id="StrToHostAddr"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="NetAddrToStr6">
<short>Convert a IPV6 network address to a string.</short>
<descr>
<p>
<var>NetAddrToStr6</var> converts the IPV6 network address in <var>Entry</var> to
a string representation in human-readable form.
</p>
<p>
Basically, it is the same as <link id="NetAddrToStr6"/>, but with the bytes
in correct order.
</p>
</descr>
<seealso>
<link id="NetAddrToStr"/>
<link id="StrToHostAddr"/>
<link id="StrToNetAddr"/>
<link id="StrToHostAddr6"/>
</seealso>
</element>
<!-- function Visibility: default -->
<element name="StrToNetAddr6">
<short>Convert a string to a IPV6 network address</short>
<descr>
<var>StrToNetAddr6</var> converts the string representation in <var>IP</var>
to a IPV6 network address and returns the network address.
</descr>
<errors>
On error, the address is filled with zeroes.
</errors>
<seealso>
<link id="NetAddrToStr6"/>
<link id="HostAddrToStr6"/>
<link id="StrToHostAddr6"/>
</seealso>
</element>
<!-- constant Visibility: default -->
<element name="NoAddress">
<short>Constant indicating invalid (no) network address.</short>
</element>
<!-- constant Visibility: default -->
<element name="NoNet">
<short>Constant indicating invalid (no) network address.</short>
</element>
<!-- constant Visibility: default -->
<element name="NoAddress6">
<short>Constant indicating invalid (no) IPV6 network address.</short>
</element>
<!-- constant Visibility: default -->
<element name="NoNet6">
<short>Constant indicating invalid (no) IPV6 network address.</short>
</element>
<!-- unresolved type reference Visibility: default -->
<element name="UnixType">
<short>Unix types</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_IP">
<short>Dummy protocol for TCP.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_HOPOPTS">
<short>IPv6 Hop-by-Hop options.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_ICMP">
<short>Internet Control Message Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_IGMP">
<short>Internet Group Management Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_IPIP">
<short>IPIP tunnels (older KA9Q tunnels use 94).</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_TCP">
<short>Transmission Control Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_EGP">
<short>Exterior Gateway Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_PUP">
<short>PUP protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_UDP">
<short>User Datagram Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_IDP">
<short>XNS IDP protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_TP">
<short>SO Transport Protocol Class 4.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_IPV6">
<short>IPv6 header.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_ROUTING">
<short>IPv6 routing header.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_FRAGMENT">
<short>IPv6 fragmentation header.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_RSVP">
<short>Reservation Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_GRE">
<short>General Routing Encapsulation.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_ESP">
<short>encapsulating security payload.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_AH">
<short>authentication header.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_ICMPV6">
<short>ICMPv6.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_NONE">
<short>IPv6 no next header.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_DSTOPTS">
<short>IPv6 destination options.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_MTP">
<short>Multicast Transport Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_ENCAP">
<short>Encapsulation Header.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_PIM">
<short>Protocol Independent Multicast.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_COMP">
<short>Compression Header Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_SCTP">
<short>Stream Control Transmission Protocol.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_RAW">
<short>Raw IP packets.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPPROTO_MAX">
<short>Maximum value for IPPROTO options</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_OPTIONS">
<short>IP per-packet options.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_HDRINCL">
<short>Header is included with data.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_TOS">
<short>IP type of service and precedence.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_TTL">
<short>IP time to live.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_RECVOPTS">
<short>Receive all IP options w/datagram.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_RETOPTS">
<short>Set/get IP per-packet options.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_RECVRETOPTS">
<short>Receive IP options for response.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_MULTICAST_IF">
<short>set/get IP multicast i/f</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_MULTICAST_TTL">
<short>set/get IP multicast ttl</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_MULTICAST_LOOP">
<short>set/get IP multicast loopback</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_ADD_MEMBERSHIP">
<short>add an IP group membership</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_DROP_MEMBERSHIP">
<short>drop an IP group membership</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_UNBLOCK_SOURCE">
<short>unblock data from source</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_BLOCK_SOURCE">
<short>block data from source</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_ADD_SOURCE_MEMBERSHIP">
<short>join source group</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_DROP_SOURCE_MEMBERSHIP">
<short>leave source group</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_MSFILTER">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_JOIN_GROUP">
<short>join any-source group</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_BLOCK_SOURCE">
<short>block from given group</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_UNBLOCK_SOURCE">
<short>unblock from given group</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_LEAVE_GROUP">
<short>leave any-source group</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_JOIN_SOURCE_GROUP">
<short>join source-spec gruoup</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_LEAVE_SOURCE_GROUP">
<short>leave source-spec group</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_MSFILTER">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_EXCLUDE">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="MCAST_INCLUDE">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_ROUTER_ALERT">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_PKTINFO">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_PKTOPTIONS">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_PMTUDISC">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_MTU_DISCOVER">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_RECVERR">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_RECVTTL">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_RECVTOS">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_PMTUDISC_DONT">
<short>Never send DF frames.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_PMTUDISC_WANT">
<short>Use per route hints.</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_PMTUDISC_DO">
<short>Always DF.</short>
</element>
<!-- constant Visibility: default -->
<element name="SOL_IP">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_DEFAULT_MULTICAST_TTL">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_DEFAULT_MULTICAST_LOOP">
<short>Undocumented ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IP_MAX_MEMBERSHIPS">
<short>Maximum group memberships for multicast messages</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_ADDRFORM">
<short>Change the IPV6 address into a different address family. Deprecated</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_PKTINFO">
<short>Change delivery options for incoming IPV6 datagrams</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_HOPOPTS">
<short>Deliver hop option control messages</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_DSTOPTS">
<short>Deliver destination option control messages</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RTHDR">
<short>Deliver routing header control messages</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RXSRCRT">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_PKTOPTIONS">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_CHECKSUM">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_HOPLIMIT">
<short>Deliver an integer containing the HOP count</short>
</element>
<!-- constant Visibility: default -->
<element name="SCM_SRCRT">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_NEXTHOP">
<short>sendmsg: set next hop for IPV6 datagram</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_AUTHHDR">
<short>GetSockOpt/SetSockopt: Deliver authentication header messages</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_UNICAST_HOPS">
<short>GetSockOpt/SetSockopt: Get/Set unicast hop limit</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_MULTICAST_IF">
<short>GetSockOpt/SetSockopt: Get/Set device for multicast packages on the
socket.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_MULTICAST_HOPS">
<short>GetSockOpt/SetSockopt: Get/Set the multicast hop limit.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_MULTICAST_LOOP">
<short>GetSockOpt/SetSockopt: Control whether socket sees multicast packages
that it has sent itself</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_JOIN_GROUP">
<short>GetSockOpt/SetSockopt: Control membership (join group) in multicast groups</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_LEAVE_GROUP">
<short>GetSockOpt/SetSockopt: Control membership (leave group)in multicast groups</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_ROUTER_ALERT">
<short>GetSockOpt/SetSockopt: Get/Set Pass all forwarded packets containing router
alert option</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_MTU_DISCOVER">
<short>GetSockOpt/SetSockopt: Get/Set Control path MTU Discovery on the socket</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_MTU">
<short>GetSockOpt/SetSockopt: Get/Set the MTU for the socket</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RECVERR">
<short>GetSockOpt/SetSockopt: Control receiving of asynchronous error options</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_V6ONLY">
<short>GetSockOpt/SetSockopt: Handle IPV6 connections only</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_JOIN_ANYCAST">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_LEAVE_ANYCAST">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_IPSEC_POLICY">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_XFRM_POLICY">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_ADD_MEMBERSHIP">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_DROP_MEMBERSHIP">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RXHOPOPTS">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RXDSTOPTS">
<short>Undocumented Getsockopt option ?</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_PMTUDISC_DONT">
<short>Never send DF frames.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_PMTUDISC_WANT">
<short>Use per route hints.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_PMTUDISC_DO">
<short>Always DF.</short>
</element>
<!-- constant Visibility: default -->
<element name="SOL_IPV6">
<short>Socket level values for IPv6: IPV6</short>
</element>
<!-- constant Visibility: default -->
<element name="SOL_ICMPV6">
<short>Socket level values for IPv6: ICMPV6</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RTHDR_LOOSE">
<short>Hop doesn't need to be neighbour.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RTHDR_STRICT">
<short>Hop must be a neighbour.</short>
</element>
<!-- constant Visibility: default -->
<element name="IPV6_RTHDR_TYPE_0">
<short>IPv6 Routing header type 0.</short>
</element>
<!-- constant Visibility: default -->
<element name="INADDR_ANY">
<short>A bitmask matching any IP address on the local machine.</short>
</element>
<!-- constant Visibility: default -->
<element name="INADDR_NONE">
<short>A bitmask matching no valid IP address</short>
</element>
<!-- variable Visibility: default -->
<element name="in_addr.s_bytes">
<short>Address as bytes</short>
</element>
<!-- variable Visibility: default -->
<element name="TSockAddr.sin_family">
<short>Internet socket family</short>
</element>
<!-- variable Visibility: default -->
<element name="TSockAddr.sin_port">
<short>Internet socket port</short>
</element>
<!-- variable Visibility: default -->
<element name="TSockAddr.sin_addr">
<short>Internet socket host address</short>
</element>
<!-- variable Visibility: default -->
<element name="TSockAddr.sin_zero">
<short>Padding</short>
</element>
<!-- variable Visibility: default -->
<element name="Tin6_addr.u6_addr8">
<short>IPV6 socket address as bytes</short>
</element>
<!-- variable Visibility: default -->
<element name="Tin6_addr.u6_addr16">
<short>IPV6 socket address as words</short>
</element>
<!-- variable Visibility: default -->
<element name="Tin6_addr.u6_addr32">
<short>IPV6 socket address as cardinals</short>
</element>
<!-- variable Visibility: default -->
<element name="Tin6_addr.s6_addr8">
<short>IPV6 socket address as shortints</short>
</element>
<!-- variable Visibility: default -->
<element name="Tin6_addr.s6_addr">
<short>IPV6 socket address as shortints</short>
</element>
<!-- variable Visibility: default -->
<element name="Tin6_addr.s6_addr16">
<short>IPV6 socket address as smallints</short>
</element>
<!-- variable Visibility: default -->
<element name="Tin6_addr.s6_addr32">
<short>IPV6 socket address as longints</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEINTR">
<short>Alias : operation interrupted</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEBADF">
<short>Alias: bad file descriptor</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEFAULT">
<short>Alias: an error occurred</short>
</element>
<!-- constant Visibility: default -->
<element name="EsockEINVAL">
<short>Alias: Invalid value specified</short>
</element>
<!-- alias type Visibility: default -->
<element name="TSockLen">
<short>Type to specify socket length in fpBind and fpConnect</short>
<descr>
The actual type of <var>TSockLen</var> depends on the platform.
</descr>
<seealso>
<link id="fpBind"/>
<link id="fpConnect"/>
</seealso>
</element>
<!-- constant Visibility: default -->
<element name="TCP_NODELAY">
<short>Get/Set No delay flag: disable Nagle algorithm</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_MAXSEG">
<short>Get/Set Maximum segment size</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_CORK">
<short>Get/Set CORK algorithm: Send only complete packets</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_KEEPIDLE">
<short>Get/Set inactivity interval between KEEPALIVE transmissions.</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_KEEPINTVL">
<short>Get/Set retry interval for unacknowledged KEEPALIVE transmissions.</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_KEEPCNT">
<short>Get/Set retry count for unacknowledged KEEPALIVE transmissions.</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_SYNCNT">
<short>Get/Set number of SYN packets to send before giving up on connection establishment</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_LINGER2">
<short>Get/Set Linger2 flag</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_DEFER_ACCEPT">
<short>Get/Set deferred accept on server socket</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_WINDOW_CLAMP">
<short>Get/Set maximum packet size</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_INFO">
<short>Get TCP connection information (Linux only)</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_QUICKACK">
<short>Get/Set quick ACK packet option.</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_CONGESTION">
<short>Get/set the congestion-control algorithm for this socket</short>
</element>
<!-- constant Visibility: default -->
<element name="TCP_MD5SIG">
<short>Get/Set TCP MD5 signature option</short>
</element>
<!-- constant Visibility: default -->
<element name="UDP_CORK">
<short>Get/Set UDP CORK algorithm on datagram sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="UDP_ENCAP">
<short>Get/Set UDP encapsulation flag for IPSec datagram sockets</short>
</element>
<!-- constant Visibility: default -->
<element name="UDP_ENCAP_ESPINUDP_NON_IKE">
<short>? Undocumented datagram option, IPSec related</short>
</element>
<!-- constant Visibility: default -->
<element name="UDP_ENCAP_ESPINUDP">
<short>? Undocumented datagram option, IPSec related</short>
</element>
<!-- constant Visibility: default -->
<element name="UDP_ENCAP_L2TPINUDP">
<short>? Undocumented datagram option, IPSec related</short>
</element>
<!-- alias type Visibility: default -->
<element name="TSockAddr6">
<short>Alias for <var>sockaddr_in6</var>/></short>
<descr>
<var>TSockAddr6</var> is an alias for <link id="sockaddr6_in"/>
</descr>
<seealso>
<link id="sockaddr6_in"/>
</seealso>
</element>
<!-- pointer type Visibility: default -->
<element name="PSockAddr6">
<short>Pointer to <var>TSockAddr6</var></short>
<descr>
<var>PSockAddr6</var> is a pointer to a record of type <link
id="TSockAddr6"/>.
</descr>
<seealso>
<link id="TSockAddr6"/>.
</seealso>
</element>
<!-- constant Visibility: default -->
<element name="EsockADDRINUSE">
<short>Error number when socket address is already in use</short>
<descr>
<var>EsockADDRINUSE</var> is the error reported by <link id="fpBind"/> when
the socket is already in use.
</descr>
<seealso>
<link id="fpBind"/>
</seealso>
</element>
</module>
</package>
</fpdoc-descriptions>
|