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 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765
|
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="Start" href="index.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of extensions" rel=Appendix href="index_extensions.html">
<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of class attributes" rel=Appendix href="index_attributes.html">
<link title="Index of class methods" rel=Appendix href="index_methods.html">
<link title="Index of classes" rel=Appendix href="index_classes.html">
<link title="Index of class types" rel=Appendix href="index_class_types.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Index of module types" rel=Appendix href="index_module_types.html">
<link title="Uq_gtk" rel="Chapter" href="Uq_gtk.html">
<link title="Uq_tcl" rel="Chapter" href="Uq_tcl.html">
<link title="Equeue" rel="Chapter" href="Equeue.html">
<link title="Unixqueue" rel="Chapter" href="Unixqueue.html">
<link title="Unixqueue_pollset" rel="Chapter" href="Unixqueue_pollset.html">
<link title="Unixqueue_select" rel="Chapter" href="Unixqueue_select.html">
<link title="Uq_resolver" rel="Chapter" href="Uq_resolver.html">
<link title="Uq_engines" rel="Chapter" href="Uq_engines.html">
<link title="Uq_multiplex" rel="Chapter" href="Uq_multiplex.html">
<link title="Uq_transfer" rel="Chapter" href="Uq_transfer.html">
<link title="Uq_socks5" rel="Chapter" href="Uq_socks5.html">
<link title="Uq_io" rel="Chapter" href="Uq_io.html">
<link title="Uq_lwt" rel="Chapter" href="Uq_lwt.html">
<link title="Uq_libevent" rel="Chapter" href="Uq_libevent.html">
<link title="Uq_mt" rel="Chapter" href="Uq_mt.html">
<link title="Uq_client" rel="Chapter" href="Uq_client.html">
<link title="Uq_server" rel="Chapter" href="Uq_server.html">
<link title="Uq_datagram" rel="Chapter" href="Uq_datagram.html">
<link title="Uq_engines_compat" rel="Chapter" href="Uq_engines_compat.html">
<link title="Equeue_intro" rel="Chapter" href="Equeue_intro.html">
<link title="Equeue_howto" rel="Chapter" href="Equeue_howto.html">
<link title="Netcamlbox" rel="Chapter" href="Netcamlbox.html">
<link title="Netcgi_apache" rel="Chapter" href="Netcgi_apache.html">
<link title="Netcgi_modtpl" rel="Chapter" href="Netcgi_modtpl.html">
<link title="Netcgi_plex" rel="Chapter" href="Netcgi_plex.html">
<link title="Netcgi_common" rel="Chapter" href="Netcgi_common.html">
<link title="Netcgi" rel="Chapter" href="Netcgi.html">
<link title="Netcgi_ajp" rel="Chapter" href="Netcgi_ajp.html">
<link title="Netcgi_scgi" rel="Chapter" href="Netcgi_scgi.html">
<link title="Netcgi_cgi" rel="Chapter" href="Netcgi_cgi.html">
<link title="Netcgi_fcgi" rel="Chapter" href="Netcgi_fcgi.html">
<link title="Netcgi_dbi" rel="Chapter" href="Netcgi_dbi.html">
<link title="Netcgi1_compat" rel="Chapter" href="Netcgi1_compat.html">
<link title="Netcgi_test" rel="Chapter" href="Netcgi_test.html">
<link title="Netcgi_porting" rel="Chapter" href="Netcgi_porting.html">
<link title="Nethttp_client_conncache" rel="Chapter" href="Nethttp_client_conncache.html">
<link title="Nethttp_client" rel="Chapter" href="Nethttp_client.html">
<link title="Nettelnet_client" rel="Chapter" href="Nettelnet_client.html">
<link title="Netftp_data_endpoint" rel="Chapter" href="Netftp_data_endpoint.html">
<link title="Netftp_client" rel="Chapter" href="Netftp_client.html">
<link title="Nethttp_fs" rel="Chapter" href="Nethttp_fs.html">
<link title="Netftp_fs" rel="Chapter" href="Netftp_fs.html">
<link title="Netsmtp" rel="Chapter" href="Netsmtp.html">
<link title="Netpop" rel="Chapter" href="Netpop.html">
<link title="Netldap" rel="Chapter" href="Netldap.html">
<link title="Netclient_tut" rel="Chapter" href="Netclient_tut.html">
<link title="Netgss_bindings" rel="Chapter" href="Netgss_bindings.html">
<link title="Netgss" rel="Chapter" href="Netgss.html">
<link title="Nethttpd_types" rel="Chapter" href="Nethttpd_types.html">
<link title="Nethttpd_kernel" rel="Chapter" href="Nethttpd_kernel.html">
<link title="Nethttpd_reactor" rel="Chapter" href="Nethttpd_reactor.html">
<link title="Nethttpd_engine" rel="Chapter" href="Nethttpd_engine.html">
<link title="Nethttpd_services" rel="Chapter" href="Nethttpd_services.html">
<link title="Nethttpd_plex" rel="Chapter" href="Nethttpd_plex.html">
<link title="Nethttpd_util" rel="Chapter" href="Nethttpd_util.html">
<link title="Nethttpd_intro" rel="Chapter" href="Nethttpd_intro.html">
<link title="Netmcore" rel="Chapter" href="Netmcore.html">
<link title="Netmcore_camlbox" rel="Chapter" href="Netmcore_camlbox.html">
<link title="Netmcore_mempool" rel="Chapter" href="Netmcore_mempool.html">
<link title="Netmcore_heap" rel="Chapter" href="Netmcore_heap.html">
<link title="Netmcore_ref" rel="Chapter" href="Netmcore_ref.html">
<link title="Netmcore_array" rel="Chapter" href="Netmcore_array.html">
<link title="Netmcore_sem" rel="Chapter" href="Netmcore_sem.html">
<link title="Netmcore_mutex" rel="Chapter" href="Netmcore_mutex.html">
<link title="Netmcore_condition" rel="Chapter" href="Netmcore_condition.html">
<link title="Netmcore_queue" rel="Chapter" href="Netmcore_queue.html">
<link title="Netmcore_buffer" rel="Chapter" href="Netmcore_buffer.html">
<link title="Netmcore_matrix" rel="Chapter" href="Netmcore_matrix.html">
<link title="Netmcore_hashtbl" rel="Chapter" href="Netmcore_hashtbl.html">
<link title="Netmcore_process" rel="Chapter" href="Netmcore_process.html">
<link title="Netmcore_tut" rel="Chapter" href="Netmcore_tut.html">
<link title="Netmcore_basics" rel="Chapter" href="Netmcore_basics.html">
<link title="Netplex_types" rel="Chapter" href="Netplex_types.html">
<link title="Netplex_mp" rel="Chapter" href="Netplex_mp.html">
<link title="Netplex_mt" rel="Chapter" href="Netplex_mt.html">
<link title="Netplex_log" rel="Chapter" href="Netplex_log.html">
<link title="Netplex_controller" rel="Chapter" href="Netplex_controller.html">
<link title="Netplex_container" rel="Chapter" href="Netplex_container.html">
<link title="Netplex_sockserv" rel="Chapter" href="Netplex_sockserv.html">
<link title="Netplex_workload" rel="Chapter" href="Netplex_workload.html">
<link title="Netplex_main" rel="Chapter" href="Netplex_main.html">
<link title="Netplex_config" rel="Chapter" href="Netplex_config.html">
<link title="Netplex_kit" rel="Chapter" href="Netplex_kit.html">
<link title="Rpc_netplex" rel="Chapter" href="Rpc_netplex.html">
<link title="Netplex_cenv" rel="Chapter" href="Netplex_cenv.html">
<link title="Netplex_semaphore" rel="Chapter" href="Netplex_semaphore.html">
<link title="Netplex_sharedvar" rel="Chapter" href="Netplex_sharedvar.html">
<link title="Netplex_mutex" rel="Chapter" href="Netplex_mutex.html">
<link title="Netplex_encap" rel="Chapter" href="Netplex_encap.html">
<link title="Netplex_mbox" rel="Chapter" href="Netplex_mbox.html">
<link title="Netplex_internal" rel="Chapter" href="Netplex_internal.html">
<link title="Netplex_intro" rel="Chapter" href="Netplex_intro.html">
<link title="Netplex_advanced" rel="Chapter" href="Netplex_advanced.html">
<link title="Netplex_admin" rel="Chapter" href="Netplex_admin.html">
<link title="Netshm" rel="Chapter" href="Netshm.html">
<link title="Netshm_data" rel="Chapter" href="Netshm_data.html">
<link title="Netshm_hashtbl" rel="Chapter" href="Netshm_hashtbl.html">
<link title="Netshm_array" rel="Chapter" href="Netshm_array.html">
<link title="Netshm_intro" rel="Chapter" href="Netshm_intro.html">
<link title="Netstring_pcre" rel="Chapter" href="Netstring_pcre.html">
<link title="Netconversion" rel="Chapter" href="Netconversion.html">
<link title="Netchannels" rel="Chapter" href="Netchannels.html">
<link title="Netstream" rel="Chapter" href="Netstream.html">
<link title="Netmime_string" rel="Chapter" href="Netmime_string.html">
<link title="Netmime" rel="Chapter" href="Netmime.html">
<link title="Netsendmail" rel="Chapter" href="Netsendmail.html">
<link title="Neturl" rel="Chapter" href="Neturl.html">
<link title="Netaddress" rel="Chapter" href="Netaddress.html">
<link title="Netbuffer" rel="Chapter" href="Netbuffer.html">
<link title="Netmime_header" rel="Chapter" href="Netmime_header.html">
<link title="Netmime_channels" rel="Chapter" href="Netmime_channels.html">
<link title="Neturl_ldap" rel="Chapter" href="Neturl_ldap.html">
<link title="Netdate" rel="Chapter" href="Netdate.html">
<link title="Netencoding" rel="Chapter" href="Netencoding.html">
<link title="Netulex" rel="Chapter" href="Netulex.html">
<link title="Netaccel" rel="Chapter" href="Netaccel.html">
<link title="Netaccel_link" rel="Chapter" href="Netaccel_link.html">
<link title="Nethtml" rel="Chapter" href="Nethtml.html">
<link title="Netstring_str" rel="Chapter" href="Netstring_str.html">
<link title="Netmappings" rel="Chapter" href="Netmappings.html">
<link title="Netaux" rel="Chapter" href="Netaux.html">
<link title="Nethttp" rel="Chapter" href="Nethttp.html">
<link title="Netpagebuffer" rel="Chapter" href="Netpagebuffer.html">
<link title="Netfs" rel="Chapter" href="Netfs.html">
<link title="Netglob" rel="Chapter" href="Netglob.html">
<link title="Netauth" rel="Chapter" href="Netauth.html">
<link title="Netsockaddr" rel="Chapter" href="Netsockaddr.html">
<link title="Netnumber" rel="Chapter" href="Netnumber.html">
<link title="Netxdr_mstring" rel="Chapter" href="Netxdr_mstring.html">
<link title="Netxdr" rel="Chapter" href="Netxdr.html">
<link title="Netcompression" rel="Chapter" href="Netcompression.html">
<link title="Netunichar" rel="Chapter" href="Netunichar.html">
<link title="Netasn1" rel="Chapter" href="Netasn1.html">
<link title="Netasn1_encode" rel="Chapter" href="Netasn1_encode.html">
<link title="Netoid" rel="Chapter" href="Netoid.html">
<link title="Netstring_tstring" rel="Chapter" href="Netstring_tstring.html">
<link title="Netdn" rel="Chapter" href="Netdn.html">
<link title="Netx509" rel="Chapter" href="Netx509.html">
<link title="Netascii_armor" rel="Chapter" href="Netascii_armor.html">
<link title="Nettls_support" rel="Chapter" href="Nettls_support.html">
<link title="Netmech_scram" rel="Chapter" href="Netmech_scram.html">
<link title="Netmech_scram_gssapi" rel="Chapter" href="Netmech_scram_gssapi.html">
<link title="Netmech_scram_sasl" rel="Chapter" href="Netmech_scram_sasl.html">
<link title="Netmech_scram_http" rel="Chapter" href="Netmech_scram_http.html">
<link title="Netgssapi_support" rel="Chapter" href="Netgssapi_support.html">
<link title="Netgssapi_auth" rel="Chapter" href="Netgssapi_auth.html">
<link title="Netchannels_crypto" rel="Chapter" href="Netchannels_crypto.html">
<link title="Netx509_pubkey" rel="Chapter" href="Netx509_pubkey.html">
<link title="Netx509_pubkey_crypto" rel="Chapter" href="Netx509_pubkey_crypto.html">
<link title="Netsaslprep" rel="Chapter" href="Netsaslprep.html">
<link title="Netmech_plain_sasl" rel="Chapter" href="Netmech_plain_sasl.html">
<link title="Netmech_crammd5_sasl" rel="Chapter" href="Netmech_crammd5_sasl.html">
<link title="Netmech_digest_sasl" rel="Chapter" href="Netmech_digest_sasl.html">
<link title="Netmech_digest_http" rel="Chapter" href="Netmech_digest_http.html">
<link title="Netmech_krb5_sasl" rel="Chapter" href="Netmech_krb5_sasl.html">
<link title="Netmech_gs2_sasl" rel="Chapter" href="Netmech_gs2_sasl.html">
<link title="Netmech_spnego_http" rel="Chapter" href="Netmech_spnego_http.html">
<link title="Netchannels_tut" rel="Chapter" href="Netchannels_tut.html">
<link title="Netmime_tut" rel="Chapter" href="Netmime_tut.html">
<link title="Netsendmail_tut" rel="Chapter" href="Netsendmail_tut.html">
<link title="Netulex_tut" rel="Chapter" href="Netulex_tut.html">
<link title="Neturl_tut" rel="Chapter" href="Neturl_tut.html">
<link title="Netsys" rel="Chapter" href="Netsys.html">
<link title="Netsys_posix" rel="Chapter" href="Netsys_posix.html">
<link title="Netsys_pollset" rel="Chapter" href="Netsys_pollset.html">
<link title="Netlog" rel="Chapter" href="Netlog.html">
<link title="Netexn" rel="Chapter" href="Netexn.html">
<link title="Netsys_win32" rel="Chapter" href="Netsys_win32.html">
<link title="Netsys_pollset_posix" rel="Chapter" href="Netsys_pollset_posix.html">
<link title="Netsys_pollset_win32" rel="Chapter" href="Netsys_pollset_win32.html">
<link title="Netsys_pollset_generic" rel="Chapter" href="Netsys_pollset_generic.html">
<link title="Netsys_signal" rel="Chapter" href="Netsys_signal.html">
<link title="Netsys_oothr" rel="Chapter" href="Netsys_oothr.html">
<link title="Netsys_xdr" rel="Chapter" href="Netsys_xdr.html">
<link title="Netsys_rng" rel="Chapter" href="Netsys_rng.html">
<link title="Netsys_crypto_types" rel="Chapter" href="Netsys_crypto_types.html">
<link title="Netsys_types" rel="Chapter" href="Netsys_types.html">
<link title="Netsys_mem" rel="Chapter" href="Netsys_mem.html">
<link title="Netsys_tmp" rel="Chapter" href="Netsys_tmp.html">
<link title="Netsys_sem" rel="Chapter" href="Netsys_sem.html">
<link title="Netsys_pmanage" rel="Chapter" href="Netsys_pmanage.html">
<link title="Netsys_crypto" rel="Chapter" href="Netsys_crypto.html">
<link title="Netsys_tls" rel="Chapter" href="Netsys_tls.html">
<link title="Netsys_ciphers" rel="Chapter" href="Netsys_ciphers.html">
<link title="Netsys_digests" rel="Chapter" href="Netsys_digests.html">
<link title="Netsys_crypto_modes" rel="Chapter" href="Netsys_crypto_modes.html">
<link title="Netsys_gssapi" rel="Chapter" href="Netsys_gssapi.html">
<link title="Netsys_sasl_types" rel="Chapter" href="Netsys_sasl_types.html">
<link title="Netsys_sasl" rel="Chapter" href="Netsys_sasl.html">
<link title="Netsys_polypipe" rel="Chapter" href="Netsys_polypipe.html">
<link title="Netsys_polysocket" rel="Chapter" href="Netsys_polysocket.html">
<link title="Netsys_global" rel="Chapter" href="Netsys_global.html">
<link title="Nettls_gnutls_bindings" rel="Chapter" href="Nettls_gnutls_bindings.html">
<link title="Nettls_nettle_bindings" rel="Chapter" href="Nettls_nettle_bindings.html">
<link title="Nettls_gnutls" rel="Chapter" href="Nettls_gnutls.html">
<link title="Netunidata" rel="Chapter" href="Netunidata.html">
<link title="Netgzip" rel="Chapter" href="Netgzip.html">
<link title="Rpc_auth_local" rel="Chapter" href="Rpc_auth_local.html">
<link title="Rpc_xti_client" rel="Chapter" href="Rpc_xti_client.html">
<link title="Rpc" rel="Chapter" href="Rpc.html">
<link title="Rpc_program" rel="Chapter" href="Rpc_program.html">
<link title="Rpc_util" rel="Chapter" href="Rpc_util.html">
<link title="Rpc_portmapper_aux" rel="Chapter" href="Rpc_portmapper_aux.html">
<link title="Rpc_packer" rel="Chapter" href="Rpc_packer.html">
<link title="Rpc_transport" rel="Chapter" href="Rpc_transport.html">
<link title="Rpc_client" rel="Chapter" href="Rpc_client.html">
<link title="Rpc_simple_client" rel="Chapter" href="Rpc_simple_client.html">
<link title="Rpc_portmapper_clnt" rel="Chapter" href="Rpc_portmapper_clnt.html">
<link title="Rpc_portmapper" rel="Chapter" href="Rpc_portmapper.html">
<link title="Rpc_server" rel="Chapter" href="Rpc_server.html">
<link title="Rpc_auth_sys" rel="Chapter" href="Rpc_auth_sys.html">
<link title="Rpc_auth_gssapi" rel="Chapter" href="Rpc_auth_gssapi.html">
<link title="Rpc_proxy" rel="Chapter" href="Rpc_proxy.html">
<link title="Rpc_intro" rel="Chapter" href="Rpc_intro.html">
<link title="Rpc_mapping_ref" rel="Chapter" href="Rpc_mapping_ref.html">
<link title="Rpc_intro_gss" rel="Chapter" href="Rpc_intro_gss.html">
<link title="Shell_sys" rel="Chapter" href="Shell_sys.html">
<link title="Shell" rel="Chapter" href="Shell.html">
<link title="Shell_uq" rel="Chapter" href="Shell_uq.html">
<link title="Shell_fs" rel="Chapter" href="Shell_fs.html">
<link title="Shell_intro" rel="Chapter" href="Shell_intro.html">
<link title="Intro" rel="Chapter" href="Intro.html">
<link title="Platform" rel="Chapter" href="Platform.html">
<link title="Foreword" rel="Chapter" href="Foreword.html">
<link title="Ipv6" rel="Chapter" href="Ipv6.html">
<link title="Regexp" rel="Chapter" href="Regexp.html">
<link title="Tls" rel="Chapter" href="Tls.html">
<link title="Crypto" rel="Chapter" href="Crypto.html">
<link title="Authentication" rel="Chapter" href="Authentication.html">
<link title="Credentials" rel="Chapter" href="Credentials.html">
<link title="Gssapi" rel="Chapter" href="Gssapi.html">
<link title="Ocamlnet4" rel="Chapter" href="Ocamlnet4.html">
<link title="Get" rel="Chapter" href="Get.html"><title>Ocamlnet 4 Reference Manual : Index of types</title>
</head>
<body>
<div class="navbar"> <a class="up" href="index.html" title="Index">Up</a>
</div>
<h1>Index of types</h1>
<table>
<tr><td align="left"><div>A</div></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEac_by_host">ac_by_host</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>The service is protected by the access control rule</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEac_by_host_rule">ac_by_host_rule</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>Access control by host: <code class="code">`Allow</code>: Only the listed hosts are allowed; all other are denied, <code class="code">`Deny</code>: The listed hosts are denied; all other are allowed</p>
</div>
</td></tr>
<tr><td><a href="Netx509.html#TYPEaccess_description_flag">access_description_flag</a> [<a href="Netx509.html">Netx509</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_signal.html#TYPEaction">action</a> [<a href="Netsys_signal.html">Netsys_signal</a>]</td>
<td><div class="info">
<p><code class="code">`Callback</code> is used for normal handlers, and <code class="code">`Install</code> for exclusive
handlers.</p>
</div>
</td></tr>
<tr><td><a href="Netaddress.html#TYPEaddr_spec">addr_spec</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
<p>The pair <code class="code">local_part@domain</code> as O'Caml type.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEaddress">address</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Addresses tagged by address types</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEaddress">address</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEadvice">advice</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEalg_id">alg_id</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEalg_param">alg_param</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.PUBKEY_CRYPTO.html#TYPEalgorithm">algorithm</a> [<a href="Netsys_crypto_types.PUBKEY_CRYPTO.html">Netsys_crypto_types.PUBKEY_CRYPTO</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEannouncement">announcement</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>See config</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sem.html#TYPEanon_semaphore">anon_semaphore</a> [<a href="Netsys_sem.html">Netsys_sem</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEanon_semaphore">anon_semaphore</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEarg_store">arg_store</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
<p>This is the type of functions <code class="code">arg_store</code> so that <code class="code">arg_store env
name header</code> tells whether to <code class="code">`Discard</code> the argument or to
store it into a <code class="code">`File</code> or in <code class="code">`Memory</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEarg_store">arg_store</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<p>See <a href="Netcgi.html#TYPEarg_store"><code class="code">Netcgi.arg_store</code></a>.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEarg_store_type">arg_store_type</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi.html#TYPEargument_processing">argument_processing</a> [<a href="Netcgi1_compat.Netcgi.html">Netcgi1_compat.Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Netascii_armor.html#TYPEarmor_spec">armor_spec</a> [<a href="Netascii_armor.html">Netascii_armor</a>]</td>
<td><div class="info">
<p>Which types of armor to decode, and how.</p>
</div>
</td></tr>
<tr><td><a href="Netascii_armor.html#TYPEarmor_type">armor_type</a> [<a href="Netascii_armor.html">Netascii_armor</a>]</td>
<td></td></tr>
<tr><td><a href="Netascii_armor.html#TYPEarmored_message">armored_message</a> [<a href="Netascii_armor.html">Netascii_armor</a>]</td>
<td><div class="info">
<p>Messages: <code class="code">`Plain m</code>: The body <code class="code">m</code> is written as-is, <code class="code">`Base64 m</code>: The body <code class="code">m</code> needs to be BASE-64-encoded in order
to create the ASCII armor, <code class="code">`OpenPGP(h,m,chksum)</code>: There is a header <code class="code">h</code>, a body <code class="code">m</code> which
will be BASE-64-encoded, and a checksum <code class="code">chksum</code></p>
</div>
</td></tr>
<tr><td><a href="Netascii_armor.html#TYPEarmored_message_ro">armored_message_ro</a> [<a href="Netascii_armor.html">Netascii_armor</a>]</td>
<td><div class="info">
<p>The read-only version of <code class="code">armored_message</code></p>
</div>
</td></tr>
<tr><td><a href="Shell.html#TYPEassignment">assignment</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
<p>An assignment redirects file descriptors while calling a process</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEat_flag">at_flag</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#TYPEauth_challenge">auth_challenge</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
<p>The type of a single challenge, used during authentication.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#TYPEauth_credentials">auth_credentials</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
<p>The type of a single credentials response, used during
authentication.</p>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEauth_peeker">auth_peeker</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEauth_result">auth_result</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client.html#TYPEauth_status">auth_status</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>Status of HTTP-level authentication: <code class="code">`None</code>: Authentication wasn't tried., <code class="code">`OK</code>: The authentication protocol finished. What this means exactly
depends on the protocol. For most protocols it just means that the
server authenticated the client. For some protocols it may also mean
that the client authenticated the server (mutual authentication)., <code class="code">`Auth_error</code>: The authentication protocol did not succeed. Note that
this state can also be reached for an otherwise successful HTTP
response (i.e. code 200) when the client could not authenticate the
server and the protocol demands this., <code class="code">`Reroute trans_id</code>: The request should be retried on a new connection
for the transport identified by <code class="code">trans_id</code>, <code class="code">`Continue</code>: The authentication is still in progress. Normally the
user should not see this state as the engine automatically continues
the protocol. The argument of <code class="code">`Continue</code> is private., <code class="code">`Continue_reroute</code>: the combination of continue and reroute: the
auth protocol continues, but the next request must be sent on the
indicated transport.</p>
</div>
</td></tr>
<tr><td><a href="Netx509.html#TYPEauthority_access_description_flag">authority_access_description_flag</a> [<a href="Netx509.html">Netx509</a>]</td>
<td></td></tr>
<tr><td><a href="Netx509.html#TYPEauthority_key_identifier">authority_key_identifier</a> [<a href="Netx509.html">Netx509</a>]</td>
<td></td></tr>
<tr><td align="left"><div>B</div></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEbad_request_error">bad_request_error</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>A bad request is a violation where the current request cannot be
decoded, and it is not possible to accept further requests over the
current connection.</p>
</div>
</td></tr>
<tr><td><a href="Netldap.html#TYPEbind_creds">bind_creds</a> [<a href="Netldap.html">Netldap</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEbinding">binding</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEbinding_async">binding_async</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEbinding_sync">binding_sync</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEbitstring_value">bitstring_value</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_buffer.html#TYPEbuffer">buffer</a> [<a href="Netmcore_buffer.html">Netmcore_buffer</a>]</td>
<td><div class="info">
<p>A buffer with a header of type <code class="code">'h</code></p>
</div>
</td></tr>
<tr><td><a href="Netmcore_buffer.html#TYPEbuffer_descr">buffer_descr</a> [<a href="Netmcore_buffer.html">Netmcore_buffer</a>]</td>
<td><div class="info">
<p>The marshallable buffer descriptor</p>
</div>
</td></tr>
<tr><td align="left"><div>C</div></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEcache_control">cache_control</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEcache_control">cache_control</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
<p>This is only a small subset of the HTTP 1.1 cache control
features, but they are usually sufficient, and they work for
HTTP/1.0 as well.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEcache_control">cache_control</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<p>See <a href="Netcgi.html#TYPEcache_control"><code class="code">Netcgi.cache_control</code></a>.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEcache_control_token">cache_control_token</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>The cache control token for the <code class="code">Cache-control</code> header</p>
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEcall_args">call_args</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEcall_result">call_result</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEcalling_error">calling_error</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Possible errors caused by the caller</p>
</div>
</td></tr>
<tr><td><a href="Netcamlbox.html#TYPEcamlbox">camlbox</a> [<a href="Netcamlbox.html">Netcamlbox</a>]</td>
<td><div class="info">
<p>A <code class="code">camlbox</code> may receive messages of type <code class="code">'a</code></p>
</div>
</td></tr>
<tr><td><a href="Netcamlbox.html#TYPEcamlbox_address">camlbox_address</a> [<a href="Netcamlbox.html">Netcamlbox</a>]</td>
<td><div class="info">
<p>The address of a camlbox is a string that does not contain
slashes.</p>
</div>
</td></tr>
<tr><td><a href="Netcamlbox.html#TYPEcamlbox_sender">camlbox_sender</a> [<a href="Netcamlbox.html">Netcamlbox</a>]</td>
<td><div class="info">
<p>An endpoint that may send messages of type <code class="code">'a</code> to a camlbox</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEcapacity">capacity</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>How many connections a container can accept in addition to the
existing connections: <code class="code">`Normal_quality(n,greedy)</code>: It can accept n connections with normal
service quality, <code class="code">n > 0</code>, <code class="code">`Low_quality(n,greedy)</code>: It can accept n connections with low
service quality (e.g. because it is already quite loaded), <code class="code">n > 0</code>, <code class="code">`Unavailable</code>: No capacity free
The <code class="code">greedy</code> flag sets whether greedy accepts are allowed.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sasl_types.html#TYPEcb">cb</a> [<a href="Netsys_sasl_types.html">Netsys_sasl_types</a>]</td>
<td><div class="info">
<p>Possible channel bindings: <code class="code">`None</code>: this is the default, <code class="code">`SASL_none_but_advertise</code>: the client supports channel binding and
advertises this. For this time, the SCRAM protocol is run without
channel binding, though. (Only available in the SASL profile.), <code class="code">`SASL_require(type,data)</code>: Require channel binding. E.g. type="tls-unique",
and <code class="code">data</code> is set to the channel identifier (RFC 5929).
(Only available in the SASL profile.), <code class="code">`GSSAPI data</code>: use this channel binding for GSS-API
This type is shared by SASL and GSSAPI providers.</p>
</div>
</td></tr>
<tr><td><a href="Netmech_scram.html#TYPEcb">cb</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>Using the same channel binding type as for SASL</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEcgi_config">cgi_config</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<p>Now simply called <a href="Netcgi.html#TYPEconfig"><code class="code">Netcgi.config</code></a>.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEcgi_cookie">cgi_cookie</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEchannel_bindings">channel_bindings</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Channel binding as tuple
<code class="code">(initiator_address, acceptor_address, application_data)</code></p>
</div>
</td></tr>
<tr><td><a href="Netconversion.html#TYPEcharset">charset</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<p>A <code class="code">charset</code> is simply a set of code points.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sasl_types.SASL_MECHANISM.html#TYPEclient_session">client_session</a> [<a href="Netsys_sasl_types.SASL_MECHANISM.html">Netsys_sasl_types.SASL_MECHANISM</a>]</td>
<td></td></tr>
<tr><td><a href="Netmech_scram.html#TYPEclient_session">client_session</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>Session context for clients</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.HTTP_CLIENT_MECHANISM.html#TYPEclient_session">client_session</a> [<a href="Nethttp.HTTP_CLIENT_MECHANISM.html">Nethttp.HTTP_CLIENT_MECHANISM</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sasl_types.html#TYPEclient_state">client_state</a> [<a href="Netsys_sasl_types.html">Netsys_sasl_types</a>]</td>
<td><div class="info">
<p>The state of the client session: <code class="code">`Wait</code>: it is waited for the server challenge., <code class="code">`Emit</code>: a new client response can be emitted., <code class="code">`OK</code>: the authentication protocol succeeded, <code class="code">`Auth_error</code>: authentication error (it is unspecified which);
the string may be used for logging), <code class="code">`Stale</code>: The client session is refused as too old. The password,
though, is correct. Otherwise this is the same as <code class="code">`Emit</code>, i.e.
the authentication process can continue.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEclock">clock</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEclock_id">clock_id</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netchannels.html#TYPEclose_mode">close_mode</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
<p>Whether a <code class="code">close_out</code> implies a commit or rollback operation</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEcmd">cmd</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>An FTP command.</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEcmd_state">cmd_state</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>The command state: <code class="code">`Not_connected</code>: Not connected., <code class="code">`Init</code>: Just connected, no greeting message arrived yet, <code class="code">`Success</code>: Got the greeting message/last command was successful, <code class="code">`Proto_error</code>: <b>currently unused</b>, <code class="code">`Temp_failure</code>: Last command was not successful, and the code
was between 400 and 499, <code class="code">`Perm_failure</code>: Last command was not successful, and the code
was between 500 and 599, <code class="code">`Rename_seq</code>: Used instead of <code class="code">`Success</code> after the RNFR command, <code class="code">`Restart_seq</code>: Used instead of <code class="code">`Success</code> after the REST command, <code class="code">`User_pass_seq</code>: Used instead of <code class="code">`Success</code> after the USER command
when a password must be typed in, <code class="code">`User_acct_seq</code>: Used instead of <code class="code">`Success</code> after the USER command
when an account ID must be typed in, <code class="code">`Pass_acct_seq</code>: Used instead of <code class="code">`Success</code> after the PASS command
when an account iD must be typed in, <code class="code">`Preliminary</code>: a reply with code 100 to 199. There will be another
final reply for the command, <code class="code">`Auth_data</code>: an ADAT reply inidicating that another round of
authentication is necessary.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_main.html#TYPEcmdline_config">cmdline_config</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_mem.html#TYPEcolor">color</a> [<a href="Netsys_mem.html">Netsys_mem</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEcommand">command</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<p>A command describes how to start a new process</p>
</div>
</td></tr>
<tr><td><a href="Shell_fs.html#TYPEcommand_context">command_context</a> [<a href="Shell_fs.html">Shell_fs</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_fs.html#TYPEcommand_interpreter">command_interpreter</a> [<a href="Shell_fs.html">Shell_fs</a>]</td>
<td><div class="info">
<p>The interpreter runs the command, and fills in <code class="code">sfs_status</code></p>
</div>
</td></tr>
<tr><td><a href="Netdate.html#TYPEcompiled_localization">compiled_localization</a> [<a href="Netdate.html">Netdate</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_body">complex_mime_body</a> [<a href="Netmime.html">Netmime</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_body_ro">complex_mime_body_ro</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
<p>The read-only view of a complex_mime_message</p>
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_message">complex_mime_message</a> [<a href="Netmime.html">Netmime</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_message_ro">complex_mime_message_ro</a> [<a href="Netmime.html">Netmime</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore.html#TYPEcompute_resource_repr">compute_resource_repr</a> [<a href="Netmcore.html">Netmcore</a>]</td>
<td><div class="info">
<p>Centrally managed resources include: <code class="code">`File name</code>: (Temporary) file <code class="code">name</code> (absolute name), <code class="code">`Posix_shm name</code>: Shared memory objects with <code class="code">name</code>, <code class="code">`Posix_shm_sc(name,p)</code>: Shared memory objects with <code class="code">name</code>, and
attached container for semaphores with prefix <code class="code">p</code>, <code class="code">`Posix_shm_preallocated(name,m)</code>: Shared memory objects already
allocated by the master process. These objects are passed over
to the worker processes by inheritance, and are always mapped at
the same address. <code class="code">m</code> is the bigarray mapping the object., <code class="code">`Posix_shm_preallocated_sc(name,m.p)</code>: Same, plus attached
container for semaphores with prefix <code class="code">p</code>, <code class="code">`Posix_sem name</code>: Semaphores with <code class="code">name</code>, <code class="code">`Fork_point(inh,f)</code>: Fork points where <code class="code">let pid=f arg</code> fork a new process
with argument <code class="code">arg</code>. <code class="code">pid</code> is the process identifier. The list <code class="code">inh</code>
are resources inherited from the master., <code class="code">`Joint_point f</code>: Joint points where <code class="code">let res=f pid</code> wait until
the process <code class="code">pid</code> terminates. If <code class="code">res</code> is non-<code class="code">None</code> it is the
result value. If it is <code class="code">None</code>, no result was passed back
(including all pathological cases like crashes)
Except fork and join points, these resources are also added to
the pmanage object of Netplex (see <a href="Netplex_cenv.html#VALpmanage"><code class="code">Netplex_cenv.pmanage</code></a> and
<a href="Netsys_pmanage.html"><code class="code">Netsys_pmanage</code></a>).</p>
</div>
</td></tr>
<tr><td><a href="Netmcore.html#TYPEcompute_resource_type">compute_resource_type</a> [<a href="Netmcore.html">Netmcore</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_condition.html#TYPEcondition">condition</a> [<a href="Netmcore_condition.html">Netmcore_condition</a>]</td>
<td><div class="info">
<p>The condition variable</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEconfig">config</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEconfig">config</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_common.html#TYPEconfig">config</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<p>See <a href="Netcgi.html#TYPEconfig"><code class="code">Netcgi.config</code></a>.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_plex.html#TYPEconfig_error_response">config_error_response</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td><div class="info">
<p>Three type abbreviations for logging functions</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_plex.html#TYPEconfig_log_access">config_log_access</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_plex.html#TYPEconfig_log_error">config_log_error</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEconfig_tree">config_tree</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client_conncache.html#TYPEconn_state">conn_state</a> [<a href="Nethttp_client_conncache.html">Nethttp_client_conncache</a>]</td>
<td><div class="info">
<p>A TCP connection may be either <code class="code">`Inactive</code>, i.e.</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEconnect_address">connect_address</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_client.html#TYPEconnect_address">connect_address</a> [<a href="Uq_client.html">Uq_client</a>]</td>
<td><div class="info">
<p>Specifies the service to connect to:</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEconnect_address">connect_address</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_client.html#TYPEconnect_address"><code class="code">Uq_client.connect_address</code></a></p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEconnect_options">connect_options</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_client.html#TYPEconnect_options">connect_options</a> [<a href="Uq_client.html">Uq_client</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEconnect_options">connect_options</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEconnect_status">connect_status</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_client.html#TYPEconnect_status">connect_status</a> [<a href="Uq_client.html">Uq_client</a>]</td>
<td><div class="info">
<p>This type corresponds with <a href="Uq_engines.html#TYPEconnect_address"><code class="code">Uq_engines.connect_address</code></a>: An engine
connecting with an address `X will return a status of `X.</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEconnect_status">connect_status</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_client.html#TYPEconnect_status"><code class="code">Uq_client.connect_status</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#TYPEconnection">connection</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_dbi.DBI_POOL.html#TYPEconnection">connection</a> [<a href="Netcgi_dbi.DBI_POOL.html">Netcgi_dbi.DBI_POOL</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client.html#TYPEconnection_cache">connection_cache</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEconnection_directive">connection_directive</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
<p>Directive how to go on with the current connection: <code class="code">`Conn_close</code>: Just shut down and close descriptor, <code class="code">`Conn_close_linger</code>: Linger, shut down, and close descriptor, <code class="code">`Conn_keep_alive</code>: Check for another request on the same connection, <code class="code">`Conn_error e</code>: Shut down and close descriptor, and handle the
exception <code class="code">e</code></p>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEconnection_id">connection_id</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
<p>identifies the connection of a session.</p>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEconnector">connector</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_client.html#TYPEconnector">connector</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEconst_str_datum_p">const_str_datum_p</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Shell.html#TYPEconsumer">consumer</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
<p>A consumer receives data from a called process</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sem.html#TYPEcontainer">container</a> [<a href="Netsys_sem.html">Netsys_sem</a>]</td>
<td><div class="info">
<p>The container of the semaphore is the shared memory object</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEcontainer_id">container_id</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Such objects identify containers.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEcontainer_state">container_state</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>The container state for workload management: <code class="code">`Accepting(n,t)</code>: The container is accepting further connections.
It currently processes <code class="code">n</code> connections. The last connection was
accepted at time <code class="code">t</code> (seconds since the epoch)., <code class="code">`Busy</code>: The container does not accept connections, <code class="code">`Starting t</code>: The container was started at time <code class="code">t</code> and is not
yet ready., <code class="code">`Shutting_down</code>: The container is being shutted down.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_gssapi.GSSAPI.html#TYPEcontext">context</a> [<a href="Netsys_gssapi.GSSAPI.html">Netsys_gssapi.GSSAPI</a>]</td>
<td><div class="info">
<p>A context is also opaque.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEcookie">cookie</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>Compatibility name.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEcopy_flag">copy_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEcopy_task">copy_task</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_transfer.html#TYPEcopy_task">copy_task</a> [<a href="Uq_transfer.html">Uq_transfer</a>]</td>
<td><div class="info">
<p>Specifies the task the <code class="code">copier</code> class has to do:</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEcopy_task">copy_task</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_transfer.html#TYPEcopy_task"><code class="code">Uq_transfer.copy_task</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netsys_win32.html#TYPEcreate_process_option">create_process_option</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_support.html#TYPEcred_type">cred_type</a> [<a href="Nettls_support.html">Nettls_support</a>]</td>
<td><div class="info">
<p>The type of credential types</p>
</div>
</td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEcred_usage">cred_usage</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.GSSAPI.html#TYPEcredential">credential</a> [<a href="Netsys_gssapi.GSSAPI.html">Netsys_gssapi.GSSAPI</a>]</td>
<td><div class="info">
<p>A credential is opaque for the caller of the GSS-API.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sasl.html#TYPEcredentials">credentials</a> [<a href="Netsys_sasl.html">Netsys_sasl</a>]</td>
<td><div class="info">
<p>Credentials are given as list
<code class="code">(type,value,params)</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEcredentials">credentials</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sasl_types.SASL_MECHANISM.html#TYPEcredentials">credentials</a> [<a href="Netsys_sasl_types.SASL_MECHANISM.html">Netsys_sasl_types.SASL_MECHANISM</a>]</td>
<td></td></tr>
<tr><td><a href="Netmech_scram.html#TYPEcredentials">credentials</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>Two forms of providing credentials: <code class="code">`Salted_password(spw,salt,iteration_count)</code>: get the
salted password with
<code class="code">spw = salt_password h password salt iteration_count</code>, <code class="code">`Stored(stkey, srvkey, salt, iteration_count)</code>: get the
pair (stkey, srvkey) with
<code class="code">stored_key h password salt iteration_count</code></p>
</div>
</td></tr>
<tr><td><a href="Nettls_support.html#TYPEcredentials">credentials</a> [<a href="Nettls_support.html">Nettls_support</a>]</td>
<td><div class="info">
<p>The types of credentials</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.HTTP_CLIENT_MECHANISM.html#TYPEcredentials">credentials</a> [<a href="Nethttp.HTTP_CLIENT_MECHANISM.html">Nethttp.HTTP_CLIENT_MECHANISM</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_tls.html#TYPEcrl_list">crl_list</a> [<a href="Netsys_tls.html">Netsys_tls</a>]</td>
<td><div class="info">
<p>Certificate revocation lists are given either as:</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEcrl_list">crl_list</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td><div class="info">
<p>Certificate revocation lists are given either as:</p>
</div>
</td></tr>
<tr><td><a href="Netsys_tls.html#TYPEcrt_list">crt_list</a> [<a href="Netsys_tls.html">Netsys_tls</a>]</td>
<td><div class="info">
<p>Certificates are given either as:</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEcrt_list">crt_list</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td><div class="info">
<p>Certificates are given either as:</p>
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEctrl_op">ctrl_op</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#TYPEcursor">cursor</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_mem.html#TYPEcustom_ops">custom_ops</a> [<a href="Netsys_mem.html">Netsys_mem</a>]</td>
<td></td></tr>
<tr><td align="left"><div>D</div></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEdata_chunk">data_chunk</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>A <code class="code">data_chunk</code> is a substring of a string.</p>
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#TYPEdata_manager">data_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
<p>The data manager consists of several manager functions.</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEdatagram_type">datagram_type</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_datagram.html#TYPEdatagram_type">datagram_type</a> [<a href="Uq_datagram.html">Uq_datagram</a>]</td>
<td><div class="info">
<p>- <code class="code">`Unix_dgram</code>: Datagrams over Unix domain sockets <code class="code">`Inet_udp</code>: Internet v4 UDP protocol, <code class="code">`Inet6_udp</code>: Internet v6 UDP protocol</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEdatagram_type">datagram_type</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_datagram.html#TYPEdatagram_type"><code class="code">Uq_datagram.datagram_type</code></a></p>
</div>
</td></tr>
<tr><td><a href="Equeue.Debug.html#TYPEdebug_target">debug_target</a> [<a href="Equeue.Debug.html">Equeue.Debug</a>]</td>
<td></td></tr>
<tr><td><a href="Netxdr.html#TYPEdecoder">decoder</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td><div class="info">
<p>see text above</p>
</div>
</td></tr>
<tr><td><a href="Netldap.html#TYPEderef_aliases">deref_aliases</a> [<a href="Netldap.html">Netldap</a>]</td>
<td><div class="info">
<p>What to do when aliases (server-dereferenced symbolic links) are found
in the tree: <code class="code">`Never</code>: do not dereference aliases but return them as part of the
search result, <code class="code">`In_searching</code>: when aliases are found in the children of the base
object dereference the aliases, and continue the search there, and
repeat this recursively if needed, <code class="code">`Finding_base_obj</code>: dereference alises in base objects but not in
children, <code class="code">`Always</code>: always dereference aliases</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_heap.html#TYPEdescr">descr</a> [<a href="Netmcore_heap.html">Netmcore_heap</a>]</td>
<td><div class="info">
<p>A descriptor ("address") pointing to the heap.</p>
</div>
</td></tr>
<tr><td><a href="Netftp_data_endpoint.html#TYPEdescr_state">descr_state</a> [<a href="Netftp_data_endpoint.html">Netftp_data_endpoint</a>]</td>
<td><div class="info">
<p>Describes the state of the socket used for data transfers.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_tls.html#TYPEdh_params">dh_params</a> [<a href="Netsys_tls.html">Netsys_tls</a>]</td>
<td><div class="info">
<p>Diffie-Hellman parameters:</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEdh_params">dh_params</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td><div class="info">
<p>Diffie-Hellman parameters:</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.DIGESTS.html#TYPEdigest">digest</a> [<a href="Netsys_crypto_types.DIGESTS.html">Netsys_crypto_types.DIGESTS</a>]</td>
<td><div class="info">
<p>Describes a digest</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.DIGESTS.html#TYPEdigest_ctx">digest_ctx</a> [<a href="Netsys_crypto_types.DIGESTS.html">Netsys_crypto_types.DIGESTS</a>]</td>
<td><div class="info">
<p>A digest context stores state while digesting data</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.html#TYPEdigests">digests</a> [<a href="Netsys_crypto_types.html">Netsys_crypto_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netlog.Debug.html#TYPEdlogger">dlogger</a> [<a href="Netlog.Debug.html">Netlog.Debug</a>]</td>
<td><div class="info">
<p>Debug logger: The first string is the module name, and the second
is the message</p>
</div>
</td></tr>
<tr><td><a href="Netdn.html#TYPEdn">dn</a> [<a href="Netdn.html">Netdn</a>]</td>
<td><div class="info">
<p>This is the raw version of the DN: a sequence of relative DNs,
and a relative DN is a set of (type,value) pairs.</p>
</div>
</td></tr>
<tr><td><a href="Nethtml.html#TYPEdocument">document</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
<p>The type <code class="code">document</code> represents parsed HTML documents:</p>
</div>
</td></tr>
<tr><td><a href="Netaddress.html#TYPEdomain">domain</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
<p>The domain of the mailbox</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEdynamic_service">dynamic_service</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td></td></tr>
<tr><td align="left"><div>E</div></td></tr>
<tr><td><a href="Nethtml.html#TYPEelement_class">element_class</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
<p>Element classes are a property used in the HTML DTD.</p>
</div>
</td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEempty_flags">empty_flags</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEempty_flags_flag">empty_flags_flag</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_encap.html#TYPEencap">encap</a> [<a href="Netplex_encap.html">Netplex_encap</a>]</td>
<td><div class="info">
<p>An encapsulated value with a type identifier</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEencap">encap</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_plex.html#TYPEencap">encap</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Netxdr.html#TYPEencoder">encoder</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td><div class="info">
<p>see text above</p>
</div>
</td></tr>
<tr><td><a href="Netconversion.html#TYPEencoding">encoding</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<p>The polymorphic variant enumerating the supported encodings.</p>
</div>
</td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEencrypt_alg">encrypt_alg</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEendpoint">endpoint</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_engine.html#TYPEengine_req_state">engine_req_state</a> [<a href="Nethttpd_engine.html">Nethttpd_engine</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEengine_state">engine_state</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEengine_state">engine_state</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>The type of states with result values of type <code class="code">'t</code>: <code class="code">`Working n</code>: The engine is working. The number <code class="code">n</code> counts the number
of events that have been processed., <code class="code">`Done arg</code>: The engine has completed its task without errors.
The argument <code class="code">arg</code> is the result value of the engine, <code class="code">`Error exn</code>: The engine has aborted because of an error. The
argument <code class="code">exn</code> describes the error as an exception., <code class="code">`Aborted</code>: The engine has aborted because the <code class="code">abort</code> method
was called</p>
</div>
</td></tr>
<tr><td><a href="Uq_resolver.html#TYPEengine_state">engine_state</a> [<a href="Uq_resolver.html">Uq_resolver</a>]</td>
<td></td></tr>
<tr><td><a href="Netencoding.Html.html#TYPEentity_set">entity_set</a> [<a href="Netencoding.Html.html">Netencoding.Html</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_signal.html#TYPEentry">entry</a> [<a href="Netsys_signal.html">Netsys_signal</a>]</td>
<td></td></tr>
<tr><td><a href="Netftp_client.html#TYPEentry">entry</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>A file entry <code class="code">(name, facts)</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEentry_perm">entry_perm</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>Permissions: <code class="code">`Append</code>: append to file possible, <code class="code">`Create</code>: file can be created in this dir, <code class="code">`Delete</code>: file or dir can be deleted, <code class="code">`Enter</code>: dir can be entered, <code class="code">`Rename</code>: file or dir can be renamed, <code class="code">`List</code>: dir can be listed, <code class="code">`Mkdir</code>: subdir can be created in this dir, <code class="code">`Delete_member</code>: a file or dir can be deleted in this directory, <code class="code">`Read</code>: a file can be retrieved, <code class="code">`Write</code>: a file can be stored</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEentry_type">entry_type</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>Types: <code class="code">`File</code>: entry refers to file, <code class="code">`Cdir</code>: entry refers to the directory being listed, <code class="code">`Pdir</code>: entry is a parent of the directory being listed, <code class="code">`Dir</code>: entry refers to directory, <code class="code">`Other</code>: entry is neither file nor directory</p>
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEenvironment">environment</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<p>The abstract type of a process environment</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEeq">eq</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Equality witness</p>
</div>
</td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEerror_code">error_code</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEetag">etag</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>Entity tags can be weak or strong</p>
</div>
</td></tr>
<tr><td><a href="Uq_libevent.LIBOEVENT.html#TYPEevent">event</a> [<a href="Uq_libevent.LIBOEVENT.html">Uq_libevent.LIBOEVENT</a>]</td>
<td></td></tr>
<tr><td><a href="Unixqueue.html#TYPEevent">event</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
<p>An <code class="code">event</code> is triggered when the condition of an <code class="code">operation</code>
becomes true, when a signal happens, or when the event is
(artificially) added to the event queue (<code class="code">add_event</code>, below).</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEevent_aggregator">event_aggregator</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_libevent.LIBOEVENT.html#TYPEevent_callback">event_callback</a> [<a href="Uq_libevent.LIBOEVENT.html">Uq_libevent.LIBOEVENT</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_libevent.LIBOEVENT.html#TYPEevent_flags">event_flags</a> [<a href="Uq_libevent.LIBOEVENT.html">Uq_libevent.LIBOEVENT</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEevent_source">event_source</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEexn_handler">exn_handler</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
<p>A function of type <code class="code">exn_handler</code> allows to define a custom
handler of uncaught exceptions raised by the <code class="code">unit -> unit</code>
parameter.</p>
</div>
</td></tr>
<tr><td><a href="Netx509.html#TYPEext_key_usage_flag">ext_key_usage_flag</a> [<a href="Netx509.html">Netx509</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEextended_address">extended_address</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Possible addresses: <code class="code">`Socket s</code>: The socket at this socket address, <code class="code">`Socket_file f</code>: The file <code class="code">f</code> contains the (anonymous) port number
of a socket bound to <code class="code">127.0.0.1</code> (This is meant as substitute for
Unix Domain sockets on Win32.), <code class="code">`W32_pipe name</code>: The Win32 pipe with this <code class="code">name</code> which must
be of the form "\\.\pipe\<pname>", <code class="code">`W32_pipe_file f</code>: The file <code class="code">f</code> contains the (random) name of a
Win32 pipe, <code class="code">`Container(socket_dir,service_name,proto_name,thread_id)</code>:
The special endpoint
of the container for <code class="code">service_name</code> that is running as <code class="code">thread_id</code>.
It is system-dependent what this endpoint "is" in reality, usually
a socket or named pipe. If any container of a service is meant,
the value <code class="code">`Any</code> is substituted as a placeholder for a not yet
known <code class="code">thread_id</code>., <code class="code">`Internal name</code>: an internal service called <code class="code">name</code>. Internal sockets
are only available for multithreaded programs, and are registered
at <a href="Netplex_internal.html"><code class="code">Netplex_internal</code></a>.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEextfd">extfd</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Internally used</p>
</div>
</td></tr>
<tr><td align="left"><div>F</div></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEfatal_error">fatal_error</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>These are the serious protocol violations after that the daemon stops
any further processing.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEfd_action">fd_action</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys.html#TYPEfd_style">fd_style</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
<p>Some information what kind of operations are reasonable for descriptors: <code class="code">`Read_write</code>: The descriptor is neither a socket not one of the
other special cases, so only read/write is possible if read/write
is possible at all. This style is also used if it is meaningless
to use data I/O like read/write at all., <code class="code">`Recv_send(sockaddr,peeraddr)</code>: The descriptor is a connected socket.
recv/send are the preferred operations., <code class="code">`Recvfrom_sendto</code>: The descriptor is an unconnected socket, and
it is possible to ask for addresses when exchanging data, so
recvfrom/sendto are the preferred operations., <code class="code">`Recv_send_implied</code>: The descriptor is a socket with implied
connection. There are no socket addresses.
recv/send are the preferred operations. It is not possible to call
<code class="code">getsockname</code> or <code class="code">getpeername</code>., <code class="code">`W32_pipe</code>: The descriptor is a proxy descriptor for a Win32 named
pipe as returned by <a href="Netsys_win32.html#VALpipe_descr"><code class="code">Netsys_win32.pipe_descr</code></a>. , <code class="code">`W32_pipe_server</code>: The descriptor is a proxy descriptor for a Win32
pipe server as returned by
<a href="Netsys_win32.html#VALpipe_server_descr"><code class="code">Netsys_win32.pipe_server_descr</code></a>. , <code class="code">`W32_event</code>: The descriptor is a Win32 proxy descriptor for an event
as returned by <a href="Netsys_win32.html#VALcreate_event"><code class="code">Netsys_win32.create_event</code></a>. It is not possible to
read/write with these descriptors., <code class="code">`W32_process</code>: The descriptor is a proxy descriptor for a Win32
process as returned by
<a href="Netsys_win32.html#VALcreate_process"><code class="code">Netsys_win32.create_process</code></a>. It is not possible to read/write
with these descriptors., <code class="code">`W32_input_thread</code>: The descriptor is a proxy descriptor for a
Win32-specific input thread
as returned by
<a href="Netsys_win32.html#VALcreate_input_thread"><code class="code">Netsys_win32.create_input_thread</code></a>. , <code class="code">`W32_output_thread</code>: The descriptor is a proxy descriptor for a
Win32-specific output thread
as returned by
<a href="Netsys_win32.html#VALcreate_output_thread"><code class="code">Netsys_win32.create_output_thread</code></a>. , <code class="code">`TLS endpoint</code>: A TLS tunnel is running over the descriptor. The
details of the tunnel can be found in <code class="code">endpoint</code>. Note that it is
allowed that the endpoint uses a second descriptor for either
reading or writing (i.e. reading and writing go via different
descriptors). In this case, it is sufficient that one of these
descriptors is accompanied with <code class="code">`TLS endpoint</code>.
Win32: For the exact meaning of proxy descriptors, please see
<a href="Netsys_win32.html"><code class="code">Netsys_win32</code></a>.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEfile_kind">file_kind</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEfile_option">file_option</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>Add-on features for file services: <code class="code">`Enable_gzip</code>: Deprecated. Same as <code class="code">`Enable_cooked_compression</code>., <code class="code">`Enable_cooked_compression</code>: Modifies the way compressed files
are handled. Normally it is required that one accesses the compressed
file (with suffix such as "gz") directly to get it in compressed form.
If this option is enabled, though, the server also compresses
the base file (without suffix such as "gz"), but only if the
base file is accompanied by a compressed version (with suffix).
E.g. if there is "foo" and "foo.gz", this enables that the accesses
to "foo" can make use of compression., <code class="code">`Enable_index_file</code>: If enabled, accesses to directories are redirected
to index files. The possible file names are given in the string list.
E.g. <code class="code">`Enable_index_file ["index.html"; "index.htm"]</code>. It is redirected to
these files, so these can be handled by different services if neccessary., <code class="code">`Enable_listings</code>: If enabled, directory listings are generated by calling
the argument function. The <code class="code">PATH_TRANSLATED</code> property of the environment
contains the absolute name of the directory to list. The <code class="code">PATH_INFO</code> property
is the corresponding URI path. <code class="code">SCRIPT_NAME</code> is meaningless., <code class="code">`Override_compression_suffixes l</code>: Tags the file suffixes in
<code class="code">l</code> as compression schemes. A pair <code class="code">(suffix,ce)</code> sets that the
<code class="code">suffix</code> means the content encoding <code class="code">ce</code>. Knowing this is important
for determining the media type of the file.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEfile_service">file_service</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>Describes a file service</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.html#TYPEfile_tls_endpoint">file_tls_endpoint</a> [<a href="Netsys_crypto_types.html">Netsys_crypto_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netftp_client.html#TYPEfilename">filename</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>There are several methods how to specify filenames: <code class="code">`NVFS name</code>: The "Network Virtual File System" is the normal way
of accessing FTP files. The client walks into the directory containing
the file using <code class="code">CWD</code> and <code class="code">CDUP</code> commands, and calls the file operation
from this directory. For simplicity, this client interprets slashes
in <code class="code">name</code> as path component separators. The FTP server will never
see these slashes., <code class="code">`TVFS name</code>: The optional "Trivial Network File System" avoids the
<code class="code">CWD</code> and <code class="code">CDUP</code> commands. The tagged <code class="code">name</code> is normalized (double
slashed removed etc.), and is passed to the server as-is. Before using
the faster TVFS one should check whether it is supported (feature
"TVFS"). Note that even for TVFS there are no special files "."
and ".."!, <code class="code">`Verbatim name</code>: The string <code class="code">name</code> is passed to the server without
transforming it in any way.</p>
</div>
</td></tr>
<tr><td><a href="Netldap.html#TYPEfilter">filter</a> [<a href="Netldap.html">Netldap</a>]</td>
<td><div class="info">
<p>Filter: <code class="code">`Equality_match(attr_descr, value)</code>, <code class="code">`Substrings(attr_descr, prefix_match, substring_matches, suffix_match)</code>, <code class="code">`Greater_or_equal(attr_descr,value)</code>, <code class="code">`Less_or_equal(attr_descr,value)</code>, <code class="code">`Present(attr_descr)</code>, <code class="code">`Approx_match(attr_descr,value)</code>, <code class="code">`Extensible_match(matching_rule_id, attr_descr, value, dn_attrs)</code>
Here, <code class="code">attr_descr</code> is the name of the attribute, either given by
an OID (in dotted representation) or a by a descriptive name.</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEfinal_state">final_state</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEfinal_state">final_state</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Same as <code class="code">engine_state</code> without <code class="code">`Working</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEflags">flags</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEflags_flag">flags_flag</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_process.html#TYPEfork_point">fork_point</a> [<a href="Netmcore_process.html">Netmcore_process</a>]</td>
<td><div class="info">
<p>A fork point can start a new process with argument <code class="code">'a</code></p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEform_code">form_code</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>The <code class="code">form_code</code> has a meaning when FTP is used to print files: <code class="code">`Non_print</code>: This is not the case., <code class="code">`Telnet</code>: Telnet control codes are used for vertical movement, <code class="code">`ASA</code>: ASA (Fortran) control codes are used for vertical movement</p>
</div>
</td></tr>
<tr><td><a href="Netlog.html#TYPEformat">format</a> [<a href="Netlog.html">Netlog</a>]</td>
<td></td></tr>
<tr><td><a href="Netnumber.html#TYPEfp4">fp4</a> [<a href="Netnumber.html">Netnumber</a>]</td>
<td><div class="info">
<p>single precision float (IEEE "float")</p>
</div>
</td></tr>
<tr><td><a href="Netnumber.html#TYPEfp8">fp8</a> [<a href="Netnumber.html">Netnumber</a>]</td>
<td><div class="info">
<p>double precision float (IEEE "double")</p>
</div>
</td></tr>
<tr><td><a href="Netmappings.html#TYPEfrom_uni_list">from_uni_list</a> [<a href="Netmappings.html">Netmappings</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEfront_token">front_token</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>Tokens generated by <code class="code">http_response</code>: <code class="code">`Resp_wire_data</code> are data tokens., <code class="code">`Resp_end</code> indicates the end of the response.</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEftp_auth">ftp_auth</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td></td></tr>
<tr><td><a href="Netftp_client.html#TYPEftp_data_prot">ftp_data_prot</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>Meaning: <code class="code">`C</code>: no protection (clear), <code class="code">`S</code>: integrity protection, <code class="code">`E</code>: encryption without integrity protection, <code class="code">`P</code>: integrity protection and encryption (= privacy)</p>
</div>
</td></tr>
<tr><td><a href="Netftp_data_endpoint.html#TYPEftp_data_prot">ftp_data_prot</a> [<a href="Netftp_data_endpoint.html">Netftp_data_endpoint</a>]</td>
<td><div class="info">
<p>See <a href="Netftp_client.html#TYPEftp_data_prot"><code class="code">Netftp_client.ftp_data_prot</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEftp_method">ftp_method</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>An <code class="code">ftp_method</code> is a small procedure doing some task</p>
</div>
</td></tr>
<tr><td><a href="Netftp_data_endpoint.html#TYPEftp_protector">ftp_protector</a> [<a href="Netftp_data_endpoint.html">Netftp_data_endpoint</a>]</td>
<td><div class="info">
<p>The functions for encrypting (wrapping) and decrypting (unwrapping)
messages when an RFC 2228 security layer is active.</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEftp_state">ftp_state</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>The ftp_state reflects the knowledge of the client about what has been
agreed upon with the server.</p>
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEfwd_mode">fwd_mode</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<p>Determines whether and how keyboard signals (SIGINT, SIGQUIT) are
forwarded from the caller to the new child.</p>
</div>
</td></tr>
<tr><td align="left"><div>G</div></td></tr>
<tr><td><a href="Netx509.html#TYPEgeneral_name">general_name</a> [<a href="Netx509.html">Netx509</a>]</td>
<td><div class="info">
<p>General names: <code class="code">`Other_name(oid, value)</code>: the <code class="code">oid</code> determines the extension name
format, <code class="code">`Rfc822_name n</code>: an email address <code class="code">n</code> (ASCII encoded), <code class="code">`DNS_name n</code>: an Internet domain <code class="code">n</code> (ASCII encoded - no
internationalization), <code class="code">`X400_address v</code>: an X.400 address, which is not decoded here and
just given as unparsed ASN.1 value <code class="code">v</code>, <code class="code">`Directory_name n</code>: a directory name <code class="code">n</code> (i.e. a name using the
syntax of distinguished names), <code class="code">`Edi_party_name(assigner,party)</code>, both names as UTF-8, <code class="code">`Uniform_resource_identifier uri</code>: this <code class="code">uri</code> (ASCII-encoded,
no internationalization), <code class="code">`IP_address(dom,addr,mask)</code>: the address with mask, <code class="code">`Registered oid</code>: a symbolical pre-registered name known under <code class="code">oid</code></p>
</div>
</td></tr>
<tr><td><a href="Netglob.html#TYPEglob_expr">glob_expr</a> [<a href="Netglob.html">Netglob</a>]</td>
<td></td></tr>
<tr><td><a href="Netglob.html#TYPEglob_expr_atom">glob_expr_atom</a> [<a href="Netglob.html">Netglob</a>]</td>
<td><div class="info">
<p>Atoms:</p>
</div>
</td></tr>
<tr><td><a href="Netglob.html#TYPEglob_mode">glob_mode</a> [<a href="Netglob.html">Netglob</a>]</td>
<td><div class="info">
<p>Modes: <code class="code">`Existing_paths</code>: Only paths are returned that really exist, <code class="code">`All_paths</code>: Generated paths not including <code class="code">*</code>, <code class="code">?</code> and
bracket expressions are returned even if they do not exist.
For example, globbing for <code class="code">"fictive{1,2,3}"</code> would return
<code class="code">["ficitve1";"fictive2";"fictive3"]</code> independent of whether
these files exist., <code class="code">`All_words</code>: Patterns that cannot be resolved are returned
as-is (like the shell does)</p>
</div>
</td></tr>
<tr><td><a href="Netglob.html#TYPEglob_set">glob_set</a> [<a href="Netglob.html">Netglob</a>]</td>
<td><div class="info">
<p>A set of code points is given as a list of ranges <code class="code">(from,to)</code>, with
<code class="code">from <= to</code>.</p>
</div>
</td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_alert_description_t">gnutls_alert_description_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_alert_level_t">gnutls_alert_level_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_anon_client_credentials_t">gnutls_anon_client_credentials_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_anon_server_credentials_t">gnutls_anon_server_credentials_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_credentials_t">gnutls_certificate_credentials_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_import_flags">gnutls_certificate_import_flags</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_import_flags_flag">gnutls_certificate_import_flags_flag</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_print_formats_t">gnutls_certificate_print_formats_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_request_t">gnutls_certificate_request_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_status_t">gnutls_certificate_status_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_status_t_flag">gnutls_certificate_status_t_flag</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_type_t">gnutls_certificate_type_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_verify_flags">gnutls_certificate_verify_flags</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_certificate_verify_flags_flag">gnutls_certificate_verify_flags_flag</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_channel_binding_t">gnutls_channel_binding_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_cipher_algorithm_t">gnutls_cipher_algorithm_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_cipher_hd_t">gnutls_cipher_hd_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_close_request_t">gnutls_close_request_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_compression_method_t">gnutls_compression_method_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_credentials">gnutls_credentials</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_credentials_type_t">gnutls_credentials_type_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_dh_params_t">gnutls_dh_params_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_digest_algorithm_t">gnutls_digest_algorithm_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_ecc_curve_t">gnutls_ecc_curve_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_handshake_description_t">gnutls_handshake_description_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_info_access_what_t">gnutls_info_access_what_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_init_flags">gnutls_init_flags</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_init_flags_flag">gnutls_init_flags_flag</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_kx_algorithm_t">gnutls_kx_algorithm_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_mac_algorithm_t">gnutls_mac_algorithm_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_params_type_t">gnutls_params_type_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_pk_algorithm_t">gnutls_pk_algorithm_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_pkcs_encrypt_flags_t">gnutls_pkcs_encrypt_flags_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_pkcs_encrypt_flags_t_flag">gnutls_pkcs_encrypt_flags_t_flag</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_priority_t">gnutls_priority_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_privkey_t">gnutls_privkey_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_privkey_type_t">gnutls_privkey_type_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_protocol_t">gnutls_protocol_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_psk_client_credentials_t">gnutls_psk_client_credentials_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_psk_key_flags">gnutls_psk_key_flags</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_psk_server_credentials_t">gnutls_psk_server_credentials_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_pubkey_t">gnutls_pubkey_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_sec_param_t">gnutls_sec_param_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_server_name_type_t">gnutls_server_name_type_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_session_t">gnutls_session_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_sign_algorithm_t">gnutls_sign_algorithm_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_srp_client_credentials_t">gnutls_srp_client_credentials_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_srp_server_credentials_t">gnutls_srp_server_credentials_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_supplemental_data_format_type_t">gnutls_supplemental_data_format_type_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_x509_crl_t">gnutls_x509_crl_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_x509_crt_fmt_t">gnutls_x509_crt_fmt_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_x509_crt_t">gnutls_x509_crt_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_x509_privkey_t">gnutls_x509_privkey_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEgnutls_x509_subject_alt_name_t">gnutls_x509_subject_alt_name_t</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Unixqueue.html#TYPEgroup">group</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
<p>A group is an abstract tag for a set of events, resources, and
event handlers.</p>
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEgroup_action">group_action</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<p>Determines in which process group the new process will run</p>
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEgroup_mode">group_mode</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<p>Specifies how the job instance is related to process groups</p>
</div>
</td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_OID">gss_OID</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_OID_set">gss_OID_set</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_buffer_t">gss_buffer_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_channel_bindings_t">gss_channel_bindings_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_cred_id_t">gss_cred_id_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_cred_usage_t">gss_cred_usage_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_ctx_id_t">gss_ctx_id_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_name_t">gss_name_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEgss_qop_t">gss_qop_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td align="left"><div>H</div></td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEhash_function">hash_function</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client.html#TYPEheader_kind">header_kind</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>The <code class="code">`Base</code> header is set by the user of <code class="code">http_call</code> and is never
changed during processing the call.</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_heap.html#TYPEheap">heap</a> [<a href="Netmcore_heap.html">Netmcore_heap</a>]</td>
<td><div class="info">
<p>A heap where the type of the root element is <code class="code">'a</code></p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEhost">host</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>For name- and IP-based virtual hosting this record describes the individual
host.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEhost_distributor">host_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>Describes virtual hosting by pairs <code class="code">(host,service)</code>: If <code class="code">host</code> matches the
incoming request, the corresponding <code class="code">service</code> is performed to generate the
response.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp_client.html#TYPEhow_to_reconnect">how_to_reconnect</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>How to deal with automatic reconnections, especially when the
connection crashes.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp_client.html#TYPEhow_to_redirect">how_to_redirect</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEhttp_method">http_method</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>Method name, URI</p>
</div>
</td></tr>
<tr><td><a href="Netcgi.html#TYPEhttp_method">http_method</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_common.html#TYPEhttp_method">http_method</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client.html#TYPEhttp_options">http_options</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>Options for the whole pipeline.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_types.html#TYPEhttp_service_reaction">http_service_reaction</a> [<a href="Nethttpd_types.html">Nethttpd_types</a>]</td>
<td><div class="info">
<p>Indicates the immediate reaction upon an arriving HTTP header: <code class="code">`Accept_body</code> is the regular way of processing requests. If necessary,
the client is told to continue sending the rest of the request., <code class="code">`Reject_body</code> can be used when the body of the request is not needed,
and the response will be negative., <code class="code">`Static</code> means to send the header and a constant string back as response.
The header is taken from the environment if not explicitly passed,
Note: The <code class="code">Content-Length</code> header is automatically added. The <code class="code">Content-Type</code>
defaults to "text/html"., <code class="code">`File</code> is similar to this, but the data come from a file. The file
is specified by an absolute pathname. The range of the file is given
by the start position and the length of the range.
The header is taken from the environment if not explicitly passed,
Note: The <code class="code">Content-Length</code> header is automatically added. The <code class="code">Content-Type</code>
defaults to "text/html"., <code class="code">`Std_response</code> is similar to <code class="code">`Static</code>, however the body is the standard
text for the status code. If the header is omitted, it is taken as empty.
The third argument is an optional entry into the error log.
Note: The <code class="code">Content-Length</code> header is automatically added. The <code class="code">Content-Type</code>
defaults to "text/html".</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEhttp_status">http_status</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>HTTP response status:</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_plex.html#TYPEhttpd_factory">httpd_factory</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td><div class="info">
<p>The type of the <code class="code">nethttpd_processor</code> function</p>
</div>
</td></tr>
<tr><td align="left"><div>I</div></td></tr>
<tr><td><a href="Netsys_digests.html#TYPEiana_hash_fn">iana_hash_fn</a> [<a href="Netsys_digests.html">Netsys_digests</a>]</td>
<td><div class="info">
<p>The hash functions contained in the IANA registry
(http://www.iana.org/assignments/hash-function-text-names/hash-function-text-names.xhtml).</p>
</div>
</td></tr>
<tr><td><a href="Rpc_auth_sys.html#TYPEidentity">identity</a> [<a href="Rpc_auth_sys.html">Rpc_auth_sys</a>]</td>
<td><div class="info">
<p>Specifies the user: <code class="code">`Effective_user</code>: Take the effective user of the process, <code class="code">`Real_user</code>: Take the real user of the process, <code class="code">`This_user(uid,gid,sup_groups,hostname)</code>: Pretend to be
this user</p>
</div>
</td></tr>
<tr><td><a href="Uq_io.html#TYPEin_bdevice">in_bdevice</a> [<a href="Uq_io.html">Uq_io</a>]</td>
<td><div class="info">
<p>Devices with look-ahead</p>
</div>
</td></tr>
<tr><td><a href="Uq_io.html#TYPEin_buffer">in_buffer</a> [<a href="Uq_io.html">Uq_io</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_io.html#TYPEin_device">in_device</a> [<a href="Uq_io.html">Uq_io</a>]</td>
<td><div class="info">
<p>Currently supported devices for input: <code class="code">`Polldescr(st,fd,esys)</code>: The <code class="code">poll</code> system call is used with file
descriptor <code class="code">fd</code> to wait for incoming data. The
event system <code class="code">esys</code> is the underlying event queue. This works
well for pipes, sockets etc. but not for normal files. The
style <code class="code">st</code> can be obtained from <code class="code">fd</code> via
<a href="Netsys.html#VALget_fd_style"><code class="code">Netsys.get_fd_style</code></a>., <code class="code">`Multiplex mplex</code>: The multiplex controller <code class="code">mplex</code> is
used as device. , <code class="code">`Buffer buf</code>: Data comes from the buffer <code class="code">buf</code> (which in turn
is connected with a second device), <code class="code">`Count_in(f,d)</code>: Data is read from <code class="code">d</code>, and every time a few
bytes <code class="code">n</code> are read the function <code class="code">f n</code> is called (which may raise
an exception)
Generally, it is not well supported to read in parallel several times
from the same device.</p>
</div>
</td></tr>
<tr><td><a href="Rpc_transport.html#TYPEin_record">in_record</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_transport.html#TYPEin_rule">in_rule</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client_conncache.html#TYPEinactive_data">inactive_data</a> [<a href="Nethttp_client_conncache.html">Nethttp_client_conncache</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEinetspec">inetspec</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_client.html#TYPEinetspec">inetspec</a> [<a href="Uq_client.html">Uq_client</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEinetspec">inetspec</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_client.html#TYPEinetspec"><code class="code">Uq_client.inetspec</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netmcore.html#TYPEinherit_request">inherit_request</a> [<a href="Netmcore.html">Netmcore</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sasl.Server.html#TYPEinit_credentials">init_credentials</a> [<a href="Netsys_sasl.Server.html">Netsys_sasl.Server</a>]</td>
<td><div class="info">
<p>A function for preparing credentials, provided by the mechanism.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_mem.html#TYPEinit_value_flag">init_value_flag</a> [<a href="Netsys_mem.html">Netsys_mem</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEinput_mode">input_mode</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<p>This is not used anywhere.</p>
</div>
</td></tr>
<tr><td><a href="Netchannels.html#TYPEinput_result">input_result</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
<p>This type is for the method <code class="code">enhanced_input</code> of <code class="code">enhanced_raw_in_channel</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEinput_state">input_state</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<p>This is not the business of the user.</p>
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEint32_array">int32_array</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netnumber.html#TYPEint4">int4</a> [<a href="Netnumber.html">Netnumber</a>]</td>
<td><div class="info">
<p>32 bit signed integer</p>
</div>
</td></tr>
<tr><td><a href="Netnumber.html#TYPEint8">int8</a> [<a href="Netnumber.html">Netnumber</a>]</td>
<td><div class="info">
<p>64 bit signed integer</p>
</div>
</td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEint_value">int_value</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEinternal_pipe">internal_pipe</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_client.html#TYPEinternal_pipe">internal_pipe</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_transport.html#TYPEinternal_pipe">internal_pipe</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEinternal_socket">internal_socket</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_client.html#TYPEinternal_socket">internal_socket</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEinterprocess_token">interprocess_token</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Interprocess tokens.</p>
</div>
</td></tr>
<tr><td><a href="Uq_io.html#TYPEio_device">io_device</a> [<a href="Uq_io.html">Uq_io</a>]</td>
<td><div class="info">
<p>Bidirectional devices</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEioprio">ioprio</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEioprio_target">ioprio_target</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td align="left"><div>J</div></td></tr>
<tr><td><a href="Shell_sys.html#TYPEjob">job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEjob_instance">job_instance</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEjob_status">job_status</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<p>Indicates the status of the job</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_process.html#TYPEjoin_point">join_point</a> [<a href="Netmcore_process.html">Netmcore_process</a>]</td>
<td><div class="info">
<p>A join point can wait until a process finishes with a result <code class="code">'b</code></p>
</div>
</td></tr>
<tr><td align="left"><div>K</div></td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEkex_alg">kex_alg</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Netauth.html#TYPEkey_type">key_type</a> [<a href="Netauth.html">Netauth</a>]</td>
<td><div class="info">
<p>Key types: <code class="code">`Kc</code> is used for computing checksums, <code class="code">`Ke</code> is used for encrypting confidential messages, <code class="code">`Ki</code> is used for computing integrity checksums for encrypted
messages</p>
</div>
</td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEkey_usage">key_usage</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEkey_usage_flag">key_usage_flag</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netx509.html#TYPEkey_usage_flag">key_usage_flag</a> [<a href="Netx509.html">Netx509</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEkind_check">kind_check</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Helper type for a polymorphic check whether a kind this the expected
kind</p>
</div>
</td></tr>
<tr><td align="left"><div>L</div></td></tr>
<tr><td><a href="Netsys_posix.html#TYPElanginfo">langinfo</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netldap.html#TYPEldap_connection">ldap_connection</a> [<a href="Netldap.html">Netldap</a>]</td>
<td></td></tr>
<tr><td><a href="Netlog.html#TYPElevel">level</a> [<a href="Netlog.html">Netlog</a>]</td>
<td><div class="info">
<p>The log levels (syslog-like)</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPElevel">level</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPElevel">level</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Log levels, modeled after syslog</p>
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#TYPElexbuf">lexbuf</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPElinear_distributor">linear_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>Services are selected by calling the selector function.</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPElisten_address">listen_address</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_server.html#TYPElisten_address">listen_address</a> [<a href="Uq_server.html">Uq_server</a>]</td>
<td><div class="info">
<p>Specifies the resource to listen on:</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPElisten_address">listen_address</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_server.html#TYPElisten_address"><code class="code">Uq_server.listen_address</code></a></p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPElisten_options">listen_options</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_server.html#TYPElisten_options">listen_options</a> [<a href="Uq_server.html">Uq_server</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPElisten_options">listen_options</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td></td></tr>
<tr><td><a href="Netaddress.html#TYPElocal_part">local_part</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
<p>Usually the user name</p>
</div>
</td></tr>
<tr><td><a href="Netftp_data_endpoint.html#TYPElocal_receiver">local_receiver</a> [<a href="Netftp_data_endpoint.html">Netftp_data_endpoint</a>]</td>
<td><div class="info">
<p>The <code class="code">local_receiver</code> is the object that gets the data received
over the data connection.</p>
</div>
</td></tr>
<tr><td><a href="Netftp_data_endpoint.html#TYPElocal_sender">local_sender</a> [<a href="Netftp_data_endpoint.html">Netftp_data_endpoint</a>]</td>
<td><div class="info">
<p>The <code class="code">local_sender</code> is the object that provides the data sent
over the data connection.</p>
</div>
</td></tr>
<tr><td><a href="Netdate.html#TYPElocalization">localization</a> [<a href="Netdate.html">Netdate</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#TYPElocking_method">locking_method</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<p>The locking method is used to ensure that parallel read and write
operations to the memory object do not interfer with each other.</p>
</div>
</td></tr>
<tr><td><a href="Netlog.html#TYPElogger">logger</a> [<a href="Netlog.html">Netlog</a>]</td>
<td><div class="info">
<p>A logging function takes a level, and the message</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sasl.Server.html#TYPElookup">lookup</a> [<a href="Netsys_sasl.Server.html">Netsys_sasl.Server</a>]</td>
<td><div class="info">
<p>see <code class="code">create_session</code></p>
</div>
</td></tr>
<tr><td><a href="Uq_libevent.LIBOEVENT.html#TYPEloop_flags">loop_flags</a> [<a href="Uq_libevent.LIBOEVENT.html">Uq_libevent.LIBOEVENT</a>]</td>
<td></td></tr>
<tr><td align="left"><div>M</div></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEmajor_status">major_status</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>The major status consists of these three elements.</p>
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEmapping">mapping</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEmaskgen_function">maskgen_function</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEmatch_result">match_result</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>See <a href="Nethttp.HTTP_CLIENT_MECHANISM.html#VALclient_match"><code class="code">Nethttp.HTTP_CLIENT_MECHANISM.client_match</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netplex_mbox.MBOX.html#TYPEmbox">mbox</a> [<a href="Netplex_mbox.MBOX.html">Netplex_mbox.MBOX</a>]</td>
<td><div class="info">
<p>The type of the mailboxes</p>
</div>
</td></tr>
<tr><td><a href="Rpc_proxy.ManagedClient.html#TYPEmclient">mclient</a> [<a href="Rpc_proxy.ManagedClient.html">Rpc_proxy.ManagedClient</a>]</td>
<td><div class="info">
<p>A managed client</p>
</div>
</td></tr>
<tr><td><a href="Rpc_proxy.ManagedClient.html#TYPEmclient_config">mclient_config</a> [<a href="Rpc_proxy.ManagedClient.html">Rpc_proxy.ManagedClient</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEmemory">memory</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td><div class="info">
<p>See <a href="Netsys_types.html#TYPEmemory"><code class="code">Netsys_types.memory</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netsys_mem.html#TYPEmemory">memory</a> [<a href="Netsys_mem.html">Netsys_mem</a>]</td>
<td><div class="info">
<p>We consider 1-dimensional bigarrays of chars as memory buffers.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_types.html#TYPEmemory">memory</a> [<a href="Netsys_types.html">Netsys_types</a>]</td>
<td><div class="info">
<p>We consider 1-dimensional bigarrays of chars as memory buffers.</p>
</div>
</td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEmemory">memory</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_mem.html#TYPEmemory_pool">memory_pool</a> [<a href="Netsys_mem.html">Netsys_mem</a>]</td>
<td><div class="info">
<p>A pool of <code class="code">memory</code> blocks that are all the same size and page-aligned
(if the OS supports this).</p>
</div>
</td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEmessage">message</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Messages are represented as lists of <code class="code">mstring</code></p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEmethod_distributor">method_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>The first service is selected for which the method filter accepts the request</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEmethod_filter">method_filter</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>The request is only accepted if listed (for <code class="code">`Limit</code>), or if not listed
(for <code class="code">`Limit_except</code>).</p>
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEmime_message">mime_message</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
<p>Simple MIME message, in a form that is compatible with complex
ones.</p>
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEmime_message_ro">mime_message_ro</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
<p>Read-only variant of simple messages</p>
</div>
</td></tr>
<tr><td><a href="Netmime_string.html#TYPEmime_scanner">mime_scanner</a> [<a href="Netmime_string.html">Netmime_string</a>]</td>
<td><div class="info">
<p>The opaque type of a scanner for structured values</p>
</div>
</td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEminor_status">minor_status</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>The minor status is provider-specific.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEmkdir_flag">mkdir_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc.html#TYPEmode">mode</a> [<a href="Rpc.html">Rpc</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEmode2">mode2</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
<p>Determines the type of the server for <code class="code">create2</code>:</p>
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#TYPEmode2">mode2</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
<p>Determines the type of the client for <code class="code">create2</code>:</p>
</div>
</td></tr>
<tr><td><a href="Nethtml.html#TYPEmodel_constraint">model_constraint</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
<p>Model constraints define the possible sub elements of an element: <code class="code">`Inline</code>: The sub elements must belong to the class <code class="code">`Inline</code>, <code class="code">`Block</code>: The sub elements must be members of the classes <code class="code">`Block</code> or
<code class="code">`Essential_block</code>, <code class="code">`Flow</code>: The sub elements must belong to the classes <code class="code">`Inline</code>, <code class="code">`Block</code>,
or <code class="code">`Essential_block</code>, <code class="code">`Empty</code>: There are no sub elements, <code class="code">`Any</code>: Any sub element is allowed, <code class="code">`Special</code>: The element has special content (e.g. <code class="code"><script></code>).
Functionally equivalent to <code class="code">`Empty</code>, <code class="code">`Elements l</code>: Only these enumerated elements may occur as sub elements, <code class="code">`Or(m1,m2)</code>: One of the constraints <code class="code">m1</code> or <code class="code">m2</code> must hold, <code class="code">`Except(m1,m2)</code>: The constraint <code class="code">m1</code> must hold, and <code class="code">m2</code> must not hold, <code class="code">`Sub_exclusions(l,m)</code>: The constraint <code class="code">m</code> must hold; furthermore,
the elements enumerated in list <code class="code">l</code> are not allowed as direct or
indirect subelements, even if <code class="code">m</code> or the model of a subelement would
allow them. The difference to <code class="code">`Except(m, `Elements l)</code> is that the
exclusion is inherited to the subelements. The <code class="code">`Sub_exclusions</code>
expression must be toplevel, i.e. it must not occur within an <code class="code">`Or</code>,
<code class="code">`Except</code>, or another <code class="code">'Sub_exclusions</code> expression.
Note that the members of the class <code class="code">`Everywhere</code> are allowed everywhere,
regardless of whether the model constraint allows them or not.</p>
</div>
</td></tr>
<tr><td><a href="Uq_mt.html#TYPEmonitor">monitor</a> [<a href="Uq_mt.html">Uq_mt</a>]</td>
<td><div class="info">
<p>A thread monitor governs which threads have access to a set
of engines running together on an event system</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_plex.html#TYPEmountpoint">mountpoint</a> [<a href="Netcgi_plex.html">Netcgi_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_proxy.ManagedSet.html#TYPEmset">mset</a> [<a href="Rpc_proxy.ManagedSet.html">Rpc_proxy.ManagedSet</a>]</td>
<td><div class="info">
<p>a managed set</p>
</div>
</td></tr>
<tr><td><a href="Rpc_proxy.ManagedSet.html#TYPEmset_config">mset_config</a> [<a href="Rpc_proxy.ManagedSet.html">Rpc_proxy.ManagedSet</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_proxy.ManagedSet.html#TYPEmset_policy">mset_policy</a> [<a href="Rpc_proxy.ManagedSet.html">Rpc_proxy.ManagedSet</a>]</td>
<td><div class="info">
<p>Sets in which order managed clients are picked from the
<code class="code">services</code> array passed to <code class="code">create_mset</code>: <code class="code">`Failover</code>: Picks an element from the first service
in <code class="code">services</code> that is enabled and has free capacity.
That means that the first service is preferred until it is
maxed out or it fails, then the second service is preferred,
and so on., <code class="code">`Balance_load</code>: Picks an element from the service in
<code class="code">services</code> that is enabled and has the lowest load.</p>
</div>
</td></tr>
<tr><td><a href="Netmime_channels.html#TYPEmultipart_style">multipart_style</a> [<a href="Netmime_channels.html">Netmime_channels</a>]</td>
<td><div class="info">
<p>How to parse multipart messages: <code class="code">`None</code>: Do not handle multipart messages specially. Multipart bodies
are not further decoded, and returned as <code class="code">`Body b</code> where <code class="code">b</code> is
the transfer-encoded text representation., <code class="code">`Flat</code>: If the top-level message is a multipart message, the parts
are separated and returned as list. If the parts are again multipart
messages, these inner multipart messages are not furher decoded
and returned as <code class="code">`Body b</code>., <code class="code">`Deep</code>: Multipart messages are recursively decoded and returned as
tree structure.
This value determines how far the <code class="code">complex_mime_message</code> structure
is created for a parsed MIME message.</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_heap.html#TYPEmutator">mutator</a> [<a href="Netmcore_heap.html">Netmcore_heap</a>]</td>
<td><div class="info">
<p>Mutators allow it to push new values onto the heap.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_mutex.html#TYPEmutex">mutex</a> [<a href="Netplex_mutex.html">Netplex_mutex</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_mutex.html#TYPEmutex">mutex</a> [<a href="Netmcore_mutex.html">Netmcore_mutex</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_mutex.html#TYPEmutex_type">mutex_type</a> [<a href="Netmcore_mutex.html">Netmcore_mutex</a>]</td>
<td><div class="info">
<p>Types: <code class="code">`Normal</code> mutexes have no checks for deadlocks., <code class="code">`Errorcheck</code> mutexes check whether the process locks the mutex
again, and fail in this case. Also, only the owning process can
unlock a mutex., <code class="code">`Recursive</code> mutexes allow that the owner locks several times.
The same number of unlock requests need to be issued to give
up the ownership</p>
</div>
</td></tr>
<tr><td align="left"><div>N</div></td></tr>
<tr><td><a href="Netsys_gssapi.GSSAPI.html#TYPEname">name</a> [<a href="Netsys_gssapi.GSSAPI.html">Netsys_gssapi.GSSAPI</a>]</td>
<td><div class="info">
<p>A name is also opaque</p>
</div>
</td></tr>
<tr><td><a href="Netxdr_mstring.html#TYPEnamed_mstring_factories">named_mstring_factories</a> [<a href="Netxdr_mstring.html">Netxdr_mstring</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEnamed_semaphore">named_semaphore</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_nettle_bindings.html#TYPEnet_nettle_cipher_ctx_t">net_nettle_cipher_ctx_t</a> [<a href="Nettls_nettle_bindings.html">Nettls_nettle_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_nettle_bindings.html#TYPEnet_nettle_cipher_t">net_nettle_cipher_t</a> [<a href="Nettls_nettle_bindings.html">Nettls_nettle_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_nettle_bindings.html#TYPEnet_nettle_gcm_aes_ctx_t">net_nettle_gcm_aes_ctx_t</a> [<a href="Nettls_nettle_bindings.html">Nettls_nettle_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_nettle_bindings.html#TYPEnet_nettle_hash_ctx_t">net_nettle_hash_ctx_t</a> [<a href="Nettls_nettle_bindings.html">Nettls_nettle_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_nettle_bindings.html#TYPEnet_nettle_hash_t">net_nettle_hash_t</a> [<a href="Nettls_nettle_bindings.html">Nettls_nettle_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEnetbuf">netbuf</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEnetscape_cookie">netscape_cookie</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>These are old-style cookies, as introduced by Netscape.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEnode_type">node_type</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEnot_event">not_event</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td align="left"><div>O</div></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEoid">oid</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>OIDs like "1.3.6.1.5.6.2" as array of int's.</p>
</div>
</td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEoid">oid</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td><div class="info">
<p>OIDs are just integer sequences</p>
</div>
</td></tr>
<tr><td><a href="Netx509.html#TYPEoid">oid</a> [<a href="Netx509.html">Netx509</a>]</td>
<td><div class="info">
<p>OIDs are just integer sequences</p>
</div>
</td></tr>
<tr><td><a href="Netdn.html#TYPEoid">oid</a> [<a href="Netdn.html">Netdn</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEoid_set">oid_set</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>A set of OID's.</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEonshutdown_in_spec">onshutdown_in_spec</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_transfer.html#TYPEonshutdown_in_spec">onshutdown_in_spec</a> [<a href="Uq_transfer.html">Uq_transfer</a>]</td>
<td><div class="info">
<p>See class <code class="code">input_async_mplex</code> for explanations</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEonshutdown_in_spec">onshutdown_in_spec</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_transfer.html#TYPEonshutdown_in_spec"><code class="code">Uq_transfer.onshutdown_in_spec</code></a></p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEonshutdown_out_spec">onshutdown_out_spec</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_transfer.html#TYPEonshutdown_out_spec">onshutdown_out_spec</a> [<a href="Uq_transfer.html">Uq_transfer</a>]</td>
<td><div class="info">
<p>See class <code class="code">output_async_mplex</code> for explanations</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEonshutdown_out_spec">onshutdown_out_spec</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_transfer.html#TYPEonshutdown_out_spec"><code class="code">Uq_transfer.onshutdown_out_spec</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi.html#TYPEoperating_type">operating_type</a> [<a href="Netcgi1_compat.Netcgi.html">Netcgi1_compat.Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Netldap.html#TYPEoperation">operation</a> [<a href="Netldap.html">Netldap</a>]</td>
<td></td></tr>
<tr><td><a href="Unixqueue.html#TYPEoperation">operation</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
<p>An <code class="code">operation</code> specifies the condition to wait for.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEother_url_spec">other_url_spec</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEother_url_spec">other_url_spec</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
<p>Determines how an URL part is generated: <code class="code">`Env</code>: Take the value from the environment., <code class="code">`This v</code>: Use this value <code class="code">v</code>. It must already be URL-encoded., <code class="code">`None</code>: Do not include this part into the URL.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEother_url_spec">other_url_spec</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<p>See <a href="Netcgi.html#TYPEother_url_spec"><code class="code">Netcgi.other_url_spec</code></a>.</p>
</div>
</td></tr>
<tr><td><a href="Uq_io.html#TYPEout_buffer">out_buffer</a> [<a href="Uq_io.html">Uq_io</a>]</td>
<td><div class="info">
<p>Buffers that can be attached to a <code class="code">device</code> to get buffered I/O</p>
</div>
</td></tr>
<tr><td><a href="Uq_io.html#TYPEout_device">out_device</a> [<a href="Uq_io.html">Uq_io</a>]</td>
<td><div class="info">
<p>Currently supported devices for output: <code class="code">`Polldescr(fd,esys)</code>: The <code class="code">poll</code> system call is used with file
descriptor <code class="code">fd</code> to wait until data can be output. The
event system <code class="code">esys</code> is the underlying event queue. This works
well for pipes, sockets etc. but not for normal files., <code class="code">`Multiplex mplex</code>: The multiplex controller <code class="code">mplex</code> is
used as device. , <code class="code">`Buffer buf</code>: Data is written to the buffer <code class="code">buf</code> (which in turn
is connected with a second device), <code class="code">`Count_out(f,d)</code>: Data is written to <code class="code">d</code>, and every time a few
bytes <code class="code">n</code> are written the function <code class="code">f n</code> is called (which may raise
an exception)
Generally, it is not well supported to write in parallel several times
to the same device.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEoutput_mode">output_mode</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<p>This is not used anywhere.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_types.html#TYPEoutput_state">output_state</a> [<a href="Nethttpd_types.html">Nethttpd_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEoutput_state">output_state</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<p>This is not the business of the user.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi.html#TYPEoutput_type">output_type</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
<p>The ouput type determines how generated data is buffered.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEoutput_type">output_type</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<p>See <a href="Netcgi.html#TYPEoutput_type"><code class="code">Netcgi.output_type</code></a>.</p>
</div>
</td></tr>
<tr><td align="left"><div>P</div></td></tr>
<tr><td><a href="Rpc_packer.html#TYPEpacked_value">packed_value</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_ciphers.html#TYPEpadding">padding</a> [<a href="Netsys_ciphers.html">Netsys_ciphers</a>]</td>
<td><div class="info">
<p>Padding schemes:</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEparallelization_type">parallelization_type</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Type of parallelization: <code class="code">`Multi_processing</code> on a single host, <code class="code">`Multi_threading</code> on a single host, <code class="code">`Controller_attached</code> means that the service runs within the
controller. This is (for now) only allowed for controller-internal
services.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#TYPEparam_value">param_value</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
<p>Some parameters may occur quoted and unquoted.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEparam_value">param_value</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEparam_value_or_any">param_value_or_any</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netglob.html#TYPEpattern">pattern</a> [<a href="Netglob.html">Netglob</a>]</td>
<td><div class="info">
<p>Input for <a href="Netglob.html#VALglob"><code class="code">Netglob.glob</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netaux.KMP.html#TYPEpattern">pattern</a> [<a href="Netaux.KMP.html">Netaux.KMP</a>]</td>
<td></td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEpc">pc</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client_conncache.html#TYPEpeer">peer</a> [<a href="Nethttp_client_conncache.html">Nethttp_client_conncache</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEpg_spec">pg_spec</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.PUBKEY_CRYPTO.html#TYPEpin_callback">pin_callback</a> [<a href="Netsys_crypto_types.PUBKEY_CRYPTO.html">Netsys_crypto_types.PUBKEY_CRYPTO</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEpipe_mode">pipe_mode</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_pmanage.html#TYPEpm_obj">pm_obj</a> [<a href="Netsys_pmanage.html">Netsys_pmanage</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEpmaplist">pmaplist</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEpmaplist_p">pmaplist_p</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEpoll_act_events">poll_act_events</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td><div class="info">
<p>Poll events.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEpoll_array">poll_array</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td><div class="info">
<p>The array of <code class="code">poll_cell</code> entries</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEpoll_cell">poll_cell</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td><div class="info">
<p>The poll cell refers to the descriptor <code class="code">poll_fd</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEpoll_req_events">poll_req_events</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#TYPEpoly_cursor">poly_cursor</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<p>A cursor denotes a character position in an encoded string.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_polysocket.html#TYPEpolyclient">polyclient</a> [<a href="Netsys_polysocket.html">Netsys_polysocket</a>]</td>
<td><div class="info">
<p>A client, connected or unconnected</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEpolyclient_box">polyclient_box</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>This type pairs a <code class="code">polysocket_kind</code> with a <code class="code">polyclient</code>
as GADT.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_polysocket.html#TYPEpolyendpoint">polyendpoint</a> [<a href="Netsys_polysocket.html">Netsys_polysocket</a>]</td>
<td><div class="info">
<p>An endpoint is simply a pair <code class="code">(rd,wr)</code> where <code class="code">rd</code> is a polypipe open
for reading, and <code class="code">wr</code> is a polypipe open for writing.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_polypipe.html#TYPEpolypipe">polypipe</a> [<a href="Netsys_polypipe.html">Netsys_polypipe</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_polysocket.html#TYPEpolyserver">polyserver</a> [<a href="Netsys_polysocket.html">Netsys_polysocket</a>]</td>
<td><div class="info">
<p>A server</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEpolyserver_box">polyserver_box</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>This type pairs a <code class="code">polysocket_kind</code> with a <code class="code">polyserver</code> as GADT.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEpolysocket_kind">polysocket_kind</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>List possible argument types for polysockets (<a href="Netsys_polysocket.html"><code class="code">Netsys_polysocket</code></a>),
which are the basis for internal services.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEpolysocket_kind_box">polysocket_kind_box</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>Boxed version of <code class="code">polysocket_kind</code> where the type parameter is hidden</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEport">port</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>The port of the data connection: <code class="code">`Active</code> means that the server
initiates the data connection to the listening client, and in the
case of <code class="code">`Passive</code> the client initiates the data connection to the
listening server.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEposix_timer">posix_timer</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sem.html#TYPEprefix">prefix</a> [<a href="Netsys_sem.html">Netsys_sem</a>]</td>
<td><div class="info">
<p>A name starting with a slash.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp_client.html#TYPEprivate_api">private_api</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>The private part of the <code class="code">http_call</code> class type</p>
</div>
</td></tr>
<tr><td><a href="Netsys_tls.html#TYPEprivate_key">private_key</a> [<a href="Netsys_tls.html">Netsys_tls</a>]</td>
<td><div class="info">
<p>Private keys are given either as:</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.PUBKEY_CRYPTO.html#TYPEprivate_key">private_key</a> [<a href="Netsys_crypto_types.PUBKEY_CRYPTO.html">Netsys_crypto_types.PUBKEY_CRYPTO</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEprivate_key">private_key</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td><div class="info">
<p>Private keys are given either as:</p>
</div>
</td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEprivkey">privkey</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEprocess">process</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<p>A process is the running instance of a command (a Unix process)</p>
</div>
</td></tr>
<tr><td><a href="Netmcore.html#TYPEprocess_id">process_id</a> [<a href="Netmcore.html">Netmcore</a>]</td>
<td><div class="info">
<p>This tagged integer identifies processes.</p>
</div>
</td></tr>
<tr><td><a href="Shell.html#TYPEproducer">producer</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
<p>A producer generates data sent to a called process</p>
</div>
</td></tr>
<tr><td><a href="Netmech_scram.html#TYPEprofile">profile</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>Profile</p>
</div>
</td></tr>
<tr><td><a href="Rpc.html#TYPEprotocol">protocol</a> [<a href="Rpc.html">Rpc</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEprotocol">protocol</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>The base protocol.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEprotocol">protocol</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEprotocol_attribute">protocol_attribute</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEprotocol_attribute">protocol_attribute</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEprotocol_version">protocol_version</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEprotocol_version">protocol_version</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client.html#TYPEproxy_type">proxy_type</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td></td></tr>
<tr><td><a href="Netmech_scram.html#TYPEptype">ptype</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>Profile types: <code class="code">`GSSAPI</code>: as defined in RFC 5802, the gs2-header is omitted, <code class="code">`SASL</code>: as defined in RFC 5802</p>
</div>
</td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEpubkey">pubkey</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td><div class="info">
<p>Public key info: the key as such plus the algorithm.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.html#TYPEpubkey_crypto">pubkey_crypto</a> [<a href="Netsys_crypto_types.html">Netsys_crypto_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.PUBKEY_CRYPTO.html#TYPEpublic_key">public_key</a> [<a href="Netsys_crypto_types.PUBKEY_CRYPTO.html">Netsys_crypto_types.PUBKEY_CRYPTO</a>]</td>
<td></td></tr>
<tr><td align="left"><div>Q</div></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEqop">qop</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Quality-of-proctection parameters are mechanism-specific.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEquery_string_spec">query_string_spec</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEquery_string_spec">query_string_spec</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
<p>Determines how the query part of URLs is generated: <code class="code">`Env</code>: The query string of the current request., <code class="code">`This l</code>: The query string is created from the specified
argument list <code class="code">l</code>., <code class="code">`None</code>: The query string is omitted., <code class="code">`Args</code>: <i>deprecated</i>, use <code class="code">`This</code>
(left for backward compatibility).</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEquery_string_spec">query_string_spec</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<p>See <a href="Netcgi.html#TYPEquery_string_spec"><code class="code">Netcgi.query_string_spec</code></a>.</p>
</div>
</td></tr>
<tr><td align="left"><div>R</div></td></tr>
<tr><td><a href="Netplex_cenv.FUN_TYPE.html#TYPEr">r</a> [<a href="Netplex_cenv.FUN_TYPE.html">Netplex_cenv.FUN_TYPE</a>]</td>
<td><div class="info">
<p>result type</p>
</div>
</td></tr>
<tr><td><a href="Netplex_cenv.LEVER.html#TYPEr">r</a> [<a href="Netplex_cenv.LEVER.html">Netplex_cenv.LEVER</a>]</td>
<td><div class="info">
<p>result type</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEraw_credentials">raw_credentials</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td><div class="info">
<p>The encoded credentials: <code class="code">`X509 s</code>: The X509 certificate in DER encoding, <code class="code">`Anonymous</code>: no certificate or other key is available</p>
</div>
</td></tr>
<tr><td><a href="Nettls_support.html#TYPEraw_credentials">raw_credentials</a> [<a href="Nettls_support.html">Nettls_support</a>]</td>
<td><div class="info">
<p>The encoded credentials: <code class="code">`X509 s</code>: The X509 certificate in DER encoding, <code class="code">`Anonymous</code>: no certificate or other key is available</p>
</div>
</td></tr>
<tr><td><a href="Rpc_proxy.ReliabilityCache.html#TYPErcache">rcache</a> [<a href="Rpc_proxy.ReliabilityCache.html">Rpc_proxy.ReliabilityCache</a>]</td>
<td><div class="info">
<p>The cache</p>
</div>
</td></tr>
<tr><td><a href="Rpc_proxy.ReliabilityCache.html#TYPErcache_config">rcache_config</a> [<a href="Rpc_proxy.ReliabilityCache.html">Rpc_proxy.ReliabilityCache</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_proxy.ReliabilityCache.html#TYPErcache_policy">rcache_policy</a> [<a href="Rpc_proxy.ReliabilityCache.html">Rpc_proxy.ReliabilityCache</a>]</td>
<td><div class="info">
<p>How failures of individual ports are interpreted: <code class="code">`Independent</code>: When a connection to a remote port repeatedly fails,
only this port is disabled, <code class="code">`Failing_port_disables_host p</code>: When a connection to the TCP
port <code class="code">p</code> repeatedly fails, the whole remote host is disabled.
Other ports do not disable the host, but are treated as in
<code class="code">`Independent</code>., <code class="code">`Any_failing_port_disables_host</code>: When a connection to any TCP
port repeatedly fails, the whole remote host is disabled, <code class="code">`None</code>: Nothing is disabled
Note that the <code class="code">rcache_availability</code> hook is not affected by the
policy; this hook is called anyway.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEread_file_flag">read_file_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_fs.html#TYPEread_file_flag">read_file_flag</a> [<a href="Nethttp_fs.html">Nethttp_fs</a>]</td>
<td></td></tr>
<tr><td><a href="Netfs.html#TYPEread_flag">read_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_fs.html#TYPEread_flag">read_flag</a> [<a href="Nethttp_fs.html">Nethttp_fs</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_apache.Apache.Request.html#TYPEread_policy">read_policy</a> [<a href="Netcgi_apache.Apache.Request.html">Netcgi_apache.Apache.Request</a>]</td>
<td><div class="info">
<p>Policy to apply by <code class="code">setup_client_block</code> if the request message
indicates a body.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEreaddir_flag">readdir_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Netfs.html#TYPEreadlink_flag">readlink_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEreal_value">real_value</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Netstring_str.html#TYPEregexp">regexp</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
<p>The type of regular expressions</p>
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#TYPEregexp">regexp</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
<p>The type of regular expressions; now based on <code class="code">Pcre</code></p>
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#TYPEreject_code">reject_code</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
<p>Reaction on authentication problems: <code class="code">`Fail</code>: Stop here, and report to user, <code class="code">`Retry</code>: Just try again with current session, <code class="code">`Renew</code>: Drop the current session, and get a new session from
the current <code class="code">auth_method</code>, <code class="code">`Next</code>: Try the next authentication method</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEremove_flag">remove_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Netfs.html#TYPErename_flag">rename_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Netftp_client.html#TYPEreply">reply</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>Reply code plus text</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPErepresentation">representation</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>The representation of the transferred file: <code class="code">`ASCII</code>: An ASCII variant is used, i.e. the server sends files in
ASCII encoding with CR/LF as end-of-line marker. Supported by all
servers., <code class="code">`EBCDIC</code>: An EBCDIC variant is used, i.e. the server sends files in
EBCDIC encoding with NEL as end-of-line marker, <code class="code">`Image</code>: The file is transferred in its original binary
representation. Supported by all servers.
"Local" representations are not supported.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPErepresentation">representation</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
<p>Embedded in the single place of use.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPErepresentation">representation</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEreq_flag">req_flag</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Flags for the <code class="code">init_sec_context</code> method</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEreq_token">req_token</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>A <code class="code">req_token</code> represents a textual part of the received request: <code class="code">`Req_header</code> is the full received header. Together with the header,
the corresponding <code class="code">http_response</code> object is returned which must
be used to transmit the response., <code class="code">`Req_expect_100_continue</code> is generated when the client expects that the
server sends a "100 Continue" response (or a final status code) now.
One should add <code class="code">`Resp_info_line resp_100_continue</code> to the send queue
if the header is acceptable, or otherwise generate an error response. In any
case, the rest of the request must be read until <code class="code">`Req_end</code>., <code class="code">`Req_body</code> is a part of the request body. The transfer-coding, if any,
is already decoded., <code class="code">`Req_trailer</code> is the received trailer, <code class="code">`Req_end</code> indicates the end of the request (the next request may begin
immediately)., <code class="code">`Eof</code> indicates the end of the stream, <code class="code">`Bad_request_error</code> indicates that the request violated the HTTP protocol
in a serious way and cannot be decoded. It is required to send a
"400 Bad Request" response. The following token will be <code class="code">`Eof</code>., <code class="code">`Fatal_error</code> indicates that the connection crashed.
The following token will be <code class="code">`Eof</code>., <code class="code">`Timeout</code> means that nothing has been received for a certain amount
of time, and the protocol is in a state that the next request can begin.
The following token will be <code class="code">`Eof</code>.
Note that it is always allowed to <code class="code">send</code> tokens to the client.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPErequest_line">request_line</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>The method (including the URI), and the HTTP version</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPErequest_method">request_method</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_common.html#TYPErequest_method">request_method</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore.html#TYPEres_id">res_id</a> [<a href="Netmcore.html">Netmcore</a>]</td>
<td><div class="info">
<p>This tagged integer identifies resources.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp_client.html#TYPEresolver">resolver</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>A name resolver is a function <code class="code">r</code> called as <code class="code">r esys name reply</code>.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEresp_state">resp_state</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>The response state: <code class="code">`Inhibited</code> = it is not yet allowed to start the response, <code class="code">`Queued</code> = the response waits on the queue for activation, <code class="code">`Active</code> = the response is currently being transmitted, <code class="code">`Processed</code> = the response has been completely sent, <code class="code">`Error</code> = an error occurred during the transmission of this response, <code class="code">`Dropped</code> = an earlier response forced to close the connection, and
this response is dequeued</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEresp_token">resp_token</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>The <code class="code">resp_token</code> represents a textual part of the response to send: <code class="code">`Resp_info_line</code> is an informational status line (code=100..199). There can
be several informational lines, and they can be accompanied with their own
headers. Such lines are only sent to HTTP/1.1 clients., <code class="code">`Resp_status_line</code> is the final status line to send (code >= 200), <code class="code">`Resp_header</code> is the whole response header to send, <code class="code">`Resp_body</code> is the next part of the response body to send., <code class="code">`Resp_trailer</code> is the whole response trailer to send (currently ignored), <code class="code">`Resp_action</code> is special because it does not directly represent a token
to send. The argument is a function which is called when the token is
the next token on the active event queue. The function is also called when
the event queue is dropped because of an error (the state of the
response object indicates this). The function must not raise exceptions
except <code class="code">Unix_error</code>, and it must not block.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp_client.html#TYPEresponse_body_storage">response_body_storage</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>How to create the response body: <code class="code">`Memory</code>: The response body is in-memory, <code class="code">`File f</code>: The response body is stored into the file whose name
is returned by <code class="code">f()</code>, <code class="code">`Body f</code>: The response body is stored into the object returned
by <code class="code">f()</code>, <code class="code">`Device f</code>: The response is directly forwarded to the device
obtained by <code class="code">f()</code> (new since Ocamlnet-3.3)
When the function <code class="code">f</code> is called in the latter cases the response
header has already been received, and can be retrieved with the
<code class="code">response_header</code> method of the call object.</p>
</div>
</td></tr>
<tr><td><a href="Rpc_transport.html#TYPEresult">result</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Netstring_str.html#TYPEresult">result</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
<p>The type of matching results</p>
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#TYPEresult">result</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
<p>The type of matching results</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_apache.Handler.html#TYPEresult">result</a> [<a href="Netcgi_apache.Handler.html">Netcgi_apache.Handler</a>]</td>
<td></td></tr>
<tr><td><a href="Netldap.html#TYPEresult_code">result_code</a> [<a href="Netldap.html">Netldap</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_transport.html#TYPEresult_eof">result_eof</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEret_flag">ret_flag</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Flags for the <code class="code">accept_sec_context</code> method</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPErmdir_flag">rmdir_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEroutine_error">routine_error</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Possible errors caused by the provider</p>
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErp__list">rp__list</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb">rpcb</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb_entry">rpcb_entry</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb_entry_list">rpcb_entry_list</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb_entry_list_ptr">rpcb_entry_list_ptr</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb_rmtcallargs">rpcb_rmtcallargs</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb_rmtcallres">rpcb_rmtcallres</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb_stat">rpcb_stat</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcb_stat_byvers">rpcb_stat_byvers</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcblist_ptr">rpcblist_ptr</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcbs_addrlist">rpcbs_addrlist</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcbs_addrlist_ptr">rpcbs_addrlist_ptr</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcbs_proc">rpcbs_proc</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcbs_rmtcalllist">rpcbs_rmtcalllist</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPErpcbs_rmtcalllist_ptr">rpcbs_rmtcalllist_ptr</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPErule">rule</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_tcl.html#TYPErunner">runner</a> [<a href="Uq_tcl.html">Uq_tcl</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_gtk.html#TYPErunner">runner</a> [<a href="Uq_gtk.html">Uq_gtk</a>]</td>
<td></td></tr>
<tr><td align="left"><div>S</div></td></tr>
<tr><td><a href="Netplex_cenv.FUN_TYPE.html#TYPEs">s</a> [<a href="Netplex_cenv.FUN_TYPE.html">Netplex_cenv.FUN_TYPE</a>]</td>
<td><div class="info">
<p>argument type</p>
</div>
</td></tr>
<tr><td><a href="Netplex_cenv.LEVER.html#TYPEs">s</a> [<a href="Netplex_cenv.LEVER.html">Netplex_cenv.LEVER</a>]</td>
<td><div class="info">
<p>argument type</p>
</div>
</td></tr>
<tr><td><a href="Netmime_string.html#TYPEs_extended_token">s_extended_token</a> [<a href="Netmime_string.html">Netmime_string</a>]</td>
<td><div class="info">
<p>An opaque type containing the information of <code class="code">s_token</code> plus: where the token occurs, RFC-2047 access functions</p>
</div>
</td></tr>
<tr><td><a href="Netmime_string.html#TYPEs_option">s_option</a> [<a href="Netmime_string.html">Netmime_string</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime_string.html#TYPEs_param">s_param</a> [<a href="Netmime_string.html">Netmime_string</a>]</td>
<td><div class="info">
<p>The type of encoded parameters (RFC 2231)</p>
</div>
</td></tr>
<tr><td><a href="Netmime_string.html#TYPEs_token">s_token</a> [<a href="Netmime_string.html">Netmime_string</a>]</td>
<td><div class="info">
<p>A token may be one of: <code class="code">QString s</code>: The quoted string <code class="code">s</code>, i.e a string between double
quotes. Quoted pairs are already decoded in <code class="code">s</code>., <code class="code">Control c</code>: The control character <code class="code">c</code> (0-31, 127, 128-255), <code class="code">Special c</code>: The special character <code class="code">c</code>, i.e. a character from
the <code class="code">specials</code> list, <code class="code">DomainLiteral s</code>: The bracketed string <code class="code">s</code>, i.e. a string between
brackets. Quoted pairs are already decoded in <code class="code">s</code>., <code class="code">Comment</code>: A string between parentheses. This kind of token is only
generated when the option <code class="code">Return_comments</code> is in effect., <code class="code">EncodedWord((charset,lang),encoding,encoded_word)</code>: An RFC-2047 style
encoded word: <code class="code">charset</code> is the name of the character set; <code class="code">lang</code> is
the language specifier (from RFC 2231) or ""; <code class="code">encoding</code> is either
"Q" or "B"; and <code class="code">encoded_word</code> is the word encoded in <code class="code">charset</code> and
<code class="code">encoding</code>. This kind of token is only generated when the option
<code class="code">Recognize_encoded_words</code> is in effect (if not, <code class="code">Atom</code> is generated
instead)., <code class="code">Atom s</code>: A string which is neither quoted not bracketed nor
written in RFC 2047 notation, and which is not a control or special
character, i.e. the "rest", <code class="code">End</code>: The end of the string</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_array.html#TYPEsarray">sarray</a> [<a href="Netmcore_array.html">Netmcore_array</a>]</td>
<td><div class="info">
<p>Arrays where the elements have type <code class="code">'e</code> and the header has
type <code class="code">'h</code></p>
</div>
</td></tr>
<tr><td><a href="Netmcore_matrix.html#TYPEsarray2">sarray2</a> [<a href="Netmcore_matrix.html">Netmcore_matrix</a>]</td>
<td><div class="info">
<p>Arrays where the elements have type <code class="code">'e</code> and the header has
type <code class="code">'h</code></p>
</div>
</td></tr>
<tr><td><a href="Netmcore_matrix.html#TYPEsarray2_descr">sarray2_descr</a> [<a href="Netmcore_matrix.html">Netmcore_matrix</a>]</td>
<td><div class="info">
<p>The marshallable descriptor of a shared matrix</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_array.html#TYPEsarray_descr">sarray_descr</a> [<a href="Netmcore_array.html">Netmcore_array</a>]</td>
<td><div class="info">
<p>The marshallable descriptor of a shared array</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sasl.html#TYPEsasl_mechanism">sasl_mechanism</a> [<a href="Netsys_sasl.html">Netsys_sasl</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_modes.Symmetric_cipher.html#TYPEsc">sc</a> [<a href="Netsys_crypto_modes.Symmetric_cipher.html">Netsys_crypto_modes.Symmetric_cipher</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_modes.Symmetric_cipher.html#TYPEsc_ctx">sc_ctx</a> [<a href="Netsys_crypto_modes.Symmetric_cipher.html">Netsys_crypto_modes.Symmetric_cipher</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.SYMMETRIC_CRYPTO.html#TYPEscipher">scipher</a> [<a href="Netsys_crypto_types.SYMMETRIC_CRYPTO.html">Netsys_crypto_types.SYMMETRIC_CRYPTO</a>]</td>
<td><div class="info">
<p>Describes a cipher</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.SYMMETRIC_CRYPTO.html#TYPEscipher_ctx">scipher_ctx</a> [<a href="Netsys_crypto_types.SYMMETRIC_CRYPTO.html">Netsys_crypto_types.SYMMETRIC_CRYPTO</a>]</td>
<td><div class="info">
<p>A cipher context stores processing data while encrypting or
decrypting data</p>
</div>
</td></tr>
<tr><td><a href="Netldap.html#TYPEscope">scope</a> [<a href="Netldap.html">Netldap</a>]</td>
<td><div class="info">
<p>The scope of the search: <code class="code">`Base</code>: only the base object, <code class="code">`One</code>: only the direct children of the base object, <code class="code">`Sub</code>: the base object and all direct and indirect children</p>
</div>
</td></tr>
<tr><td><a href="Netldap.html#TYPEsearch_result">search_result</a> [<a href="Netldap.html">Netldap</a>]</td>
<td><div class="info">
<p>Search results are either entries or references: <code class="code">`Entry(object_dn, [(attr_descr, values); ...])</code>, <code class="code">`Reference urls</code>: The entry is not present on this server but can
be looked up by following one of the <code class="code">urls</code></p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEsem_kind">sem_kind</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sem.html#TYPEsem_open_flag">sem_open_flag</a> [<a href="Netsys_sem.html">Netsys_sem</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEsem_open_flag">sem_open_flag</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sem.html#TYPEsem_wait_behavior">sem_wait_behavior</a> [<a href="Netsys_sem.html">Netsys_sem</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEsem_wait_behavior">sem_wait_behavior</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEsemaphore">semaphore</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_sem.html#TYPEsemaphore">semaphore</a> [<a href="Netmcore_sem.html">Netmcore_sem</a>]</td>
<td></td></tr>
<tr><td><a href="Netlog.Debug.html#TYPEserial">serial</a> [<a href="Netlog.Debug.html">Netlog.Debug</a>]</td>
<td><div class="info">
<p>A serial number for the optional tracking of ownership</p>
</div>
</td></tr>
<tr><td><a href="Rpc.html#TYPEserver_error">server_error</a> [<a href="Rpc.html">Rpc</a>]</td>
<td></td></tr>
<tr><td><a href="Netmech_scram.html#TYPEserver_error">server_error</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>Error codes of this protocol</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEserver_name">server_name</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sasl_types.SASL_MECHANISM.html#TYPEserver_session">server_session</a> [<a href="Netsys_sasl_types.SASL_MECHANISM.html">Netsys_sasl_types.SASL_MECHANISM</a>]</td>
<td></td></tr>
<tr><td><a href="Netmech_scram.html#TYPEserver_session">server_session</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>Session context for servers</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sasl_types.html#TYPEserver_state">server_state</a> [<a href="Netsys_sasl_types.html">Netsys_sasl_types</a>]</td>
<td><div class="info">
<p>The state of the server session: <code class="code">`Wait</code>: it is waited for the client response., <code class="code">`Emit</code>: a new server challenge can be emitted., <code class="code">`OK</code>: the authentication protocol succeeded, <code class="code">`Auth_error</code>: authentication error (it is unspecified which;
the string may be used for logging), <code class="code">`Restart session_id</code>: this state can be entered after getting
the first client response. It means that the saved session
<code class="code">session_id</code> may be restarted by calling
<code class="code">server_process_response_restart</code> with the client response.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_plex.html#TYPEservice_factory">service_factory</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td><div class="info">
<p>The service factory function is called when a <code class="code">service</code> configuration
section of a certain type needs to be read.</p>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEsession">session</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
<p>identifies a pair of a call and a reply</p>
</div>
</td></tr>
<tr><td><a href="Netsys_sasl.Server.html#TYPEsession">session</a> [<a href="Netsys_sasl.Server.html">Netsys_sasl.Server</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_sasl.Client.html#TYPEsession">session</a> [<a href="Netsys_sasl.Client.html">Netsys_sasl.Client</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#TYPEshm_descr">shm_descr</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<p>A shared memory descriptor refers to a shared memory object.</p>
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEshm_name">shm_name</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<p>A <code class="code">shm_name</code> is a name for a shared memory object.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEshm_open_flag">shm_open_flag</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#TYPEshm_table">shm_table</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#TYPEshm_type">shm_type</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEsig_action">sig_action</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netx509_pubkey.html#TYPEsign_alg">sign_alg</a> [<a href="Netx509_pubkey.html">Netx509_pubkey</a>]</td>
<td></td></tr>
<tr><td><a href="Nethtml.html#TYPEsimplified_dtd">simplified_dtd</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
<p>A <code class="code">simplified_dtd</code> is an associative list of tuples
<code class="code">(element_name, (element_class, constraint))</code>: For every <code class="code">element_name</code>
it is declared that it is a member of <code class="code">element_class</code>, and that
the sub elements must satisfy <code class="code">constraint</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEsize_flag">size_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_transport.html#TYPEsockaddr">sockaddr</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEsocket_state">socket_state</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>The state of a socket: <code class="code">`Enabled</code>: The controller allows containers to accept connections.
Note that this does not necessarily means that there such containers., <code class="code">`Disabled</code>: It is not allowed to accept new connections. The
socket is kept open, however., <code class="code">`Restarting b</code>: The containers are being restarted. The boolean
argument says whether the socket will be enabled after that., <code class="code">`Down</code>: The socket is down/closed</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines_compat.html#TYPEsockspec">sockspec</a> [<a href="Uq_engines_compat.html">Uq_engines_compat</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_client.html#TYPEsockspec">sockspec</a> [<a href="Uq_client.html">Uq_client</a>]</td>
<td><div class="info">
<p>Extended names for socket addresses.</p>
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEsockspec">sockspec</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
<p>Moved to <a href="Uq_client.html#TYPEsockspec"><code class="code">Uq_client.sockspec</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netsockaddr.html#TYPEsocksymbol">socksymbol</a> [<a href="Netsockaddr.html">Netsockaddr</a>]</td>
<td><div class="info">
<p>Symbolic socket names:</p>
</div>
</td></tr>
<tr><td><a href="Netmech_scram.html#TYPEspecific_keys">specific_keys</a> [<a href="Netmech_scram.html">Netmech_scram</a>]</td>
<td><div class="info">
<p>The specific keys to use</p>
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#TYPEsplit_result">split_result</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td></td></tr>
<tr><td><a href="Netstring_pcre.html#TYPEsplit_result">split_result</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_queue.html#TYPEsqueue">squeue</a> [<a href="Netmcore_queue.html">Netmcore_queue</a>]</td>
<td><div class="info">
<p>Queues where the elements have type <code class="code">'e</code> and the header has
type <code class="code">'h</code></p>
</div>
</td></tr>
<tr><td><a href="Netmcore_queue.html#TYPEsqueue_descr">squeue_descr</a> [<a href="Netmcore_queue.html">Netmcore_queue</a>]</td>
<td><div class="info">
<p>The marshallble descriptor of queues</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_ref.html#TYPEsref">sref</a> [<a href="Netmcore_ref.html">Netmcore_ref</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_ref.html#TYPEsref_descr">sref_descr</a> [<a href="Netmcore_ref.html">Netmcore_ref</a>]</td>
<td><div class="info">
<p>The marshallable descriptor of a reference</p>
</div>
</td></tr>
<tr><td><a href="Rpc_proxy.ManagedClient.html#TYPEstate">state</a> [<a href="Rpc_proxy.ManagedClient.html">Rpc_proxy.ManagedClient</a>]</td>
<td><div class="info">
<p>The state: <code class="code">`Down</code>: The initial state, and also reached after a socket
error, or after one of the shutdown functions is called.
Although <code class="code">`Down</code>, there might still some cleanup to do.
When RPC functions are called, the client is automatically
revived., <code class="code">`Connecting</code>: This state is used while the initial ping is
done. It does not reflect whether the client is really
TCP-connected. Without initial ping, this state cannot occur., <code class="code">`Up s</code>: The client is (so far known) up and can be used.
<code class="code">s</code> is the socket address of the local socket</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.TLS_PROVIDER.html#TYPEstate">state</a> [<a href="Netsys_crypto_types.TLS_PROVIDER.html">Netsys_crypto_types.TLS_PROVIDER</a>]</td>
<td><div class="info">
<p>The state of a session:</p>
</div>
</td></tr>
<tr><td><a href="Netpop.html#TYPEstate">state</a> [<a href="Netpop.html">Netpop</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client.html#TYPEstatus">status</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>Condensed status information of a HTTP call: <code class="code">`Unserved</code>: The call has not yet been finished, <code class="code">`HTTP_protocol_error e</code>: An error on HTTP level occurred. Corresponds
to the exception <code class="code">Http_protocol</code>., <code class="code">`Successful</code>: The call is successful, and the response code is between
200 and 299., <code class="code">`Redirection</code>: The call is successful, and the response code is
between 300 and 399., <code class="code">`Client_error</code>: The call failed with a response code between 400 and
499., <code class="code">`Server_error</code>: The call failed for any other reason.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEstatus">status</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEstatus_line">status_line</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
<p>= (code, phrase)</p>
</div>
</td></tr>
<tr><td><a href="Netgss_bindings.html#TYPEstatus_type_t">status_type_t</a> [<a href="Netgss_bindings.html">Netgss_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEstd_activation">std_activation</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>The way the <code class="code">Netcgi_types.cgi_activation</code> object is created.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEstd_activation_options">std_activation_options</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>These are options for <code class="code">`Std_activation</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEstore">store</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
<p>Specifies where to store the body of a mail message.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEstore">store</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
<p>Embedded in the single place of use.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEstore">store</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEstr_datum">str_datum</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Nettls_gnutls_bindings.html#TYPEstr_datum_p">str_datum_p</a> [<a href="Nettls_gnutls_bindings.html">Nettls_gnutls_bindings</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_io.html#TYPEstring_like">string_like</a> [<a href="Uq_io.html">Uq_io</a>]</td>
<td><div class="info">
<p>The user can pass data buffers that base either on bytes or on
bigarrays of char (memory).</p>
</div>
</td></tr>
<tr><td><a href="Netftp_client.html#TYPEstructure">structure</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>The client supports two structures: <code class="code">`File_structure</code>: Files are simply contiguous streams of bytes, <code class="code">`Record_structure</code>: Files are sequences of records. FTP does
not make a difference between variable and fixed length records.
It is not forbidden that the records are themselves structured
into lines, in fact it can happen that end-of-line markers are
contained in binary records. Operating systems that support
record-structured files often store text files in this format, i.e.
every line is stored in its own record, without end-of-line marker.
If record structure is selected by a STRU command, it is recommended
to use the classes <a href="Netftp_data_endpoint.out_record_channel-c.html"><code class="code">Netftp_data_endpoint.out_record_channel</code></a> and
<a href="Netftp_data_endpoint.in_record_channel-c.html"><code class="code">Netftp_data_endpoint.in_record_channel</code></a> for the local representation
of the files, otherwise the records may be incorrectly mapped
to the local conventions.
Page-structured files (i.e.</p>
</div>
</td></tr>
<tr><td><a href="Netx509.html#TYPEsubject_access_description_flag">subject_access_description_flag</a> [<a href="Netx509.html">Netx509</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEsuppl_status">suppl_status</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Further flags</p>
</div>
</td></tr>
<tr><td><a href="Rpc_auth_gssapi.html#TYPEsupport_level">support_level</a> [<a href="Rpc_auth_gssapi.html">Rpc_auth_gssapi</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEsupport_level">support_level</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td></td></tr>
<tr><td><a href="Netftp_client.html#TYPEsupport_level">support_level</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td></td></tr>
<tr><td><a href="Netfs.html#TYPEsymlink_flag">symlink_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.html#TYPEsymmetric_crypto">symmetric_crypto</a> [<a href="Netsys_crypto_types.html">Netsys_crypto_types</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_client.html#TYPEsynchronization">synchronization</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>This type determines whether to keep requests and responses
synchronized or not.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEsyslog_facility">syslog_facility</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td><div class="info">
<p>The facilities.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEsyslog_option">syslog_option</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td><div class="info">
<p>The syslog options: <code class="code">`Cons</code>: Fall back to console logging if syslog is unavailable, <code class="code">`Ndelay</code>: Open the connection immediately, <code class="code">`Odelay</code>: Open the connection at the first call <code class="code">syslog</code> (default), <code class="code">`Nowait</code>: Do not wait until it is ensured that the message is
sent, <code class="code">`Pid</code>: Log the PID with every message</p>
</div>
</td></tr>
<tr><td align="left"><div>T</div></td></tr>
<tr><td><a href="Rpc_server.html#TYPEt">t</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
<p>represents a server for an RPC program</p>
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#TYPEt">t</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
<p>represents a client for the Portmapper/RPCBIND daemon</p>
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_clnt.Make'PMAP.V4.html#TYPEt">t</a> [<a href="Rpc_portmapper_clnt.Make'PMAP.V4.html">Rpc_portmapper_clnt.Make'PMAP.V4</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.Make'PMAP.V3.html#TYPEt">t</a> [<a href="Rpc_portmapper_clnt.Make'PMAP.V3.html">Rpc_portmapper_clnt.Make'PMAP.V3</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.Make'PMAP.V2.html#TYPEt">t</a> [<a href="Rpc_portmapper_clnt.Make'PMAP.V2.html">Rpc_portmapper_clnt.Make'PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_simple_client.html#TYPEt">t</a> [<a href="Rpc_simple_client.html">Rpc_simple_client</a>]</td>
<td><div class="info">
<p>The type of simple clients</p>
</div>
</td></tr>
<tr><td><a href="Rpc_client.USE_CLIENT.html#TYPEt">t</a> [<a href="Rpc_client.USE_CLIENT.html">Rpc_client.USE_CLIENT</a>]</td>
<td><div class="info">
<p>The client type</p>
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#TYPEt">t</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
<p>The type of RPC clients</p>
</div>
</td></tr>
<tr><td><a href="Rpc_program.html#TYPEt">t</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td><div class="info">
<p>Type of RPC programs</p>
</div>
</td></tr>
<tr><td><a href="Netoid.html#TYPEt">t</a> [<a href="Netoid.html">Netoid</a>]</td>
<td></td></tr>
<tr><td><a href="Netpagebuffer.html#TYPEt">t</a> [<a href="Netpagebuffer.html">Netpagebuffer</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Cookie.html#TYPEt">t</a> [<a href="Nethttp.Cookie.html">Nethttp.Cookie</a>]</td>
<td><div class="info">
<p>Functions to manipulate cookies.</p>
</div>
</td></tr>
<tr><td><a href="Netdate.html#TYPEt">t</a> [<a href="Netdate.html">Netdate</a>]</td>
<td></td></tr>
<tr><td><a href="Netbuffer.html#TYPEt">t</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td></td></tr>
<tr><td><a href="Netaddress.html#TYPEt">t</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
<p>The union of <code class="code">mailbox</code> and <code class="code">group</code></p>
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#TYPEt">t</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm_hashtbl.html#TYPEt">t</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_mbox.MBOX.html#TYPEt">t</a> [<a href="Netplex_mbox.MBOX.html">Netplex_mbox.MBOX</a>]</td>
<td><div class="info">
<p>The type of messages</p>
</div>
</td></tr>
<tr><td><a href="Netplex_encap.TYPE.html#TYPEt">t</a> [<a href="Netplex_encap.TYPE.html">Netplex_encap.TYPE</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_encap.ENCAP.html#TYPEt">t</a> [<a href="Netplex_encap.ENCAP.html">Netplex_encap.ENCAP</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_sharedvar.VV_TYPE.html#TYPEt">t</a> [<a href="Netplex_sharedvar.VV_TYPE.html">Netplex_sharedvar.VV_TYPE</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_cenv.TYPE.html#TYPEt">t</a> [<a href="Netplex_cenv.TYPE.html">Netplex_cenv.TYPE</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_cenv.LEVER.html#TYPEt">t</a> [<a href="Netplex_cenv.LEVER.html">Netplex_cenv.LEVER</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_cenv.VAR_TYPE.html#TYPEt">t</a> [<a href="Netplex_cenv.VAR_TYPE.html">Netplex_cenv.VAR_TYPE</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_hashtbl.html#TYPEt">t</a> [<a href="Netmcore_hashtbl.html">Netmcore_hashtbl</a>]</td>
<td><div class="info">
<p>The type of hash tables from type <code class="code">'a</code> to type <code class="code">'b</code> and a
header of type <code class="code">'h</code></p>
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#TYPEt">t</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<p>Mutable cookie type.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#TYPEt">t</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_apache.Handler.html#TYPEt">t</a> [<a href="Netcgi_apache.Handler.html">Netcgi_apache.Handler</a>]</td>
<td><div class="info">
<p>The type of handler functions.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_apache.Apache.Request.html#TYPEt">t</a> [<a href="Netcgi_apache.Apache.Request.html">Netcgi_apache.Apache.Request</a>]</td>
<td><div class="info">
<p>Apache <code class="code">request_rec</code> structure.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_apache.Apache.Connection.html#TYPEt">t</a> [<a href="Netcgi_apache.Apache.Connection.html">Netcgi_apache.Apache.Connection</a>]</td>
<td><div class="info">
<p>Apache <code class="code">conn_rec</code> structure.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_apache.Apache.Server.html#TYPEt">t</a> [<a href="Netcgi_apache.Apache.Server.html">Netcgi_apache.Apache.Server</a>]</td>
<td><div class="info">
<p>Apache <code class="code">server_rec</code> structure.</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_apache.Apache.Table.html#TYPEt">t</a> [<a href="Netcgi_apache.Apache.Table.html">Netcgi_apache.Apache.Table</a>]</td>
<td><div class="info">
<p>Apache <code class="code">table</code> structure.</p>
</div>
</td></tr>
<tr><td><a href="Equeue.html#TYPEt">t</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
<p>This is the type of an event system with events of type 'a</p>
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_callit'arg">t_PMAP'V2'pmapproc_callit'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_callit'res">t_PMAP'V2'pmapproc_callit'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_dump'arg">t_PMAP'V2'pmapproc_dump'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_dump'res">t_PMAP'V2'pmapproc_dump'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_getport'arg">t_PMAP'V2'pmapproc_getport'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_getport'res">t_PMAP'V2'pmapproc_getport'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_null'arg">t_PMAP'V2'pmapproc_null'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_null'res">t_PMAP'V2'pmapproc_null'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_set'arg">t_PMAP'V2'pmapproc_set'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_set'res">t_PMAP'V2'pmapproc_set'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_unset'arg">t_PMAP'V2'pmapproc_unset'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_unset'res">t_PMAP'V2'pmapproc_unset'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_callit'arg">t_PMAP'V3'rpcbproc_callit'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_callit'res">t_PMAP'V3'rpcbproc_callit'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_dump'arg">t_PMAP'V3'rpcbproc_dump'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_dump'res">t_PMAP'V3'rpcbproc_dump'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_getaddr'arg">t_PMAP'V3'rpcbproc_getaddr'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_getaddr'res">t_PMAP'V3'rpcbproc_getaddr'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_gettime'arg">t_PMAP'V3'rpcbproc_gettime'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_gettime'res">t_PMAP'V3'rpcbproc_gettime'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_null'arg">t_PMAP'V3'rpcbproc_null'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_null'res">t_PMAP'V3'rpcbproc_null'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_set'arg">t_PMAP'V3'rpcbproc_set'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_set'res">t_PMAP'V3'rpcbproc_set'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_taddr2uaddr'arg">t_PMAP'V3'rpcbproc_taddr2uaddr'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_taddr2uaddr'res">t_PMAP'V3'rpcbproc_taddr2uaddr'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_uaddr2taddr'arg">t_PMAP'V3'rpcbproc_uaddr2taddr'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_uaddr2taddr'res">t_PMAP'V3'rpcbproc_uaddr2taddr'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_unset'arg">t_PMAP'V3'rpcbproc_unset'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V3'rpcbproc_unset'res">t_PMAP'V3'rpcbproc_unset'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_bcast'arg">t_PMAP'V4'rpcbproc_bcast'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_bcast'res">t_PMAP'V4'rpcbproc_bcast'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_dump'arg">t_PMAP'V4'rpcbproc_dump'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_dump'res">t_PMAP'V4'rpcbproc_dump'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getaddr'arg">t_PMAP'V4'rpcbproc_getaddr'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getaddr'res">t_PMAP'V4'rpcbproc_getaddr'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getaddrlist'arg">t_PMAP'V4'rpcbproc_getaddrlist'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getaddrlist'res">t_PMAP'V4'rpcbproc_getaddrlist'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getstat'arg">t_PMAP'V4'rpcbproc_getstat'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getstat'res">t_PMAP'V4'rpcbproc_getstat'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_gettime'arg">t_PMAP'V4'rpcbproc_gettime'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_gettime'res">t_PMAP'V4'rpcbproc_gettime'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getversaddr'arg">t_PMAP'V4'rpcbproc_getversaddr'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_getversaddr'res">t_PMAP'V4'rpcbproc_getversaddr'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_indirect'arg">t_PMAP'V4'rpcbproc_indirect'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_indirect'res">t_PMAP'V4'rpcbproc_indirect'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_null'arg">t_PMAP'V4'rpcbproc_null'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_null'res">t_PMAP'V4'rpcbproc_null'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_set'arg">t_PMAP'V4'rpcbproc_set'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_set'res">t_PMAP'V4'rpcbproc_set'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_taddr2uaddr'arg">t_PMAP'V4'rpcbproc_taddr2uaddr'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_taddr2uaddr'res">t_PMAP'V4'rpcbproc_taddr2uaddr'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_uaddr2taddr'arg">t_PMAP'V4'rpcbproc_uaddr2taddr'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_uaddr2taddr'res">t_PMAP'V4'rpcbproc_uaddr2taddr'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_unset'arg">t_PMAP'V4'rpcbproc_unset'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V4'rpcbproc_unset'res">t_PMAP'V4'rpcbproc_unset'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Netmcore_hashtbl.html#TYPEt_descr">t_descr</a> [<a href="Netmcore_hashtbl.html">Netmcore_hashtbl</a>]</td>
<td><div class="info">
<p>The marshallable descriptor of a shared hash table</p>
</div>
</td></tr>
<tr><td><a href="Netcgi_modtpl.html#TYPEtable_row">table_row</a> [<a href="Netcgi_modtpl.html">Netcgi_modtpl</a>]</td>
<td></td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEtag_class">tag_class</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_types.html#TYPEtbuffer">tbuffer</a> [<a href="Netsys_types.html">Netsys_types</a>]</td>
<td><div class="info">
<p>A tagged buffer.</p>
</div>
</td></tr>
<tr><td><a href="Nettelnet_client.html#TYPEtelnet_command">telnet_command</a> [<a href="Nettelnet_client.html">Nettelnet_client</a>]</td>
<td><div class="info">
<p>A <code class="code">telnet_command</code> is the interpretation of the octets in a Telnet
session, i.e.</p>
</div>
</td></tr>
<tr><td><a href="Nettelnet_client.html#TYPEtelnet_connector">telnet_connector</a> [<a href="Nettelnet_client.html">Nettelnet_client</a>]</td>
<td><div class="info">
<p>Connectors: <code class="code">Telnet_connect(host,port)</code>: The client connects to this port., <code class="code">Telnet_socket s</code>: The client uses an already connected socket.
Why <code class="code">Telnet_socket</code>? Telnet is a symmetrical protocol; client and servers
implement the same protocol features (the only difference is the
environment: a client is typically connected with a real terminal; a server
is connected with a pseudo terminal).</p>
</div>
</td></tr>
<tr><td><a href="Nettelnet_client.html#TYPEtelnet_negotiated_option">telnet_negotiated_option</a> [<a href="Nettelnet_client.html">Nettelnet_client</a>]</td>
<td><div class="info">
<p><code class="code">telnet_negotiated_option</code>: names for the most common options, and
the generic name <code class="code">Telnet_option</code> for other options.</p>
</div>
</td></tr>
<tr><td><a href="Nettelnet_client.html#TYPEtelnet_option_state">telnet_option_state</a> [<a href="Nettelnet_client.html">Nettelnet_client</a>]</td>
<td><div class="info">
<p>An option has one of three states: <code class="code">Not_negotiated</code>: There was no negotiation about the option. This means
that the option is turned off (but this client is allowed to reject
it explicitly), <code class="code">Accepted</code>: Both sides have accepted the option., <code class="code">Rejected</code>: One side has rejected the option. This also means that the
option is off, but the client refuses to send further acknoledgements
that the option is off (to avoid endless negotiation loops).</p>
</div>
</td></tr>
<tr><td><a href="Nettelnet_client.html#TYPEtelnet_options">telnet_options</a> [<a href="Nettelnet_client.html">Nettelnet_client</a>]</td>
<td><div class="info">
<p><code class="code">telnet_options</code>: modifies the behaviour of the client.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEtest_flag">test_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Netfs.html#TYPEtest_type">test_type</a> [<a href="Netfs.html">Netfs</a>]</td>
<td><div class="info">
<p>Tests: <code class="code">`N</code>: the file name exists, <code class="code">`E</code>: the file exists, <code class="code">`D</code>: the file exists and is a directory, <code class="code">`F</code>: the file exists and is regular, <code class="code">`H</code>: the file exists and is a symlink (possibly to a non-existing
target), <code class="code">`R</code>: the file exists and is readable, <code class="code">`W</code>: the file exists and is writable, <code class="code">`X</code>: the file exists and is executable, <code class="code">`S</code>: the file exists and is non-empty</p>
</div>
</td></tr>
<tr><td><a href="Netftp_data_endpoint.html#TYPEtext_data_repr">text_data_repr</a> [<a href="Netftp_data_endpoint.html">Netftp_data_endpoint</a>]</td>
<td><div class="info">
<p>Possible representation of text data:
<code class="code">`ASCII</code> means an ASCII-compatible encoding where the newline
character is represented by CR/LF.</p>
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEthread_sys_id">thread_sys_id</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
<p>A system-specific identifier of the thread/process</p>
</div>
</td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEtime">time</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td></td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEtime_subtype">time_subtype</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEtime_value">time_value</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_cenv.html#TYPEtimer">timer</a> [<a href="Netplex_cenv.html">Netplex_cenv</a>]</td>
<td><div class="info">
<p>A timer</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEtimer_expiration">timer_expiration</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEtimespec">timespec</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td><div class="info">
<p><code class="code">(t,t_nanos)</code>: Specifies a time by a base time <code class="code">t</code> to which the
nanoseconds <code class="code">t_nanos</code> are added.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.html#TYPEtls_config">tls_config</a> [<a href="Netsys_crypto_types.html">Netsys_crypto_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_crypto_types.html#TYPEtls_endpoint">tls_endpoint</a> [<a href="Netsys_crypto_types.html">Netsys_crypto_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netldap.html#TYPEtls_mode">tls_mode</a> [<a href="Netldap.html">Netldap</a>]</td>
<td><div class="info">
<p>Options: <code class="code">`Disabled</code>: do not negotiate TLS, <code class="code">`Immediate</code>: assume that the connection directly requires TLS, <code class="code">`StartTLS</code>: upgrade an initially unprotected connection to TLS, <code class="code">`StartTLS_if_possible</code>: upgrade an unprotected connection to TLS
if possible (i.e. if supported by both ends of the connection)</p>
</div>
</td></tr>
<tr><td><a href="Netsys_crypto_types.html#TYPEtls_provider">tls_provider</a> [<a href="Netsys_crypto_types.html">Netsys_crypto_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_gssapi.html#TYPEtoken">token</a> [<a href="Netsys_gssapi.html">Netsys_gssapi</a>]</td>
<td><div class="info">
<p>Authentication tokens.</p>
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEtransfer_coding">transfer_coding</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td></td></tr>
<tr><td><a href="Netftp_client.html#TYPEtransmission_mode">transmission_mode</a> [<a href="Netftp_client.html">Netftp_client</a>]</td>
<td><div class="info">
<p>The transmission mode selects how the data are encoded in the data
connection.</p>
</div>
</td></tr>
<tr><td><a href="Netftp_data_endpoint.html#TYPEtransmission_mode">transmission_mode</a> [<a href="Netftp_data_endpoint.html">Netftp_data_endpoint</a>]</td>
<td><div class="info">
<p>The transmission mode as described in RFC 959.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEtransport_layer_id">transport_layer_id</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
<p>see <a href="Nethttp_client.html#TYPEtransport_layer_id"><code class="code">Nethttp_client.transport_layer_id</code></a></p>
</div>
</td></tr>
<tr><td><a href="Nethttp_client.html#TYPEtransport_layer_id">transport_layer_id</a> [<a href="Nethttp_client.html">Nethttp_client</a>]</td>
<td><div class="info">
<p>The ID identifies a requirement for the transport
channel, especially whether plain HTTP is sufficient, or HTTPS
needs to be used, and if so, whether there are further requirements
for the TLS context.</p>
</div>
</td></tr>
<tr><td><a href="Nethttp_client_conncache.html#TYPEtransport_layer_id">transport_layer_id</a> [<a href="Nethttp_client_conncache.html">Nethttp_client_conncache</a>]</td>
<td><div class="info">
<p>Same as in <a href="Nethttp_client.html#TYPEtransport_layer_id"><code class="code">Nethttp_client.transport_layer_id</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netsys_types.html#TYPEtstring">tstring</a> [<a href="Netsys_types.html">Netsys_types</a>]</td>
<td><div class="info">
<p>A tagged string which is considered as immutable.</p>
</div>
</td></tr>
<tr><td><a href="Netstring_tstring.html#TYPEtstring_box">tstring_box</a> [<a href="Netstring_tstring.html">Netstring_tstring</a>]</td>
<td><div class="info">
<p>GADT for hiding the type parameter</p>
</div>
</td></tr>
<tr><td><a href="Netstring_tstring.html#TYPEtstring_kind">tstring_kind</a> [<a href="Netstring_tstring.html">Netstring_tstring</a>]</td>
<td><div class="info">
<p>GADT for encoding the string type (string/bytes/bigarray)</p>
</div>
</td></tr>
<tr><td><a href="Netstring_tstring.html#TYPEtstring_ops">tstring_ops</a> [<a href="Netstring_tstring.html">Netstring_tstring</a>]</td>
<td><div class="info">
<p>Operations to call on strings</p>
</div>
</td></tr>
<tr><td><a href="Netstring_tstring.html#TYPEtstring_ops_box">tstring_ops_box</a> [<a href="Netstring_tstring.html">Netstring_tstring</a>]</td>
<td><div class="info">
<p>GADT for hiding the type parameter</p>
</div>
</td></tr>
<tr><td><a href="Netstring_tstring.html#TYPEtstring_polybox">tstring_polybox</a> [<a href="Netstring_tstring.html">Netstring_tstring</a>]</td>
<td><div class="info">
<p>GADT for hiding the type parameter.</p>
</div>
</td></tr>
<tr><td><a href="Netasn1.Type_name.html#TYPEtype_name">type_name</a> [<a href="Netasn1.Type_name.html">Netasn1.Type_name</a>]</td>
<td></td></tr>
<tr><td align="left"><div>U</div></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEuaddr">uaddr</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Netnumber.html#TYPEuint4">uint4</a> [<a href="Netnumber.html">Netnumber</a>]</td>
<td><div class="info">
<p>32 bit unsigned integer</p>
</div>
</td></tr>
<tr><td><a href="Netnumber.html#TYPEuint8">uint8</a> [<a href="Netnumber.html">Netnumber</a>]</td>
<td><div class="info">
<p>64 bit unsigned integer</p>
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#TYPEunicode_lexbuf">unicode_lexbuf</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEuri_distributor">uri_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
<p>Describes that services are bound to URI prefixes.</p>
</div>
</td></tr>
<tr><td><a href="Neturl.html#TYPEurl">url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
<p>Values of type <code class="code">url</code> describe concrete URLs.</p>
</div>
</td></tr>
<tr><td><a href="Neturl.html#TYPEurl_syntax">url_syntax</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
<p>Values of type <code class="code">url_syntax</code> describe which components of an URL are
recognized, which are allowed (and optional), and which are required.</p>
</div>
</td></tr>
<tr><td><a href="Neturl.html#TYPEurl_syntax_option">url_syntax_option</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_auth_gssapi.html#TYPEuser_name_format">user_name_format</a> [<a href="Rpc_auth_gssapi.html">Rpc_auth_gssapi</a>]</td>
<td><div class="info">
<p>What to return as user name: <code class="code">`Exported_name</code>: the exported name in binary format (as described
in RFC 2078, section 3.2). This format can only be read back by
the <code class="code">gss_api</code> object generating the name., <code class="code">`Prefixed_name</code>: the display name in a text format
"<code class="code">{<oid>}<namestring></code>"., <code class="code">`Plain_name</code>: the string part of the display name</p>
</div>
</td></tr>
<tr><td><a href="Rpc_auth_sys.html#TYPEuser_name_format">user_name_format</a> [<a href="Rpc_auth_sys.html">Rpc_auth_sys</a>]</td>
<td><div class="info">
<p>How <code class="code">Rpc_server.get_user</code> returns the user as string: <code class="code">`Full</code>: The format includes all transmitted details:
<code class="code">"<uid>.<gid>.<gid1>.<gid2>...@<hostname>"</code>.
All user and group IDs are numeric. The first two numbers, <uid> and
<gid> are always present. The other numbers are the supplementary
group IDs and can be omitted. The <hostname> is the name passed in
the credentials., <code class="code">`UID</code>: The string is the numeric user ID, <code class="code">`Custom f</code>: The string is returned by the function <code class="code">f</code>. The
arguments are <code class="code">uid</code>, <code class="code">gid</code>, the array of the supplementary
group IDs and the hostname.</p>
</div>
</td></tr>
<tr><td><a href="Rpc_auth_gssapi.html#TYPEuser_name_interpretation">user_name_interpretation</a> [<a href="Rpc_auth_gssapi.html">Rpc_auth_gssapi</a>]</td>
<td></td></tr>
<tr><td align="left"><div>V</div></td></tr>
<tr><td><a href="Netglob.html#TYPEvalid_glob_expr">valid_glob_expr</a> [<a href="Netglob.html">Netglob</a>]</td>
<td><div class="info">
<p>A validated <code class="code">glob_expr</code></p>
</div>
</td></tr>
<tr><td><a href="Netasn1.Value.html#TYPEvalue">value</a> [<a href="Netasn1.Value.html">Netasn1.Value</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_sharedvar.VV_TYPE.html#TYPEvar">var</a> [<a href="Netplex_sharedvar.VV_TYPE.html">Netplex_sharedvar.VV_TYPE</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_modtpl.html#TYPEvar">var</a> [<a href="Netcgi_modtpl.html">Netcgi_modtpl</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_global.html#TYPEvariable">variable</a> [<a href="Netsys_global.html">Netsys_global</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_util.html#TYPEverbosity">verbosity</a> [<a href="Rpc_util.html">Rpc_util</a>]</td>
<td><div class="info">
<p>How verbose the RPC ftrace is: <code class="code">`Name_only</code>: For each RPC call only the name is logged, <code class="code">`Name_abbrev_args</code>: The name and the abbreviated argument list
are logged, <code class="code">`Name_full_args</code>: The name and the full argument list are logged</p>
</div>
</td></tr>
<tr><td><a href="Netplex_sharedvar.html#TYPEversioned_value">versioned_value</a> [<a href="Netplex_sharedvar.html">Netplex_sharedvar</a>]</td>
<td><div class="info">
<p>Cache for the current value</p>
</div>
</td></tr>
<tr><td align="left"><div>W</div></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_console_attr">w32_console_attr</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_console_info">w32_console_info</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_console_mode">w32_console_mode</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td><div class="info">
<p>See the msdn docs for GetConsoleMode for details</p>
</div>
</td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_event">w32_event</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_input_thread">w32_input_thread</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_object">w32_object</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_output_thread">w32_output_thread</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_pipe">w32_pipe</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td><div class="info">
<p>A pipe endpoint</p>
</div>
</td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_pipe_server">w32_pipe_server</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td><div class="info">
<p>A pipe server.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_win32.html#TYPEw32_process">w32_process</a> [<a href="Netsys_win32.html">Netsys_win32</a>]</td>
<td><div class="info">
<p>A handle to spawned processes</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_condition.html#TYPEwait_entry">wait_entry</a> [<a href="Netmcore_condition.html">Netmcore_condition</a>]</td>
<td><div class="info">
<p>Each process that wants to <code class="code">wait</code> needs a <code class="code">wait_entry</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_condition.html#TYPEwait_entry_e">wait_entry_e</a> [<a href="Netmcore_condition.html">Netmcore_condition</a>]</td>
<td><div class="info">
<p>A special kind of <code class="code">wait_entry</code> for intergration into an event
loop</p>
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#TYPEwait_id">wait_id</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
<p>A wait identifier is used to distinguish between several
timers, see type <code class="code">operation</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netmcore_condition.html#TYPEwait_set">wait_set</a> [<a href="Netmcore_condition.html">Netmcore_condition</a>]</td>
<td><div class="info">
<p>A set of <code class="code">wait_entry</code>, for easier management.</p>
</div>
</td></tr>
<tr><td><a href="Netsys_posix.html#TYPEwatched_subprocess">watched_subprocess</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys_posix.html#TYPEwd_spec">wd_spec</a> [<a href="Netsys_posix.html">Netsys_posix</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#TYPEwith_cursor_fun">with_cursor_fun</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<p>Helper type for <a href="Netconversion.html#VALwith_tstring_cursor"><code class="code">Netconversion.with_tstring_cursor</code></a></p>
</div>
</td></tr>
<tr><td><a href="Netstring_tstring.html#TYPEwith_fun">with_fun</a> [<a href="Netstring_tstring.html">Netstring_tstring</a>]</td>
<td><div class="info">
<p>A polymorphic function for strings</p>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEworkaround">workaround</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<p>The <code class="code">Work_around_</code> part has been dropped as it is clear at
the spot of use.</p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEwrite_common">write_common</a> [<a href="Netfs.html">Netfs</a>]</td>
<td><div class="info">
<p>The intersection of <code class="code">write_flag</code> and <code class="code">write_file_flag</code></p>
</div>
</td></tr>
<tr><td><a href="Netfs.html#TYPEwrite_file_flag">write_file_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_fs.html#TYPEwrite_file_flag">write_file_flag</a> [<a href="Nethttp_fs.html">Nethttp_fs</a>]</td>
<td></td></tr>
<tr><td><a href="Netfs.html#TYPEwrite_flag">write_flag</a> [<a href="Netfs.html">Netfs</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp_fs.html#TYPEwrite_flag">write_flag</a> [<a href="Nethttp_fs.html">Nethttp_fs</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#TYPEwrite_op">write_op</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td align="left"><div>X</div></td></tr>
<tr><td><a href="Netsys_crypto_types.PUBKEY_CRYPTO.html#TYPEx509_private_key">x509_private_key</a> [<a href="Netsys_crypto_types.PUBKEY_CRYPTO.html">Netsys_crypto_types.PUBKEY_CRYPTO</a>]</td>
<td><div class="info">
<p><code class="code">(format,data)</code>, using the formats: "RSA", "DSA", "DH", "EC".</p>
</div>
</td></tr>
<tr><td><a href="Netxdr.html#TYPExdr_type">xdr_type</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td><div class="info">
<p>This is the validated version of <code class="code">xdr_type_term</code>.</p>
</div>
</td></tr>
<tr><td><a href="Netxdr.html#TYPExdr_type_system">xdr_type_system</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td><div class="info">
<p>A validated type system.</p>
</div>
</td></tr>
<tr><td><a href="Netxdr.html#TYPExdr_type_term">xdr_type_term</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td></td></tr>
<tr><td><a href="Netxdr.html#TYPExdr_type_term_system">xdr_type_term_system</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td><div class="info">
<p>Bind names to types.</p>
</div>
</td></tr>
<tr><td><a href="Netxdr.html#TYPExdr_value">xdr_value</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td></td></tr>
<tr><td><a href="Netxdr.html#TYPExdr_value_version">xdr_value_version</a> [<a href="Netxdr.html">Netxdr</a>]</td>
<td><div class="info">
<p>Selects which version of <code class="code">xdr_value</code> is returned by <code class="code">unpack_xdr_value</code>.</p>
</div>
</td></tr>
<tr><td><a href="Nethtml.html#TYPExmap_value">xmap_value</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td></td></tr>
</table>
</body>
</html>
|