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 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087
|
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<link rel="Start" href="index.html">
<link title="Index of types" rel=Appendix href="index_types.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="Equeue" rel="Chapter" href="Equeue.html">
<link title="Unixqueue" rel="Chapter" href="Unixqueue.html">
<link title="Uq_engines" rel="Chapter" href="Uq_engines.html">
<link title="Uq_socks5" rel="Chapter" href="Uq_socks5.html">
<link title="Unixqueue_mt" rel="Chapter" href="Unixqueue_mt.html">
<link title="Equeue_intro" rel="Chapter" href="Equeue_intro.html">
<link title="Uq_ssl" rel="Chapter" href="Uq_ssl.html">
<link title="Uq_tcl" rel="Chapter" href="Uq_tcl.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="Netcgi_plex" rel="Chapter" href="Netcgi_plex.html">
<link title="Http_client" rel="Chapter" href="Http_client.html">
<link title="Telnet_client" rel="Chapter" href="Telnet_client.html">
<link title="Ftp_data_endpoint" rel="Chapter" href="Ftp_data_endpoint.html">
<link title="Ftp_client" rel="Chapter" href="Ftp_client.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_intro" rel="Chapter" href="Nethttpd_intro.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_intro" rel="Chapter" href="Netplex_intro.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="Netconversion" rel="Chapter" href="Netconversion.html">
<link title="Netchannels" rel="Chapter" href="Netchannels.html">
<link title="Netstream" rel="Chapter" href="Netstream.html">
<link title="Mimestring" rel="Chapter" href="Mimestring.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="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="Netstring_pcre" rel="Chapter" href="Netstring_pcre.html">
<link title="Netstring_mt" rel="Chapter" href="Netstring_mt.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="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="Netpop" rel="Chapter" href="Netpop.html">
<link title="Rpc_auth_dh" rel="Chapter" href="Rpc_auth_dh.html">
<link title="Rpc_key_service" rel="Chapter" href="Rpc_key_service.html">
<link title="Rpc_time" rel="Chapter" href="Rpc_time.html">
<link title="Rpc_auth_local" rel="Chapter" href="Rpc_auth_local.html">
<link title="Rtypes" rel="Chapter" href="Rtypes.html">
<link title="Xdr" rel="Chapter" href="Xdr.html">
<link title="Rpc" rel="Chapter" href="Rpc.html">
<link title="Rpc_program" rel="Chapter" href="Rpc_program.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_intro" rel="Chapter" href="Rpc_intro.html">
<link title="Rpc_mapping_ref" rel="Chapter" href="Rpc_mapping_ref.html">
<link title="Rpc_ssl" rel="Chapter" href="Rpc_ssl.html">
<link title="Rpc_xti_client" rel="Chapter" href="Rpc_xti_client.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_mt" rel="Chapter" href="Shell_mt.html">
<link title="Shell_intro" rel="Chapter" href="Shell_intro.html">
<link title="Netsmtp" rel="Chapter" href="Netsmtp.html"><title>Ocamlnet 2 Reference Manual : Index of values</title>
</head>
<body>
<center><h1>Index of values</h1></center>
<table>
<tr><td align="left"><br></td></tr>
<tr><td><a href="Shell.html#VAL(<&)">(<&)</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Same as <code class="code">assign</code>, but infix notation.
</div>
</td></tr>
<tr><td><a href="Shell.html#VAL(>&)">(>&)</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Same as <code class="code">assign</code>, but infix notation.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VAL_exit">_exit</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Exit the program immediately without running the atexit handlers.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_of_PMAP'V2'pmapproc_callit'arg">_of_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#VAL_of_PMAP'V2'pmapproc_callit'res">_of_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#VAL_of_PMAP'V2'pmapproc_dump'arg">_of_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#VAL_of_PMAP'V2'pmapproc_dump'res">_of_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#VAL_of_PMAP'V2'pmapproc_getport'arg">_of_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#VAL_of_PMAP'V2'pmapproc_getport'res">_of_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#VAL_of_PMAP'V2'pmapproc_null'arg">_of_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#VAL_of_PMAP'V2'pmapproc_null'res">_of_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#VAL_of_PMAP'V2'pmapproc_set'arg">_of_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#VAL_of_PMAP'V2'pmapproc_set'res">_of_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#VAL_of_PMAP'V2'pmapproc_unset'arg">_of_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#VAL_of_PMAP'V2'pmapproc_unset'res">_of_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#VAL_of_call_args">_of_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#VAL_of_call_result">_of_call_result</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_of_mapping">_of_mapping</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_of_pmaplist">_of_pmaplist</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_of_pmaplist_p">_of_pmaplist_p</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_to_PMAP'V2'pmapproc_callit'arg">_to_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#VAL_to_PMAP'V2'pmapproc_callit'res">_to_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#VAL_to_PMAP'V2'pmapproc_dump'arg">_to_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#VAL_to_PMAP'V2'pmapproc_dump'res">_to_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#VAL_to_PMAP'V2'pmapproc_getport'arg">_to_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#VAL_to_PMAP'V2'pmapproc_getport'res">_to_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#VAL_to_PMAP'V2'pmapproc_null'arg">_to_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#VAL_to_PMAP'V2'pmapproc_null'res">_to_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#VAL_to_PMAP'V2'pmapproc_set'arg">_to_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#VAL_to_PMAP'V2'pmapproc_set'res">_to_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#VAL_to_PMAP'V2'pmapproc_unset'arg">_to_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#VAL_to_PMAP'V2'pmapproc_unset'res">_to_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#VAL_to_call_args">_to_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#VAL_to_call_result">_to_call_result</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_to_mapping">_to_mapping</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_to_pmaplist">_to_pmaplist</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VAL_to_pmaplist_p">_to_pmaplist_p</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td align="left"><br>A</td></tr>
<tr><td><a href="Shell_sys.html#VALabandon_job">abandon_job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Tries to get rid of a running job.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALac_by_host">ac_by_host</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Configures host-based access control
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALadd">add</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">add tbl key value</code>: Adds the binding of <code class="code">key</code> to <code class="code">value</code> to the
table.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALadd">add</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">add tbl key value</code>: Adds the binding of <code class="code">key</code> to <code class="code">value</code> to the
table.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALadd_abort_action">add_abort_action</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
An abort action is added to the group.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALadd_buffer">add_buffer</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">add_buffer nb1 nb2</code>: Adds the contents of <code class="code">nb2</code> to the end of <code class="code">nb1</code>
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALadd_call">add_call</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
<code class="code">add_call client proc_name arg f</code>: add the call to the procedure <code class="code">name</code>
with argument <code class="code">arg</code> to the queue of unprocessed calls.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALadd_char">add_char</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">add_char nb c</code>: Adds a single char at the end of the buffer
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALadd_close_action">add_close_action</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
A close action is added for the file descriptor.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALadd_command">add_command</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Adds a command to a job.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALadd_consumer">add_consumer</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Adds a consumer to the job.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALadd_event">add_event</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Add an additional event.
</div>
</td></tr>
<tr><td><a href="Equeue.html#VALadd_event">add_event</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
Puts an event into the event queue of the system.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALadd_handler">add_handler</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Add an event handler that is associated to the given group.
</div>
</td></tr>
<tr><td><a href="Equeue.html#VALadd_handler">add_handler</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
Adds a handler to the list of handlers of the system.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALadd_inplace">add_inplace</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">add_inplace nb f</code>: Calls the function <code class="code">f</code> to add bytes to the
netbuffer <code class="code">nb</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALadd_pipeline">add_pipeline</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Adds a pipeline which redirects the output of the command <code class="code">src</code> to the
input of the command <code class="code">dest</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALadd_producer">add_producer</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Adds a producer to the job.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALadd_resource">add_resource</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Add a resource such that it is watched for conditions described
by the <code class="code">operation</code> for the period given by the <code class="code">float</code> number.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALadd_string">add_string</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">add_string nb s</code>: Adds a copy of the string <code class="code">s</code> to the logical end of
the netbuffer <code class="code">nb</code>.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALadd_sub_string">add_sub_string</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">add_sub_string nb s k n</code>: Adds the substring of <code class="code">s</code> starting at position
<code class="code">k</code> with length <code class="code">n</code> to the logical end of the netbuffer <code class="code">nb</code>.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALadd_substring">add_substring</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Alias for add_sub_string
</div>
</td></tr>
<tr><td><a href="Netcgi_plex.html#VALajp_processor">ajp_processor</a> [<a href="Netcgi_plex.html">Netcgi_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALapply_relative_url">apply_relative_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
<code class="code">apply_relative_url base rel</code>:
Interprets <code class="code">rel</code> relative to <code class="code">base</code> and returns the new URL.
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALare_compatible">are_compatible</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
are_compatible: currently not implemented
</div>
</td></tr>
<tr><td><a href="Netcgi_ajp.html#VALarg_parse">arg_parse</a> [<a href="Netcgi_ajp.html">Netcgi_ajp</a>]</td>
<td><div class="info">
<code class="code">arg_parse speclist anon_fun usage_msg</code> parses the command line
and return an associative list describing the content of the
property file (see <a href="Netcgi_ajp.html#VALprops_of_file"><code class="code">Netcgi_ajp.props_of_file</code></a>).
</div>
</td></tr>
<tr><td><a href="Netplex_main.html#VALargs">args</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td><div class="info">
<code class="code">let (opt_list, cmdline_cfg) = args()</code>:
Returns <code class="code">opt_list</code> for inclusion in the <code class="code">Arg.parse</code> option list.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALassign">assign</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Arranges a redirection such that writing to <code class="code">src</code> or reading from <code class="code">src</code>
will actually write to <code class="code">target</code> or read from <code class="code">target</code>
(i.e., the <code class="code">target</code> descriptor is duplicated and replaces
the <code class="code">src</code> descriptor just before the process is launched.)
</div>
</td></tr>
<tr><td><a href="Shell.html#VALassigned_pair">assigned_pair</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Returns the target and the source of the assignment as
pair of descriptors <code class="code">(target,src)</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALauth_none">auth_none</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
The authentication method "AUTH_NONE", i.e.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALauth_none">auth_none</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
The authentication method that does not perform authentication.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALauth_too_weak">auth_too_weak</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
The method that always rejects.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALauth_transport">auth_transport</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Authenticate by trusting the transport layer.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALavailable_input_encodings">available_input_encodings</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the list of all available encodings that can be used for
input strings.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALavailable_output_encodings">available_output_encodings</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the list of all available encodings that can be used for
output strings.
</div>
</td></tr>
<tr><td align="left"><br>B</td></tr>
<tr><td><a href="Nethttp.Header.html#VALbest_charset">best_charset</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the best charset for a header and a list of supported charsets.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALbest_encoding">best_encoding</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the best encoding for a header and a list of supported
encodings.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALbest_locking_method">best_locking_method</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Return the best locking method other than <code class="code">No_locking</code>
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALbest_media_type">best_media_type</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the best media type for a header and a list of supported types.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALbigarray">bigarray</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#VALbind">bind</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Binds the program as specified by the <code class="code">binding list</code>.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALblit">blit</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Compatibility name for <code class="code">blit_to_string</code>, now deprecated
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALblit_from_string">blit_from_string</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">blit_from_string src srcpos dest destpos len</code>: Copies the <code class="code">len</code> bytes
at position <code class="code">srcpos</code> from the string <code class="code">src</code> to the netbuffer <code class="code">dest</code> at
position <code class="code">destpos</code>.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALblit_to_string">blit_to_string</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">blit_to_string nb srcpos dest destpos len</code>: Copies the <code class="code">len</code> bytes at
position <code class="code">srcpos</code> from <code class="code">nb</code> to the string <code class="code">dest</code> at position <code class="code">destpos</code>.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALblocking_read">blocking_read</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
<code class="code">let p = blocking_read fd s pos len</code>: Reads exactly <code class="code">p</code> bytes from <code class="code">fd</code>
and stores them in <code class="code">s</code> starting at <code class="code">pos</code> where <code class="code">p</code> is the minimum
of <code class="code">len</code> and the number of bytes that are available on <code class="code">fd</code> until
the end of the file.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALblocking_socket_config">blocking_socket_config</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Configuration with <code class="code">non_blocking_connect</code> = false
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALbound_programs">bound_programs</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Returns the bound programs
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALbounded_full_split">bounded_full_split</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Splits into at most <code class="code">n</code> substrings, based on <code class="code">full_split</code>
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALbounded_full_split">bounded_full_split</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Splits into at most <code class="code">n</code> substrings, based on <code class="code">full_split</code>
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALbounded_split">bounded_split</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Splits into at most <code class="code">n</code> substrings, based on <code class="code">split</code>
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALbounded_split">bounded_split</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Splits into at most <code class="code">n</code> substrings, based on <code class="code">split</code>
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALbounded_split_delim">bounded_split_delim</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Splits into at most <code class="code">n</code> substrings, based on <code class="code">split_delim</code>
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALbounded_split_delim">bounded_split_delim</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Splits into at most <code class="code">n</code> substrings, based on <code class="code">split_delim</code>
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi.html#VALbuffered_transactional_optype">buffered_transactional_optype</a> [<a href="Netcgi1_compat.Netcgi.html">Netcgi1_compat.Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#VALbyte_order_mark">byte_order_mark</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the byte order mark that must occur at the beginning of
files to indicate whether "little endian" or "big endian" is used.
</div>
</td></tr>
<tr><td align="left"><br>C</td></tr>
<tr><td><a href="Shell.html#VALcall">call</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Starts the pipeline represented by the list of commands; i.e.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALcall">call</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Executes the command and waits until the process terminates
(synchronous execution a la <code class="code">system</code>, but no intermediate shell).
</div>
</td></tr>
<tr><td><a href="Rpc_simple_client.html#VALcall">call</a> [<a href="Rpc_simple_client.html">Rpc_simple_client</a>]</td>
<td><div class="info">
<code class="code">call simple_client procedure_name procedure_arg</code>:
Call the procedure with the given name and the given argument.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALcall_job">call_job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Starts the job (see <code class="code">run_job</code>) and waits until it finishes (see
<code class="code">finish_job</code>); i.e.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALcallit">callit</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
<code class="code">callit pm_client program_spec proc_name argument</code>:
This is an alternate way of calling a remote procedure.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALcgi_with_args">cgi_with_args</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">cgi_with_args (new cgi) env out op ?put_arg in_chan</code> constructs
a <a href="Netcgi.cgi.html"><code class="code">Netcgi.cgi</code></a> object.
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALchannel_logger">channel_logger</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td></td></tr>
<tr><td><a href="Telnet_client.html#VALchar_of_option">char_of_option</a> [<a href="Telnet_client.html">Telnet_client</a>]</td>
<td><div class="info">
Converts the option name to the character representing it on the
octet-stream level.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALchmod_shm">chmod_shm</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#VALchown_shm">chown_shm</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Set file permission bits, user and group ownership of the object
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALclear">clear</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Deletes all contents from the buffer.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALclear">clear</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Terminate the whole group.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_sys.html#VALclient_auth_method">client_auth_method</a> [<a href="Rpc_auth_sys.html">Rpc_auth_sys</a>]</td>
<td><div class="info">
Pass the result of this function to <code class="code">Rpc_client.set_auth_methods</code> to
configure client authentication.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_dh.html#VALclient_auth_method">client_auth_method</a> [<a href="Rpc_auth_dh.html">Rpc_auth_dh</a>]</td>
<td><div class="info">
Creates a new authentication method using AUTH_DH.
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#VALclient_socket">client_socket</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Returns the client socket contained in the <code class="code">connect_status</code>
</div>
</td></tr>
<tr><td><a href="Netcgi.Argument.html#VALclone">clone</a> [<a href="Netcgi.Argument.html">Netcgi.Argument</a>]</td>
<td></td></tr>
<tr><td><a href="Netulex.ULB.html#VALclose">close</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Sets <code class="code">ulb_eof</code> of the <code class="code">unicode_lexbuf</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#VALclose">close</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Http_client.html#VALclose_connection_cache">close_connection_cache</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
Closes all descriptors known to the cache
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALclose_shm">close_shm</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Closes the object.
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#VALclosed">closed</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Shell.html#VALcmd">cmd</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
The same as <code class="code">command</code> but with a slightly different interface: Use
<pre><code class="code"> cmd "ls" [ "/dir/file" ] </code></pre>
instead of
<pre><code class="code"> command ~arguments:[|"/dir/file"|] "ls" </code></pre>
</div>
</td></tr>
<tr><td><a href="Shell.html#VALcommand">command</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a command descriptor, to be used in <code class="code">call</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALcommand">command</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Creates a command from the passed arguments:
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALcommand">command</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Execute the command
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALcommand_of_process">command_of_process</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the command that is now running as the process
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALcomment">comment</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
Returns the comment associated to the cookie or <code class="code">""</code> if it
does not exists.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALcomment_url">comment_url</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
Returns the comment URL associated to the cookie or <code class="code">""</code> if it
does not exists.
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#VALcommit">commit</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALcommon_url_syntax">common_url_syntax</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Syntax descriptions for common URL schemes.
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALcompose">compose</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
Composes a mail message with a main text, and optionally
a number of attachments.
</div>
</td></tr>
<tr><td><a href="Netplex_main.html#VALconfig_filename">config_filename</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td><div class="info">
Returns the filename of the configuration file
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALconfigure">configure</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
<code class="code">configure client retransmissions timeout</code>:
sets the number of retransmissions and the timeout for the next calls.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALconfigure_job_handlers">configure_job_handlers</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Configures signal and at_exit handlers for jobs: The keyboard signals SIGINT and SIGQUIT are forwarded to all jobs
which are running in the background (and thus are not
automatically notified) and want to get such signals (<code class="code">forward_signals</code>).
After the signals have been forwarded, the previous signal action
is performed., The signals SIGTERM and SIGHUP are (if the handler is installed)
forwarded to all dependent processes (regardless whether they are
running in their own Unix process group or not, and regardless of
<code class="code">forward_signals</code>).
After the signals have been forwarded, the previous signal action
is performed., The <code class="code">at_exit</code> handler sends a SIGTERM to all dependent processes, too., the SIGCHLD handler calls <code class="code">watch_for_zombies</code>.
After this function is called, the previous signal action
is performed; however if the previous action was <code class="code">Signal_ignore</code>
this is incorrectly interpreted as empty action (zombies are not
avoided), The handler for SIGPIPE does nothing; note that a previous action
is overwritten (the parameter is called <code class="code">set_sigpipe</code> to stress this)
Dependent processes are: For jobs with mode = <code class="code">Foreground</code> or <code class="code">Background</code>: the processes
of the corresponding Unix process group, For jobs with mode = <code class="code">Same_as_caller</code>: the actually started
children processes
Note that if an uncaught exception leads to program termination,
this situation will not be detected; any running jobs will
not be terminated (sorry, this cannot be fixed).
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#VALconnect">connect</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#VALconnector">connector</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
This engine connects to a socket as specified by the <code class="code">connect_address</code>,
optionally using the <code class="code">proxy</code>, and changes to the state
<code class="code">`Done(status)</code> when the connection is established.
</div>
</td></tr>
<tr><td><a href="Netplex_workload.html#VALconstant_workload_manager_factory">constant_workload_manager_factory</a> [<a href="Netplex_workload.html">Netplex_workload</a>]</td>
<td><div class="info">
Reads a workload_manager section like
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALcontents">contents</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Returns the contents of the buffer as fresh string.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALconvert">convert</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Converts the string from <code class="code">in_enc</code> to <code class="code">out_enc</code>, and returns it.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALcopy_command">copy_command</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns a duplicate of the command description
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcopy_cursor">copy_cursor</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Copies the cursor.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALcopy_env">copy_env</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Copies an environment
</div>
</td></tr>
<tr><td><a href="Rpc_xti_client.html#VALcots_connect">cots_connect</a> [<a href="Rpc_xti_client.html">Rpc_xti_client</a>]</td>
<td><div class="info">
The first parameter is the name of the TLI/XTI device.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALcreate">create</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Deprecated creation of an RPC server.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALcreate">create</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
Connects to the portmapper service listening on the given connector.
</div>
</td></tr>
<tr><td><a href="Rpc_simple_client.html#VALcreate">create</a> [<a href="Rpc_simple_client.html">Rpc_simple_client</a>]</td>
<td><div class="info">
Create a simple client that connects with the given server using
the given protocol type.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALcreate">create</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Opens a connection to the server specified by the <code class="code">connector</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_program.html#VALcreate">create</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td><div class="info">
<code class="code">create program_nr version_nr type_system procedures</code>
</div>
</td></tr>
<tr><td><a href="Rpc_key_service.html#VALcreate">create</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td><div class="info">
Connects to the keyserv daemon.
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALcreate">create</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Convert the time (seconds since the epoch) to a date/time record
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALcreate">create</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Creates a netbuffer which allocates initially this number of bytes.
</div>
</td></tr>
<tr><td><a href="Netplex_main.html#VALcreate">create</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td><div class="info">
Creates the command-line configuration object
</div>
</td></tr>
<tr><td><a href="Equeue.html#VALcreate">create</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
Creates a new event system that has an event source, but is
otherwise empty.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALcreate2">create2</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Creates a server according to the <code class="code">mode2</code> argument.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALcreate2">create2</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Creates a new style client.
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALcreate_address_list_tokens">create_address_list_tokens</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
Returns the list of <code class="code">s_token</code>s representing email addresses as
structured value.
</div>
</td></tr>
<tr><td><a href="Netplex_container.html#VALcreate_admin_container">create_admin_container</a> [<a href="Netplex_container.html">Netplex_container</a>]</td>
<td><div class="info">
<b>Internally used.</b>
</div>
</td></tr>
<tr><td><a href="Http_client.html#VALcreate_aggressive_cache">create_aggressive_cache</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
This type of cache tries to keep connections as long open as
possible.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALcreate_boundary">create_boundary</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Creates a boundary string that can be used to separate multipart
messages.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALcreate_client">create_client</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALcreate_client2">create_client2</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_workload.html#VALcreate_constant_workload_manager">create_constant_workload_manager</a> [<a href="Netplex_workload.html">Netplex_workload</a>]</td>
<td><div class="info">
A constant number of threads is created (the int argument).
</div>
</td></tr>
<tr><td><a href="Netplex_container.html#VALcreate_container">create_container</a> [<a href="Netplex_container.html">Netplex_container</a>]</td>
<td><div class="info">
The container for normal services
</div>
</td></tr>
<tr><td><a href="Netplex_controller.html#VALcreate_controller">create_controller</a> [<a href="Netplex_controller.html">Netplex_controller</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#VALcreate_cursor">create_cursor</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Creates a new cursor for the passed string and the passed encoding.
</div>
</td></tr>
<tr><td><a href="Netplex_workload.html#VALcreate_dynamic_workload_manager">create_dynamic_workload_manager</a> [<a href="Netplex_workload.html">Netplex_workload</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#VALcreate_env">create_env</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Creates an empty environment
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALcreate_inet">create_inet</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
Connects to a portmapper listening on an Internet port.
</div>
</td></tr>
<tr><td><a href="Netchannels.html#VALcreate_input_netbuffer">create_input_netbuffer</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
Creates an input channel and a shutdown function for a netbuffer.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALcreate_mime_scanner">create_mime_scanner</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Creates a new <code class="code">mime_scanner</code> scanning the passed string.
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#VALcreate_multiplex_controller_for_connected_socket">create_multiplex_controller_for_connected_socket</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Creates a multiplex controller for a bidirectional socket (e.g.
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#VALcreate_multiplex_controller_for_datagram_socket">create_multiplex_controller_for_datagram_socket</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Creates a multiplex controller for datagram sockets (e.g.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALcreate_portmapped_client">create_portmapped_client</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Http_client.html#VALcreate_restrictive_cache">create_restrictive_cache</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
A restrictive cache closes connections as soon as there are no
pending requests.
</div>
</td></tr>
<tr><td><a href="Netplex_sockserv.html#VALcreate_socket_service">create_socket_service</a> [<a href="Netplex_sockserv.html">Netplex_sockserv</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_ssl.html#VALcreate_ssl_multiplex_controller">create_ssl_multiplex_controller</a> [<a href="Uq_ssl.html">Uq_ssl</a>]</td>
<td><div class="info">
Creates a multiplex controller for an SSL socket.
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALcreate_text_tokens">create_text_tokens</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
Returns the list of <code class="code">s_token</code>s representing an informal text
as structured value.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALcreate_unique_shm">create_unique_shm</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Create a shared memory object under a name that is derived
from the passed <code class="code">shm_name</code>.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALcreate_unix_event_system">create_unix_event_system</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Create a new, empty event system
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALctermid">ctermid</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Returns the name of the controlling tty of the current process
as pathname to a device file
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALcurrent_env">current_env</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the environment of the current process as abstract environment
value
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_at_end">cursor_at_end</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns whether the cursor is positioned past the last character.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_blit">cursor_blit</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<code class="code">cursor_blit cs ua pos len</code>: Copies at most <code class="code">len</code> characters as code
points from
the cursor position and the following positions to the array <code class="code">ua</code>
at index <code class="code">pos</code>.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_blit_maxlen">cursor_blit_maxlen</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the maximum number of characters <code class="code">cursor_blit</code> can copy
at the current cursor position.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_blit_positions">cursor_blit_positions</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Works like <code class="code">cursor_blit</code>, but copies the byte positions of the
characters into <code class="code">ua</code> instead of the code points.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_byte_length">cursor_byte_length</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the byte length of the representation of the character at the
cursor.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_char_count">cursor_char_count</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the character count of the cursor.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_encoding">cursor_encoding</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the encoding of the cursor.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_initial_rel_pos">cursor_initial_rel_pos</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the initial relative byte position of the cursor
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_pos">cursor_pos</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the byte position of the cursor, i.e.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_range">cursor_range</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the valid range of the cursor as pair <code class="code">(range_pos, range_len)</code>
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALcursor_target">cursor_target</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the string of the cursor
</div>
</td></tr>
<tr><td align="left"><br>D</td></tr>
<tr><td><a href="Uq_engines.html#VALdatagram_provider">datagram_provider</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
This engine creates a datagram socket as demanded by the <code class="code">datagram_type</code>,
optionally using <code class="code">proxy</code> for sending and receiving datagrams.
</div>
</td></tr>
<tr><td><a href="Rpc_transport.html#VALdatagram_rpc_multiplex_controller">datagram_rpc_multiplex_controller</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td><div class="info">
The multiplex controller for datagrams
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALdebug_containers">debug_containers</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td><div class="info">
If set to true, the containers output when they are started and
stopped, and when new connections are accepted.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALdebug_internals_log">debug_internals_log</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Unixqueue.html#VALdebug_log">debug_log</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Outputs a message in the debug log (when enabled).
</div>
</td></tr>
<tr><td><a href="Rpc_netplex.html#VALdebug_rpc_internals">debug_rpc_internals</a> [<a href="Rpc_netplex.html">Rpc_netplex</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_netplex.html#VALdebug_rpc_service">debug_rpc_service</a> [<a href="Rpc_netplex.html">Rpc_netplex</a>]</td>
<td><div class="info">
These variables control debugging of <code class="code">Rpc_server</code>.
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALdebug_scheduling">debug_scheduling</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td><div class="info">
If set to true, the controller and a few other components output
a lot of debug messages, mostly scheduling-related.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALdebug_service_log">debug_service_log</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
These are the two debug logging facilities.
</div>
</td></tr>
<tr><td><a href="Nethtml.html#VALdecode">decode</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
Converts entities <code class="code">&name;</code> and <code class="code">&#num;</code> into the corresponding
characters.
</div>
</td></tr>
<tr><td><a href="Netencoding.Html.html#VALdecode">decode</a> [<a href="Netencoding.Html.html">Netencoding.Html</a>]</td>
<td><div class="info">
The input string is recoded from <code class="code">in_enc</code> to <code class="code">out_enc</code>, and HTML
entities (<code class="code">&name;</code> or <code class="code">&#num;</code>) are resolved.
</div>
</td></tr>
<tr><td><a href="Netencoding.Url.html#VALdecode">decode</a> [<a href="Netencoding.Url.html">Netencoding.Url</a>]</td>
<td><div class="info">
Option <code class="code">plus</code>: Whether '+' is converted to space.
</div>
</td></tr>
<tr><td><a href="Netencoding.Q.html#VALdecode">decode</a> [<a href="Netencoding.Q.html">Netencoding.Q</a>]</td>
<td></td></tr>
<tr><td><a href="Netencoding.QuotedPrintable.html#VALdecode">decode</a> [<a href="Netencoding.QuotedPrintable.html">Netencoding.QuotedPrintable</a>]</td>
<td><div class="info">
Decodes the string and returns it.
</div>
</td></tr>
<tr><td><a href="Netencoding.Base64.html#VALdecode">decode</a> [<a href="Netencoding.Base64.html">Netencoding.Base64</a>]</td>
<td><div class="info">
Decodes the given string argument.
</div>
</td></tr>
<tr><td><a href="Netmime.html#VALdecode_mime_body">decode_mime_body</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
<code class="code">let ch' = decode_mime_body hdr ch</code>:
According to the value of the Content-transfer-encoding header field
in <code class="code">hdr</code> the encoded MIME body written to <code class="code">ch'</code> is decoded and transferred
to <code class="code">ch</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALdecode_query">decode_query</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Splits the URI into a "script name" and a "query string"
</div>
</td></tr>
<tr><td><a href="Netencoding.Html.html#VALdecode_to_latin1">decode_to_latin1</a> [<a href="Netencoding.Html.html">Netencoding.Html</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_key_service.html#VALdecrypt">decrypt</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td><div class="info">
This function is used if this program is a server and wants to check
the identity of a contacting client.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#VALdefault_config">default_config</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#VALdefault_config">default_config</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
The default configuration is: <code class="code">tmp_directory</code>: one of /var/tmp, /tmp, C:\temp, current directory., <code class="code">tmp_prefix</code>: "netcgi", <code class="code">permitted_http_methods</code>: <code class="code">`GET</code>, <code class="code">`HEAD</code>, <code class="code">`POST</code>., <code class="code">permitted_input_content_types</code>: <code class="code">"multipart/form-data"</code>,
<code class="code">"application/x-www-form-urlencoded"</code>., <code class="code">input_content_length_limit</code>: <code class="code">maxint</code> (i.e., no limit)., <code class="code">workarounds</code>: all of them., <code class="code">default_exn_handler</code>: set to <code class="code">true</code>.
To create a custom configuration, it is recommended to use this syntax:
<pre><code class="code"> let custom_config = { default_config with tmp_prefix = "my_prefix" }
</code></pre>
(This syntax is also robust w.r.t.
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#VALdefault_connect_options">default_connect_options</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Returns the default options
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALdefault_host">default_host</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Creates a <code class="code">host</code> record that matches any request.
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#VALdefault_listen_options">default_listen_options</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Returns the default options
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALdefault_socket_config">default_socket_config</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_client.html#VALdefault_socket_config">default_socket_config</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Default configuration with <code class="code">non_blocking_connect</code> = true
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALdefault_url">default_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Adds missing components and returns the modified URL.
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#VALdefault_value">default_value</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td><div class="info">
Returns the default value
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALdelete">delete</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Deletes the number of characters from <code class="code">unicode_lexbuf</code>.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALdelete">delete</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">delete nb k n</code>: Deletes the <code class="code">n</code> bytes at position <code class="code">k</code> of netbuffer
<code class="code">nb</code> in-place.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALdest_fp4">dest_fp4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALdest_fp8">dest_fp8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALdest_int4">dest_int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALdest_int8">dest_int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALdest_uint4">dest_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALdest_uint8">dest_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
<code class="code">dest_</code><t> destroy integer values and returns the corresponding char
tuples.
</div>
</td></tr>
<tr><td><a href="Netencoding.Url.html#VALdest_url_encoded_parameters">dest_url_encoded_parameters</a> [<a href="Netencoding.Url.html">Netencoding.Url</a>]</td>
<td><div class="info">
The argument is the URL-encoded parameter string.
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_array">dest_xv_array</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_double">dest_xv_double</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_enum">dest_xv_enum</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_enum_fast">dest_xv_enum_fast</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_float">dest_xv_float</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_hyper">dest_xv_hyper</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_int">dest_xv_int</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_opaque">dest_xv_opaque</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_string">dest_xv_string</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_struct">dest_xv_struct</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_struct_fast">dest_xv_struct_fast</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_uhyper">dest_xv_uhyper</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_uint">dest_xv_uint</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_union_over_enum">dest_xv_union_over_enum</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_union_over_enum_fast">dest_xv_union_over_enum_fast</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_union_over_int">dest_xv_union_over_int</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_union_over_uint">dest_xv_union_over_uint</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALdest_xv_void">dest_xv_void</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALdomain">domain</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
The domain of the cookie, if set.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALdomain">domain</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys.html#VALdomain_of_inet_addr">domain_of_inet_addr</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Returns the socket domain of Internet addresses, i.e.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_dh.html#VALdomainname">domainname</a> [<a href="Rpc_auth_dh.html">Rpc_auth_dh</a>]</td>
<td><div class="info">
Returns the NIS domain name.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALdump">dump</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
returns the list of known mappings.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALdump">dump</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Ftp_client.Action.html#VALdyn_command">dyn_command</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Execute the computed command
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALdynamic_service">dynamic_service</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Configures the dynamic service.
</div>
</td></tr>
<tr><td><a href="Netplex_workload.html#VALdynamic_workload_manager_factory">dynamic_workload_manager_factory</a> [<a href="Netplex_workload.html">Netplex_workload</a>]</td>
<td><div class="info">
Reads a workload_manager section like
</div>
</td></tr>
<tr><td align="left"><br>E</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALempty">empty</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Do nothing
</div>
</td></tr>
<tr><td><a href="Nethtml.html#VALencode">encode</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
Converts problematic characters to their corresponding
entities.
</div>
</td></tr>
<tr><td><a href="Netencoding.Html.html#VALencode">encode</a> [<a href="Netencoding.Html.html">Netencoding.Html</a>]</td>
<td><div class="info">
The input string that is encoded as <code class="code">in_enc</code> is recoded to
<code class="code">out_enc</code>, and the following characters are encoded as HTML
entity (<code class="code">&name;</code> or <code class="code">&#num;</code>): The ASCII characters contained in <code class="code">unsafe_chars</code>, The characters that cannot be represented in <code class="code">out_enc</code>. By
default (<code class="code">out_enc=`Enc_usascii</code>), only ASCII characters can be
represented, and thus all code points >= 128 are encoded as
HTML entities. If you pass <code class="code">out_enc=`Enc_utf8</code>, all characters
can be represented.
For example, the string <code class="code">"(a<b) & (c>d)"</code> is encoded as
<code class="code">"(a&lt;b) &amp; (c&gt;d)"</code>.
</div>
</td></tr>
<tr><td><a href="Netencoding.Url.html#VALencode">encode</a> [<a href="Netencoding.Url.html">Netencoding.Url</a>]</td>
<td><div class="info">
Option <code class="code">plus</code>: Whether spaces are converted to '+'.
</div>
</td></tr>
<tr><td><a href="Netencoding.Q.html#VALencode">encode</a> [<a href="Netencoding.Q.html">Netencoding.Q</a>]</td>
<td><div class="info">
Note:
All characters except alphanumeric characters are protected by
hex tokens.
</div>
</td></tr>
<tr><td><a href="Netencoding.QuotedPrintable.html#VALencode">encode</a> [<a href="Netencoding.QuotedPrintable.html">Netencoding.QuotedPrintable</a>]</td>
<td><div class="info">
Encodes the string and returns it.
</div>
</td></tr>
<tr><td><a href="Netencoding.Base64.html#VALencode">encode</a> [<a href="Netencoding.Base64.html">Netencoding.Base64</a>]</td>
<td><div class="info">
Compute the "base 64" encoding of the given string argument.
</div>
</td></tr>
<tr><td><a href="Netencoding.Html.html#VALencode_from_latin1">encode_from_latin1</a> [<a href="Netencoding.Html.html">Netencoding.Html</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#VALencode_mime_body">encode_mime_body</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
<code class="code">let ch' = encode_mime_body hdr ch</code>:
According to the value of the Content-transfer-encoding header field
in <code class="code">hdr</code> the unencoded MIME body written to ch' is encoded and transferred
to ch.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALencoding_of_string">encoding_of_string</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the encoding of the name of the encoding.
</div>
</td></tr>
<tr><td><a href="Rpc_key_service.html#VALencrypt">encrypt</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td><div class="info">
This function is used if this program is a client and wants to contact
a server.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALensure_absolute_url">ensure_absolute_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
If the anonymous URL is absolute, it is just returned as result of
this function.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALevent_system">event_system</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Returns the unixqueue to which the client is attached
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALexecute">execute</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Executes the action for the given client PI.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALexists_resource">exists_resource</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Find out if a specific resource already exists (or better: is
already watched by an operation).
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALexn_handler_default">exn_handler_default</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">exn_handler_default env ~exn_handler ~finally run_cgi</code> will
basically execute <code class="code">exn_handler env run_cgi</code>.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALexn_log">exn_log</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Exceptions log: In event-based programming, it is sometimes not
possible to handle exceptions appropriately.
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALexpanded_xdr_type">expanded_xdr_type</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALexpanded_xdr_type_term">expanded_xdr_type_term</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Ftp_client.Action.html#VALexpect">expect</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
If the execution of the action yields the passed state, continue
normally, otherwise treat the situation as error
</div>
</td></tr>
<tr><td><a href="Netplex_controller.html#VALextract_config">extract_config</a> [<a href="Netplex_controller.html">Netplex_controller</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALextract_url_scheme">extract_url_scheme</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Returns the URL scheme from the string representation of an URL.
</div>
</td></tr>
<tr><td align="left"><br>F</td></tr>
<tr><td><a href="Netcgi_plex.html#VALfactory">factory</a> [<a href="Netcgi_plex.html">Netcgi_plex</a>]</td>
<td><div class="info">
Reads a Netplex configuration section like
<pre><code class="code"> processor {
type = "netcgi"; (* or the overridden [name] *)
timeout = 15; (* optional *)
mount_dir = "/url/path"; (* optional *)
mount_at = "/url/path"; (* optional alternative to mount_dir *)
}
</code></pre>
</div>
</td></tr>
<tr><td><a href="Netcgi_plex.html#VALfcgi_processor">fcgi_processor</a> [<a href="Netcgi_plex.html">Netcgi_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys.html#VALfile_descr_of_int">file_descr_of_int</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Make a file descriptor from an integer
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALfile_logger">file_logger</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td><div class="info">
Writes messages to this file
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALfile_logger_factory">file_logger_factory</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td><div class="info">
Reads a logging section like
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALfile_service">file_service</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Configures a file service
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALfile_translator">file_translator</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Translates an URI path to a file name.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALfile_url_of_local_path">file_url_of_local_path</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Generates a URL with "file" scheme from the passed path name.
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALfind">find</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">find tbl key</code>: Finds the current binding of <code class="code">key</code> in <code class="code">tbl</code> or
raises <code class="code">Not_found</code> if no such binding exists.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALfind">find</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">find tbl key</code>: Finds the current binding of <code class="code">key</code> in <code class="code">tbl</code> or
raises <code class="code">Not_found</code> if no such binding exists.
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALfind_all">find_all</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">find_all tbl key</code> returns the list of all data
associated with <code class="code">key</code> in <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALfind_all">find_all</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">find_all tbl key</code> returns the list of all data
associated with <code class="code">key</code> in <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Netaux.KMP.html#VALfind_pattern">find_pattern</a> [<a href="Netaux.KMP.html">Netaux.KMP</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#VALfinish_job">finish_job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Waits until all of the processes of the job have terminated.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALfirst_chars">first_chars</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Same as <code class="code">string_before</code>
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALfirst_chars">first_chars</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Same as <code class="code">string_before</code>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALfix_MSIE_Content_type_bug">fix_MSIE_Content_type_bug</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">fix_MSIE_Content_type_bug ct</code> transforms the content-type
string <code class="code">ct</code> to fix the MSIE Content-Type bug.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALfixup_url_string">fixup_url_string</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Escapes some unsafe or "unwise" characters that are commonly used
in URL strings: space, < > { } [ ] ^ \\ | and double quotes.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALfloat_of_fp4">float_of_fp4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALfloat_of_fp8">float_of_fp8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALfold">fold</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">fold f tbl init</code> computes
<code class="code">(f kN dN ... (f k1 d1 init)...)</code>,
where <code class="code">k1 ... kN</code> are the keys of all bindings in <code class="code">tbl</code>,
and <code class="code">d1 ... dN</code> are the associated values.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALfold">fold</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">fold f tbl init</code> computes
<code class="code">(f kN dN ... (f k1 d1 init)...)</code>,
where <code class="code">k1 ... kN</code> are the keys of all bindings in <code class="code">tbl</code>,
and <code class="code">d1 ... dN</code> are the associated values.
</div>
</td></tr>
<tr><td><a href="Netplex_main.html#VALforeground">foreground</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td><div class="info">
Returns whether the daemon runs in the foreground
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALformat">format</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Format a date/time record as a string
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALformat_field_value">format_field_value</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
To put <code class="code">sval</code>, an <code class="code">s_token list</code>, into the header field <code class="code">name</code>,
call
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALformat_to">format_to</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Format a date/time record according to the format string and outputs
the resulting string to the channel.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALfp4_as_string">fp4_as_string</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALfp4_of_float">fp4_of_float</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALfp4_of_fp8">fp4_of_fp8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
Note <code class="code">fp4_of_fp8</code>: This conversion is not exact.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALfp8_as_string">fp8_as_string</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALfp8_of_float">fp8_of_float</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALfp8_of_fp4">fp8_of_fp4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Shell.html#VALfrom_dev_null">from_dev_null</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
A producer taking the data from <code class="code">/dev/null</code>.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALfrom_fd">from_fd</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a producer taking the data from the file descriptor passed
to this function.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALfrom_file">from_file</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a producer taking the data from the file whose name is
passed to this function.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALfrom_function">from_function</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a producer taking the data from a function.
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALfrom_function">from_function</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Creates a <code class="code">unicode_lexbuf</code> to analyse strings of the
passed <code class="code">encoding</code> coming from the <code class="code">refill</code> function.
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALfrom_in_obj_channel">from_in_obj_channel</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Creates a <code class="code">unicode_lexbuf</code> to analyse strings of the
passed <code class="code">encoding</code> coming from the object channel.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALfrom_stream">from_stream</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a producer taking the data from a stream of strings.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALfrom_stream">from_stream</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<code class="code">from_stream ?epipe s</code> returns a function which can be
used as <code class="code">producer</code> argument for <code class="code">add_producer</code>.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALfrom_string">from_string</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a producer taking the data from a string <code class="code">s</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALfrom_string">from_string</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<code class="code">from_string ?pos ?len ?epipe s</code> returns a function which can be
used as <code class="code">producer</code> argument for <code class="code">add_producer</code>.
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALfrom_string">from_string</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Creates a <code class="code">unicode_lexbuf</code> analysing the passed string encoded in
the passed encoding.
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALfrom_string_inplace">from_string_inplace</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Creates a <code class="code">unicode_lexbuf</code> analysing the passed string encoded in
the passed encoding.
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALfrom_ulb_lexbuf">from_ulb_lexbuf</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
Creates a new <code class="code">lexbuf</code> from the <code class="code">unicode_lexbuf</code>.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALfrom_unicode">from_unicode</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Maps the Unicode code point to the corresponding code point of
the charset, or raises <code class="code">Cannot_represent</code> when there is no such
corresponding code point.
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALftp_state">ftp_state</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Returns the ftp_state at the beginning of the plan
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALfull_seq2">full_seq2</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Do the first action, then get the second action using the reply
of the first action.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALfull_split">full_split</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Like <code class="code">split_delim</code>, but returns the delimiters in the result
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALfull_split">full_split</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Like <code class="code">split_delim</code>, but returns the delimiters in the result
</div>
</td></tr>
<tr><td align="left"><br>G</td></tr>
<tr><td><a href="Rpc_key_service.html#VALgenerate">generate</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td><div class="info">
Generates a new conversation key (a 64 bit random number)
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALget">get</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">get nb pos</code>: Get the character at <code class="code">pos</code>
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#VALget">get</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td><div class="info">
<code class="code">get a k</code>: Returns the contents of the array element number <code class="code">k</code> where
<code class="code">0 <= k < length a</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_POOL.html#VALget">get</a> [<a href="Netcgi_dbi.DBI_POOL.html">Netcgi_dbi.DBI_POOL</a>]</td>
<td><div class="info">
Example: <code class="code">module MyPool = DbiPool(Dbi_postgres)</code>
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALget">get</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
Decode the cookie header, may they be version 0 or 1.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_accept">get_accept</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Accept</code> header as list of triples <code class="code">(media_range,
media_range_params, accept_params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_accept_charset">get_accept_charset</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Accept-charset</code> header as list of pairs <code class="code">(charset,params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_accept_encoding">get_accept_encoding</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Accept-encoding</code> header as list of pairs <code class="code">(coding,params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_accept_language">get_accept_language</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Accept-language</code> header as list of pairs
<code class="code">(lang_range,params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_accept_ranges">get_accept_ranges</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Accept-ranges</code> header as list of tokens.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_age">get_age</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Age</code> header as number
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_allow">get_allow</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Allow</code> header as list of tokens.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_arguments">get_arguments</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the argument array of the command (skipping the command name)
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_assignments">get_assignments</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the list of assignments <code class="code"> (fd_from,fd_to) </code>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_auth_method">get_auth_method</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Returns the method that was used to authenticate the user.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_authorization">get_authorization</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Authorization</code> header as pair <code class="code">(auth_scheme,auth_params)</code>,
or raises <code class="code">Not_found</code> if not present.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_cache_control">get_cache_control</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Cache-control</code> header as list of tokens.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_charset">get_charset</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the decoded word (the contents of the word after decoding the
"Q" or "B" representation), and the character set of the decoded word
(uppercase).
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_chdir">get_chdir</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the <code class="code">chdir</code> parameter of the command
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_cmdname">get_cmdname</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the name of the command
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_column">get_column</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the column of the line where the token starts (first column
is number 0)
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_column_of_scanner">get_column_of_scanner</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the current position, line, and column of a <code class="code">mime_scanner</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_conn_peer_name">get_conn_peer_name</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Return the address of the socket serving the connection, and the client
socket, resp.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_conn_socket_name">get_conn_socket_name</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_connection">get_connection</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Connection</code> header as list of tokens.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_connection_id">get_connection_id</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Get the connection_id
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_content_encoding">get_content_encoding</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Content-encoding</code> header as list of tokens.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_content_language">get_content_language</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Content-language</code> header as list of tokens.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_content_length">get_content_length</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Content-length</code> header as number.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_content_location">get_content_location</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Content-location</code> header as string.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_content_md5">get_content_md5</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Content-MD5</code> header as string.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_content_range">get_content_range</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Content-range</code> header as
<code class="code">`Bytes(byte_range_resp_spec, instance_length)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_content_type">get_content_type</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Content-type</code> header as pair <code class="code">(media_type, params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_cookie">get_cookie</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Get the cookies as (name,value) pairs (or Not_found)
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_date">get_date</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Date</code> header as number (seconds since the Epoch).
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_decoded_word">get_decoded_word</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#VALget_descriptors">get_descriptors</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the list of active descriptors
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_env">get_env</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Gets the contents of the environment as string array
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_env_var">get_env_var</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the value of the variable in the environment
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_environment">get_environment</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the designated environment of the command
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_etag">get_etag</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Etag</code> header.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_event_system">get_event_system</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Find out the event system that contains the 'session'
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_expect">get_expect</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Expect</code> header as list of triples <code class="code">(token,value,params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_expires">get_expires</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Expires</code> header as number (seconds since the Epoch).
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALget_filename">get_filename</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the file name of the executable
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_from">get_from</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">From</code> header as string.
</div>
</td></tr>
<tr><td><a href="Netmappings.html#VALget_from_unicode">get_from_unicode</a> [<a href="Netmappings.html">Netmappings</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_host">get_host</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Host</code> header as pair <code class="code">(host,port)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_if_match">get_if_match</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">If-match</code> header.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_if_modified_since">get_if_modified_since</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">If-modified-since</code> header as number (seconds
since the Epoch).
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_if_none_match">get_if_none_match</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">If-none-match</code> header.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_if_range">get_if_range</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">If-range</code> header.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_if_unmodified_since">get_if_unmodified_since</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">If-unmodified-since</code> header as number (seconds
since the Epoch).
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_language">get_language</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Returns the language if the token is an <code class="code">EncodedWord</code>, and <code class="code">""</code> for
all other tokens.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_last_modified">get_last_modified</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Last-modified</code> header as number (seconds since the Epoch).
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_length">get_length</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the length of the token in bytes
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_line">get_line</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the line number where the token starts (numbering begins
usually with 1)
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_line_of_scanner">get_line_of_scanner</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_location">get_location</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Location</code> header as string.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_main_socket_name">get_main_socket_name</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Returns the address of the server socket, or the address of the
bidirectional pipe.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_max_forwards">get_max_forwards</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Max-forwards</code> header as number.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_local.html#VALget_peer_credentials">get_peer_credentials</a> [<a href="Rpc_auth_local.html">Rpc_auth_local</a>]</td>
<td><div class="info">
Return the pair (euid,egid) for a Unix domain socket.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_peer_name">get_peer_name</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Return the address of the socket serving the session, and the client
socket, resp.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALget_peer_name">get_peer_name</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Return the addresses of the client socket and the server socket, resp.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_pos">get_pos</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the byte position where the token starts in the string
(the first byte has position 0)
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALget_pos_of_scanner">get_pos_of_scanner</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_pragma">get_pragma</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Pragma</code> header as list of pairs <code class="code">(token,value)</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_protocol">get_protocol</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Return whether Tcp or Udp
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALget_protocol">get_protocol</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Get the protocol flavour
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_proxy_authenticate">get_proxy_authenticate</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Proxy-authenticate</code> header as list of challenges
<code class="code">(auth_scheme,auth_params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_proxy_authorization">get_proxy_authorization</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Proxy-authorization</code> header as pair
<code class="code">(auth_scheme,auth_params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_range">get_range</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Range</code> header as <code class="code">`Bytes ranges</code>, where the list <code class="code">ranges</code>
has elements of the form <code class="code">(Some first_pos, Some last_pos)</code>,
<code class="code">(Some first_pos, None)</code> (prefix range), or <code class="code">(None, Some
last_pos)</code> (suffix range).
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_referer">get_referer</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Referer</code> header as string.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_referrer">get_referrer</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Same, for addicts of correct orthography
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_retry_after">get_retry_after</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Retry-after</code> header.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALget_sender_of_last_response">get_sender_of_last_response</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Return the address of the sender of the last received response.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_server">get_server</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Returns the server instance of the session
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_server">get_server</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Server</code> header as uninterpreted string (including
comments).
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_socket_name">get_socket_name</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_client.html#VALget_socket_name">get_socket_name</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#VALget_srv_event_system">get_srv_event_system</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Returns the event system
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_te">get_te</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">TE</code> header as list of triples
<code class="code">(te_token, te_params, accept_params)</code>.
</div>
</td></tr>
<tr><td><a href="Netmappings.html#VALget_to_unicode">get_to_unicode</a> [<a href="Netmappings.html">Netmappings</a>]</td>
<td></td></tr>
<tr><td><a href="Mimestring.html#VALget_token">get_token</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the <code class="code">s_token</code> within the <code class="code">s_extended_token</code>
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_trailer">get_trailer</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Trailer</code> header as list of field names.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_transfer_encoding">get_transfer_encoding</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Transfer-encoding</code> header as list of pairs
<code class="code">(token, params)</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_upgrade">get_upgrade</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Upgrade</code> header as list of products.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_user">get_user</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Returns the user name as returned by the authentication method.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_user_agent">get_user_agent</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">User-agent</code> header as uninterpreted string
(including comments).
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_vary">get_vary</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">Vary</code> header.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALget_www_authenticate">get_www_authenticate</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Returns the <code class="code">WWW-Authenticate</code> header as list of challenges
<code class="code">(auth_scheme,auth_params)</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALget_xid">get_xid</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Returns the session ID.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALgetpgid">getpgid</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Return the process group ID of the process with the passed PID.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALgetpgrp">getpgrp</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Same as <code class="code">getpgid 0</code>, i.e.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALgetport">getport</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
<code class="code">getport pm_client program_nr version_nr protocol</code>:
finds out the port where the given service runs.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALgetsid">getsid</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Returns the session ID of the process with the passed PID.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALglobal_replace">global_replace</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
<code class="code">global_replace re templ s</code>: Replaces all matchings of <code class="code">re</code> in
<code class="code">s</code> by <code class="code">templ</code>.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALglobal_replace">global_replace</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
<code class="code">global_replace re templ s</code>: Replaces all matchings of <code class="code">re</code> in
<code class="code">s</code> by <code class="code">templ</code>.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALglobal_substitute">global_substitute</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
<code class="code">global_substitute re subst s</code>: Applies the substitution function
<code class="code">subst</code> to all matchings of <code class="code">re</code> in <code class="code">s</code>, and returns the
transformed string.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALglobal_substitute">global_substitute</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
<code class="code">global_substitute re subst s</code>: Applies the substitution function
<code class="code">subst</code> to all matchings of <code class="code">re</code> in <code class="code">s</code>, and returns the
transformed string.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALgroup">group</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Execute a sequence of operations in a group:
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALgroup_beginning">group_beginning</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Returns the position where the substring matching the nth
group begins
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALgroup_beginning">group_beginning</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Returns the position where the substring matching the nth
group begins
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALgroup_end">group_end</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Returns the position where the substring matching the nth
group ends
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALgroup_end">group_end</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Returns the position where the substring matching the nth
group ends
</div>
</td></tr>
<tr><td align="left"><br>H</td></tr>
<tr><td><a href="Netcgi_fcgi.html#VALhandle_request">handle_request</a> [<a href="Netcgi_fcgi.html">Netcgi_fcgi</a>]</td>
<td><div class="info">
<code class="code">handle_request config output_type arg_store eh f ~max_conns
~log fd</code>: This is a lower-level interface that processes
exactly one request arriving on the existing connection <code class="code">fd</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_scgi.html#VALhandle_request">handle_request</a> [<a href="Netcgi_scgi.html">Netcgi_scgi</a>]</td>
<td><div class="info">
<code class="code">handle_request config output_type arg_store eh f ~log fd</code>:
This is a
lower-level interface that processes exactly one request arriving
on the existing connection <code class="code">fd</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_ajp.html#VALhandle_request">handle_request</a> [<a href="Netcgi_ajp.html">Netcgi_ajp</a>]</td>
<td><div class="info">
<code class="code">handle_request config output_type arg_store eh f ~log fd</code>: This
is a lower-level interface that processes exactly one request
arriving on the existing connection <code class="code">fd</code>.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALhave_posix_shm">have_posix_shm</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Returns whether the OS supports POSIX shared memory
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALhost_distributor">host_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Configures virtual hosting
</div>
</td></tr>
<tr><td><a href="Nethtml.html#VALhtml40_dtd">html40_dtd</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
The (transitional) HTML 4.0 DTD, expressed as <code class="code">simplified_dtd</code>
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_delete">http_delete</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "DELETE" request with the given URL and returns the response
body.
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_delete_message">http_delete_message</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "DELETE" request with the given URL and returns the reply.
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_get">http_get</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "GET" request with the given URL and returns the message
body
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_get_message">http_get_message</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "GET" request with the given URL and returns the message
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_head_message">http_head_message</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "HEAD" request with the given URL and returns the reply.
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_password">http_password</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
The default password if authentication is required
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_post">http_post</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "POST" request with the given URL and returns the response body.
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_post_message">http_post_message</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "POST" request with the given URL and returns the reply.
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_put">http_put</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "PUT" request with the given URL and returns the response body.
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_put_message">http_put_message</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Does a "PUT" request with the given URL and returns the reply.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALhttp_status_of_int">http_status_of_int</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Returns the status value for an integer code, or raises <code class="code">Not_found</code>
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_trials">http_trials</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
number of times every request is tried.
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_user">http_user</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
The default user if authentication is required
</div>
</td></tr>
<tr><td><a href="Http_client.Convenience.html#VALhttp_verbose">http_verbose</a> [<a href="Http_client.Convenience.html">Http_client.Convenience</a>]</td>
<td><div class="info">
Turns on debug messages on stderr.
</div>
</td></tr>
<tr><td align="left"><br>I</td></tr>
<tr><td><a href="Netbuffer.html#VALindex_from">index_from</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">index_from nb k c</code>: Searches the character <code class="code">c</code> in the netbuffer beginning
at position <code class="code">k</code>.
</div>
</td></tr>
<tr><td><a href="Netmappings.html#VALinit_mt">init_mt</a> [<a href="Netmappings.html">Netmappings</a>]</td>
<td></td></tr>
<tr><td><a href="Netbuffer.html#VALinsert_char">insert_char</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">insert_char nb p c</code>: Inserts character <code class="code">c</code> at position <code class="code">p</code> into
the netbuffer <code class="code">nb</code>
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALinsert_string">insert_string</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">insert_string nb p s</code>: Inserts the value of string <code class="code">s</code> at position
<code class="code">p</code> into the netbuffer <code class="code">nb</code>
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALinsert_sub_string">insert_sub_string</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">insert_string nb p s k n</code>: Inserts a substring of string <code class="code">s</code> at position
<code class="code">p</code> into the netbuffer <code class="code">nb</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALinstall_job_handlers">install_job_handlers</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Installs handlers as configured before.
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#VALint32_array_manager">int32_array_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
The identity representation manager
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#VALint32_manager">int32_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Represents an <code class="code">int32</code> as one-element <code class="code">int32_array</code>
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALint32_of_int4">int32_of_int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint32_of_int8">int32_of_int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint32_of_uint4">int32_of_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint32_of_uint8">int32_of_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint4_as_string">int4_as_string</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint4_of_int">int4_of_int</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint4_of_int32">int4_of_int32</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint4_of_int64">int4_of_int64</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm_data.html#VALint64_manager">int64_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Represents an <code class="code">int64</code> as two-element <code class="code">int32_array</code>
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALint64_of_int4">int64_of_int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint64_of_int8">int64_of_int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint64_of_uint4">int64_of_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint64_of_uint8">int64_of_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint8_as_string">int8_as_string</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint8_of_int">int8_of_int</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint8_of_int32">int8_of_int32</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint8_of_int64">int8_of_int64</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Netaux.ArrayAux.html#VALint_blit">int_blit</a> [<a href="Netaux.ArrayAux.html">Netaux.ArrayAux</a>]</td>
<td><div class="info">
A specialisation of <code class="code">Array.blit</code> for int arrays.
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#VALint_manager">int_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Uses either <code class="code">int32_manager</code> or <code class="code">int64_manager</code> to represent <code class="code">int</code>,
depending on the size of <code class="code">int</code>.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALint_of_file_descr">int_of_file_descr</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Return the file descriptor as integer
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALint_of_http_status">int_of_http_status</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Returns the integer code for a status value
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALint_of_int4">int_of_int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint_of_int8">int_of_int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint_of_uint4">int_of_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALint_of_uint8">int_of_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Netaux.ArrayAux.html#VALint_series">int_series</a> [<a href="Netaux.ArrayAux.html">Netaux.ArrayAux</a>]</td>
<td><div class="info">
<code class="code">int_series src srcpos dst dstpos len n</code>:
Computes for every <code class="code">i</code>, <code class="code">0 <= i < len</code>:
<code class="code">dst.(dstpos+i) = n + SUM(j=0..(i-1): src.(srcpos+j)) </code>
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALip_url_syntax">ip_url_syntax</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Syntax for IP based protocols.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALipproto_tcp">ipproto_tcp</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALipproto_udp">ipproto_udp</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_common.html#VALis_MSIE">is_MSIE</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">is_MSIE user_agent</code> tells whether the <code class="code">user_agent</code> is Microsoft
Internet Explorer.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALis_ascii_compatible">is_ascii_compatible</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
"ASCII compatible" means: The bytes 1 to 127 represent the ASCII
codes 1 to 127, and no other representation of a character contains
the bytes 1 to 127.
</div>
</td></tr>
<tr><td><a href="Netcgi_cgi.html#VALis_cgi">is_cgi</a> [<a href="Netcgi_cgi.html">Netcgi_cgi</a>]</td>
<td><div class="info">
<code class="code">is_cgi</code> says whether the script is run in a CGI environment.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALis_executable">is_executable</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns <code class="code">true</code> if there is an executable file for the command, and
it is permitted to run this file (as stated by the file permissions).
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALis_prefix">is_prefix</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">is_prefix pre s</code> checks whether <code class="code">pre</code> is a prefix of <code class="code">s</code>.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALis_running">is_running</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Whether the event loop is running
</div>
</td></tr>
<tr><td><a href="Equeue.html#VALis_running">is_running</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
Returns whether the event loop is active
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALis_single_byte">is_single_byte</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns whether the encoding is a single-byte encoding
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALiter">iter</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">iter f tbl</code> applies <code class="code">f</code> to all bindings in table <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALiter">iter</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">iter f tbl</code> applies <code class="code">f</code> to all bindings in table <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALiter_env">iter_env</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Iterates over the strings of the environment, and calls
<code class="code">f s</code> for every string <code class="code">s</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALiter_env_vars">iter_env_vars</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Iterates over the variables of the environment, and calls
<code class="code">f name value</code> for every variable with <code class="code">name</code> and <code class="code">value</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALiter_job_instances">iter_job_instances</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Iterates over the jobs in the list of active jobs and calls <code class="code">f</code> for every
<code class="code">job_instance</code>.
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALiter_keys">iter_keys</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">iter_keys f tbl</code> applies <code class="code">f</code> to all keys in table <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALiter_keys">iter_keys</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">iter_keys f tbl</code> applies <code class="code">f</code> to all keys in table <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td align="left"><br>J</td></tr>
<tr><td><a href="Shell_sys.html#VALjob_status">job_status</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the status.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALjoin_path">join_path</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Concatenates the path components (reverse function of split_path).
</div>
</td></tr>
<tr><td align="left"><br>K</td></tr>
<tr><td><a href="Rpc_xti_client.html#VALkeyserv_connector">keyserv_connector</a> [<a href="Rpc_xti_client.html">Rpc_xti_client</a>]</td>
<td><div class="info">
Returns a connector that can be used to call the
keyserv daemon.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALkill">kill</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sends a signal to the passed process.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALkill_process_group">kill_process_group</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Kills the process group if it is still (at least partially) running.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALkill_processes">kill_processes</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Kills the individual processes of the job which are still running.
</div>
</td></tr>
<tr><td align="left"><br>L</td></tr>
<tr><td><a href="Netstring_pcre.html#VALlast_chars">last_chars</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Same as <code class="code">string_after</code>
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALlast_chars">last_chars</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Same as <code class="code">string_after</code>
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#VALleft_pair_manager">left_pair_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Uses the same representation as <code class="code">pair_manager</code>, but the resulting
data manager only reads the left value of the pair.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALlength">length</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Returns the logical length of the buffer
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#VALlength">length</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td><div class="info">
Returns the length of the array
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALlength">length</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">length tbl</code> returns the number of bindings in <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALlength">length</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">length tbl</code> returns the number of bindings in <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_packer.html#VALlength_of_packed_value">length_of_packed_value</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_log.html#VALlevel_of_string">level_of_string</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_log.html#VALlevel_weight">level_weight</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td></td></tr>
<tr><td><a href="Netchannels.html#VALlexbuf_of_in_obj_channel">lexbuf_of_in_obj_channel</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
Creates a lexical buffer from an input channel.
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALlexeme">lexeme</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
Returns the lexeme as array of Unicode code points
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALlexeme_char">lexeme_char</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
Returns the code point of a certain character of the
lexeme
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALlexeme_end">lexeme_end</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
The character position of the end of the lexeme
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALlexeme_length">lexeme_length</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
The length of the lexeme in characters
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALlexeme_start">lexeme_start</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
The character position of the start of the lexeme
</div>
</td></tr>
<tr><td><a href="Netchannels.html#VALlift_in">lift_in</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
Turns a <code class="code">rec_in_channel</code> or <code class="code">raw_in_channel</code>, depending on the passed
variant, into a full <code class="code">in_obj_channel</code> object.
</div>
</td></tr>
<tr><td><a href="Netchannels.html#VALlift_out">lift_out</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
Turns a <code class="code">rec_out_channel</code> or <code class="code">raw_out_channel</code>, depending on the passed
variant, into a full <code class="code">out_obj_channel</code> object.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALlinear_distributor">linear_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Configures linear distribution
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#VALlistener">listener</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
This engine creates a server socket listening on the <code class="code">listen_address</code>.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALlocal_path_of_file_url">local_path_of_file_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Extracts the path from an absolute file URL, and returns a
correct path name.
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALlocalzone">localzone</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
The offset in minutes for the local time zone from the UTC
</div>
</td></tr>
<tr><td><a href="Netmappings.html#VALlock">lock</a> [<a href="Netmappings.html">Netmappings</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_cenv.html#VALlog">log</a> [<a href="Netplex_cenv.html">Netplex_cenv</a>]</td>
<td><div class="info">
Writes a log message
</div>
</td></tr>
<tr><td><a href="Netplex_cenv.html#VALlogf">logf</a> [<a href="Netplex_cenv.html">Netplex_cenv</a>]</td>
<td><div class="info">
Writes a log message like <code class="code">printf</code>
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALlogger_factories">logger_factories</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td><div class="info">
All built-in logger factories
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALlogical_int32_of_uint4">logical_int32_of_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALlogical_int64_of_uint8">logical_int64_of_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALlogical_uint4_of_int32">logical_uint4_of_int32</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALlogical_uint8_of_int64">logical_uint8_of_int64</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#VALlookup_executable">lookup_executable</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Searches an executable file.
</div>
</td></tr>
<tr><td align="left"><br>M</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALmake">make</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<code class="code">make ?expires ?domain ?path ?secure name value</code> creates a new
cookie with name <code class="code">name</code> holding <code class="code">value</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALmake">make</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Netaux.KMP.html#VALmake_pattern">make_pattern</a> [<a href="Netaux.KMP.html">Netaux.KMP</a>]</td>
<td></td></tr>
<tr><td><a href="Netchannels.html#VALmake_temporary_file">make_temporary_file</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
Creates a temporary file in the directory <code class="code">tmp_directory</code> with a name
prefix <code class="code">tmp_prefix</code> and a unique suffix.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALmake_url">make_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Creates a URL from components:
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALmakechar">makechar</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<font color="#CCCCCC"><code class="code">makechar enc i:</code>
Creates the string representing the Unicode code point <code class="code">i</code> in encoding
<code class="code">enc</code>.
</font></div>
</td></tr>
<tr><td><a href="Netshm_array.html#VALmanage">manage</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td><div class="info">
Manages a shared memory object as an array,
including the representation of arbitrary O'Caml values.
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALmanage">manage</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
Manages a shared memory object as a hash table like <code class="code">Netshm.manage</code>,
and additionally represent arbitrary O'Caml values.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALmanage">manage</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Starts managing an open shared memory object as <code class="code">shm_table</code>.
</div>
</td></tr>
<tr><td><a href="Nethtml.html#VALmap_list">map_list</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
<code class="code">map_list f doclst</code>:
Applies <code class="code">f</code> to all attribute values and data strings (except
the attributes of "?", "!", or "--" nodes).
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALmap_xv_enum_fast">map_xv_enum_fast</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Works for both <code class="code">XV_enum</code> and <code class="code">XV_enum_fast</code>
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALmap_xv_struct_fast">map_xv_struct_fast</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Works for both <code class="code">XV_struct</code> and <code class="code">XV_struct_fast</code>
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALmap_xv_union_over_enum_fast">map_xv_union_over_enum_fast</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Works for both <code class="code">XV_union_over_enum</code> and <code class="code">XV_union_over_enum_fast</code>.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALmatch_beginning">match_beginning</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Returns the position where the matched part begins
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALmatch_beginning">match_beginning</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Returns the position where the matched part begins
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALmatch_end">match_end</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Returns the position where the matched part ends
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALmatch_end">match_end</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Returns the position where the matched part ends
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALmatched_group">matched_group</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Extracts the substring the nth group matches from the whole
string.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALmatched_group">matched_group</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Extracts the substring the nth group matches from the whole
string.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALmatched_string">matched_string</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Extracts the matched part from the string.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALmatched_string">matched_string</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Extracts the matched part from the string.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALmax_age">max_age</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
The expiration time of the cookie, in seconds.
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALmem">mem</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">mem tbl key</code> checks if <code class="code">key</code> is bound in <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALmem">mem</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">mem tbl key</code> checks if <code class="code">key</code> is bound in <code class="code">tbl</code>.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALmemory">memory</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#VALmethod_distributor">method_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Configures method distribution
</div>
</td></tr>
<tr><td><a href="Netcgi.Argument.html#VALmime">mime</a> [<a href="Netcgi.Argument.html">Netcgi.Argument</a>]</td>
<td><div class="info">
<code class="code">mime_arg ?name msg</code> creates a MIME-structured CGI argument
called <code class="code">name</code> with contents <code class="code">msg</code>.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALmk_fp4">mk_fp4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALmk_fp8">mk_fp8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALmk_int4">mk_int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALmk_int8">mk_int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Netdate.html#VALmk_mail_date">mk_mail_date</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Convert the time (seconds since the epoch) to a date string that
conforms to RFC 1123 (which updates RFC 822).
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALmk_param">mk_param</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Creates a parameter from a value (in decoded form).
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALmk_uint4">mk_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALmk_uint8">mk_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
<code class="code">mk_</code><t> create integer values from character tuples.
</div>
</td></tr>
<tr><td><a href="Netencoding.Url.html#VALmk_url_encoded_parameters">mk_url_encoded_parameters</a> [<a href="Netencoding.Url.html">Netencoding.Url</a>]</td>
<td><div class="info">
The argument is a list of (name,value) pairs.
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALmk_usenet_date">mk_usenet_date</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Convert the time (seconds since the epoch) to a date string that
conforms to RFC 1036 (which obsoletes RFC 850).
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALmodify_url">modify_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Modifies the passed components and returns the modified URL.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALmove">move</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Moves the cursor one character to the right, or if <code class="code">num</code> is passed,
this number of characters to the right.
</div>
</td></tr>
<tr><td><a href="Netplex_mp.html#VALmp">mp</a> [<a href="Netplex_mp.html">Netplex_mp</a>]</td>
<td><div class="info">
Uses <code class="code">Unix.fork</code> to create new threads
</div>
</td></tr>
<tr><td><a href="Netplex_mt.html#VALmt">mt</a> [<a href="Netplex_mt.html">Netplex_mt</a>]</td>
<td><div class="info">
Uses <code class="code">Thread.create</code> to create new threads
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALmulti_file_logger">multi_file_logger</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_log.html#VALmulti_file_logger_factory">multi_file_logger_factory</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td><div class="info">
Reads a logging section like
</div>
</td></tr>
<tr><td align="left"><br>N</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALname">name</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
The name of the cookie.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALname">name</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#VALname_of_shm">name_of_shm</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Returns the name of an object
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#VALnativeint_manager">nativeint_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Uses either <code class="code">int32_manager</code> or <code class="code">int64_manager</code> to represent <code class="code">nativeint</code>,
depending on the size of <code class="code">nativeint</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_key_service.html#VALnet_get">net_get</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_plex.html#VALnethttpd_factory">nethttpd_factory</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td><div class="info">
Reads a configuration section like
<pre><code class="code"> processor {
type = "nethttpd";
timeout = 300.0;
timeout_next_request = 15.0;
host {
pref_name = "myhost"; (* optional *)
pref_port = 80; (* optional *)
names = "myhost:80 yourhost:81"; (* use *:0 for any name *)
uri {
path = "/the/path";
method {
allow = "GET POST";
(* or: deny = "..." *)
service {
type = "...";
...
}
}
}
uri {
...
}
}
host {
...
}
}
</code></pre>
</div>
</td></tr>
<tr><td><a href="Nethttpd_plex.html#VALnethttpd_processor">nethttpd_processor</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td><div class="info">
<code class="code">netplex_processor mk_config http_service</code>: Creates a Netplex processor
for Nethttpd.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALnew_group">new_group</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Create a new, empty group for the event system
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALnew_job">new_job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Creates a new job descriptor.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALnew_wait_id">new_wait_id</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Create a new unique wait identifier
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALnorm_path">norm_path</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Removes <code class="code">"."</code> and <code class="code">".."</code> from the path if possible.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALnth">nth</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Alias for <code class="code">get</code>
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALnull">null</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
Calls the 'NULL' procedure of the portmapper.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALnull_url">null_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
A URL without any component and <code class="code">null_url_syntax</code>
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALnull_url_syntax">null_url_syntax</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
An URL syntax that recognizes nothing.
</div>
</td></tr>
<tr><td align="left"><br>O</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#VALof_compat_activation">of_compat_activation</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">of_compat_activation</code> converts an old style
cgi_activation to a new CGI-like object.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#VALof_compat_argument">of_compat_argument</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">of_compat_argument a</code> converts an old style argument
<code class="code">a</code> to a new style one.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#VALof_compat_config">of_compat_config</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">of_compat_config c</code> transform the old configuration <code class="code">c</code>
into one suitable for the new interface.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#VALof_compat_environment">of_compat_environment</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">of_compat_environment e</code> converts the old environment
<code class="code">e</code> to the new interface.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALof_record">of_record</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
Conversion from the deprecated style of cookie.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALonce">once</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Arranges that the callback function is called once after the
passed period of time (the <code class="code">float</code> argument) has elapsed.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALopen_shm">open_shm</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Opens the shared memory object.
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#VALoption_manager">option_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Creates a data manager from an input data manager for optional values
</div>
</td></tr>
<tr><td><a href="Telnet_client.html#VALoption_of_char">option_of_char</a> [<a href="Telnet_client.html">Telnet_client</a>]</td>
<td><div class="info">
Converts a character representing an option to the internal option
name.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALoptions_service">options_service</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
This service responds to "OPTIONS *" requests, and nothing else
</div>
</td></tr>
<tr><td><a href="Nethttpd_types.html#VALoutput_file_response">output_file_response</a> [<a href="Nethttpd_types.html">Nethttpd_types</a>]</td>
<td><div class="info">
Outputs the contents of a file as response body, together with the given status and
the header (optional).
</div>
</td></tr>
<tr><td><a href="Nethttpd_types.html#VALoutput_static_response">output_static_response</a> [<a href="Nethttpd_types.html">Nethttpd_types</a>]</td>
<td><div class="info">
Outputs the string argument as response body, together with the given status and
the header (optional).
</div>
</td></tr>
<tr><td><a href="Nethttpd_types.html#VALoutput_std_response">output_std_response</a> [<a href="Nethttpd_types.html">Nethttpd_types</a>]</td>
<td><div class="info">
Outputs a "standard response" for the <code class="code">http_status</code>.
</div>
</td></tr>
<tr><td align="left"><br>P</td></tr>
<tr><td><a href="Rpc_packer.html#VALpack_accepting_reply">pack_accepting_reply</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALpack_call">pack_call</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALpack_rejecting_reply">pack_rejecting_reply</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALpack_successful_reply">pack_successful_reply</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALpack_xdr_value">pack_xdr_value</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALpack_xdr_value_as_string">pack_xdr_value_as_string</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
rm: If true, four null bytes are prepended to the string for the
record mark
</div>
</td></tr>
<tr><td><a href="Rpc_packer.html#VALpacked_value_of_string">packed_value_of_string</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm_data.html#VALpair_manager">pair_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Creates a compound manager for pairs from two input managers
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALparam_charset">param_charset</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td></td></tr>
<tr><td><a href="Mimestring.html#VALparam_language">param_language</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Return the decoded value of the parameter, the charset (uppercase),
and the language.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALparam_tokens">param_tokens</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Formats a parameter list.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALparam_value">param_value</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td></td></tr>
<tr><td><a href="Nethtml.html#VALparse">parse</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
Parses the HTML document from an object channel and returns it.
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALparse">parse</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Parse a string and return a date/time record
</div>
</td></tr>
<tr><td><a href="Netaddress.html#VALparse">parse</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
Parse a list of addresses in string representation, and return
them as list of mailboxes or groups.
</div>
</td></tr>
<tr><td><a href="Nethtml.html#VALparse_document">parse_document</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
Parses the HTML document from a <code class="code">lexbuf</code> and returns it.
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALparse_epoch">parse_epoch</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Parse a string and return the time (seconds since the epoch
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALparse_url">parse_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Parses the string and returns the URL the string represents.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_sys.html#VALparse_user_name">parse_user_name</a> [<a href="Rpc_auth_sys.html">Rpc_auth_sys</a>]</td>
<td><div class="info">
Parses a user name as returned by <code class="code">Rpc_server.get_user</code> in conjunction
with the AUTH_SYS authentication and <code class="code">`Full</code> formatting.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALpartial_url_syntax">partial_url_syntax</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Transforms the syntax into another syntax where all required parts are
changed into optional parts.
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALpath">path</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
The path of the cookie, if set.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALpath">path</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALpeek_auth_error">peek_auth_error</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_auth_local.html#VALpeek_peer_credentials">peek_peer_credentials</a> [<a href="Rpc_auth_local.html">Rpc_auth_local</a>]</td>
<td><div class="info">
Peeks at the next message and returns the pair (euid,egid) for a
Unix domain socket.
</div>
</td></tr>
<tr><td><a href="Rpc_packer.html#VALpeek_xid">peek_xid</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_main.html#VALpidfile">pidfile</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td><div class="info">
Returns the location of the PID file (if any)
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#VALping">ping</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALpmap_port">pmap_port</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_callit">pmapproc_callit</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_callit'async">pmapproc_callit'async</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_dump">pmapproc_dump</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_dump'async">pmapproc_dump'async</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_getport">pmapproc_getport</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_getport'async">pmapproc_getport'async</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_null">pmapproc_null</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_null'async">pmapproc_null'async</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_set">pmapproc_set</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_set'async">pmapproc_set'async</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_unset">pmapproc_unset</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_clnt.PMAP.V2.html#VALpmapproc_unset'async">pmapproc_unset'async</a> [<a href="Rpc_portmapper_clnt.PMAP.V2.html">Rpc_portmapper_clnt.PMAP.V2</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper.html#VALport_of_program">port_of_program</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
<code class="code">port_of_program program host protocol</code>:
queries the portmapper running on <code class="code">host</code> for the <code class="code">program</code> registered
for <code class="code">protocol</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALports">ports</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<code class="code">port c</code> the ports to which the cookie may be returned or <code class="code">[]</code> if
not set.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALports">ports</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Shell.html#VALpostprocess_job">postprocess_job</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Looks at the error codes of the job, and raises
<code class="code">Subprocess_error</code> when there is an error that cannot be ignored.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALprint_buffer">print_buffer</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
For the toploop
</div>
</td></tr>
<tr><td><a href="Netstream.html#VALprint_in_obj_stream">print_in_obj_stream</a> [<a href="Netstream.html">Netstream</a>]</td>
<td><div class="info">
A top-loop printer for streams
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALprint_s_param">print_s_param</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Prints a parameter to the formatter (as toploop printer)
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALprint_url">print_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Printer for the toploop.
</div>
</td></tr>
<tr><td><a href="Rpc_program.html#VALprocedure_number">procedure_number</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td><div class="info">
<code class="code">procedure_number p name</code> returns only the procedure number
of the procedure called <code class="code">name</code>.
</div>
</td></tr>
<tr><td><a href="Nethttpd_engine.html#VALprocess_connection">process_connection</a> [<a href="Nethttpd_engine.html">Nethttpd_engine</a>]</td>
<td><div class="info">
Sets up an engine that processes all requests using the service description.
</div>
</td></tr>
<tr><td><a href="Nethttpd_reactor.html#VALprocess_connection">process_connection</a> [<a href="Nethttpd_reactor.html">Nethttpd_reactor</a>]</td>
<td><div class="info">
Processes all HTTP requests in turn arriving at the file descriptor, and
calls the service provider for every request.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALprocess_group_expects_signals">process_group_expects_signals</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<code class="code">true</code> iff the group has <code class="code">mode=Background</code> and <code class="code">forward_signals</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALprocess_group_id">process_group_id</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the Unix ID of the process group as number > 1.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALprocess_group_leader">process_group_leader</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the process group leader process.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALprocess_id">process_id</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the process ID of the process
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALprocesses">processes</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Returns the processes that have actually been started for this job
by <code class="code">run_job</code>; note that the corresponding Unix process group
may have additional processes (e.g.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALprogram">program</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Returns the program the client represents
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALprogram_PMAP'V2">program_PMAP'V2</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_program.html#VALprogram_number">program_number</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td><div class="info">
Return the program number
</div>
</td></tr>
<tr><td><a href="Netcgi_ajp.html#VALprops_of_file">props_of_file</a> [<a href="Netcgi_ajp.html">Netcgi_ajp</a>]</td>
<td><div class="info">
<code class="code">props_of_file fname</code> parses the property file <code class="code">fname</code> and
returns it as an associative list.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALprotocol_of_string">protocol_of_string</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Parses the protocol string, e.g.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALput_string">put_string</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">put_string nb pos s</code>: Copies the string <code class="code">s</code> to the position <code class="code">pos</code>
of netbuffer <code class="code">nb</code>
</div>
</td></tr>
<tr><td align="left"><br>Q</td></tr>
<tr><td><a href="Netstring_pcre.html#VALquote">quote</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Quotes a string such that it can be included in a regexp
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALquote">quote</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Quotes a string such that it can be included in a regexp
</div>
</td></tr>
<tr><td align="left"><br>R</td></tr>
<tr><td><a href="Netshm.html#VALread_blocks">read_blocks</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">find_blocks tbl key f</code>: The values may be stored in several
disk blocks.
</div>
</td></tr>
<tr><td><a href="Netplex_config.html#VALread_config_file">read_config_file</a> [<a href="Netplex_config.html">Netplex_config</a>]</td>
<td></td></tr>
<tr><td><a href="Mimestring.html#VALread_header">read_header</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
This function expects that the current position of the passed
<code class="code">in_obj_stream</code> is the first byte of the header.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALread_int4">read_int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALread_int8">read_int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#VALread_media_types_file">read_media_types_file</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Reads a text file with two columns where the left column is the
media type and the right column the corresponding suffix.
</div>
</td></tr>
<tr><td><a href="Netmime.html#VALread_mime_header">read_mime_header</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
Decodes the MIME header that begins at the current position of the
netstream, and returns the header as class <code class="code">basic_mime_header</code>.
</div>
</td></tr>
<tr><td><a href="Netmime.html#VALread_mime_message">read_mime_message</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
Decodes the MIME message that begins at the current position of the
passed netstream.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALread_multipart_body">read_multipart_body</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
This is the "next generation" multipart message parser.
</div>
</td></tr>
<tr><td><a href="Netplex_config.html#VALread_netplex_config">read_netplex_config</a> [<a href="Netplex_config.html">Netplex_config</a>]</td>
<td><div class="info">
Reads a configuration file like:
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALread_uint4">read_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALread_uint8">read_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
<code class="code">read_</code><t> create integer values from the characters found at a
certain position in the string.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALreally_read">really_read</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
<code class="code">really_read fd s pos len</code>: Reads exactly <code class="code">len</code> bytes from <code class="code">fd</code>
and stores them in <code class="code">s</code> starting at <code class="code">pos</code>.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALreally_write">really_write</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
<code class="code">really_write fd s pos len</code>: Writes exactly the <code class="code">len</code> bytes from <code class="code">s</code>
to <code class="code">fd</code> starting at <code class="code">pos</code>.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALrecode">recode</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Converts the character sequence contained in the at most <code class="code">in_len</code> bytes
of <code class="code">in_buf</code> starting at byte position <code class="code">in_pos</code>, and writes the result
into at most <code class="code">out_len</code> bytes of <code class="code">out_buf</code> starting at byte position
<code class="code">out_pos</code>.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALrecode_string">recode_string</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<font color="#CCCCCC">Recodes a complete string from <code class="code">in_enc</code> to <code class="code">out_enc</code>, and returns it.
</font></div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALrefill">refill</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Tries to add characters to the <code class="code">unicode_lexbuf</code> by calling the
<code class="code">ulb_refill</code> function.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALregexp">regexp</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Parses a regexp
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALregexp">regexp</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Parses a regexp
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALregexp_case_fold">regexp_case_fold</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Parses a case-insensitive regexp
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALregexp_case_fold">regexp_case_fold</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Parses a case-insensitive regexp
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALregexp_string">regexp_string</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Returns a regexp that matches exactly the string
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALregexp_string">regexp_string</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Returns a regexp that matches exactly the string
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALregexp_string_case_fold">regexp_string_case_fold</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Returns a case-insensitive regexp that matches exactly the string
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALregexp_string_case_fold">regexp_string_case_fold</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Returns a case-insensitive regexp that matches exactly the string
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALregister_job">register_job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Registers the job at the passed <code class="code">system_handler</code>.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALreinit_cursor">reinit_cursor</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Reuses an existing cursor for a new purpose.
</div>
</td></tr>
<tr><td><a href="Nethtml.html#VALrelaxed_html40_dtd">relaxed_html40_dtd</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
A relaxed version of the HTML 4.0 DTD that matches better common
practice.
</div>
</td></tr>
<tr><td><a href="Rpc_time.html#VALremote_time">remote_time</a> [<a href="Rpc_time.html">Rpc_time</a>]</td>
<td><div class="info">
Returns the time of the passed server in seconds since the epoch.
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALremove">remove</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">remove tbl key</code> removes the current binding of <code class="code">key</code> in <code class="code">tbl</code>,
restoring the previous binding if it exists.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALremove">remove</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">remove tbl key</code> removes the current binding of <code class="code">key</code> in <code class="code">tbl</code>,
restoring the previous binding if it exists.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALremove_from_url">remove_from_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Removes the <code class="code">true</code> components from the URL, and returns the modified
URL.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALremove_resource">remove_resource</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Removes the operation from the watch list of the group.
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALreplace">replace</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
<code class="code">replace tbl key value</code> replaces the current binding of <code class="code">key</code>
in <code class="code">tbl</code> by a binding of <code class="code">key</code> to <code class="code">value</code>.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALreplace">replace</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">replace tbl key value</code> replaces the current binding of <code class="code">key</code>
in <code class="code">tbl</code> by a binding of <code class="code">key</code> to <code class="code">value</code>.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALreplace_first">replace_first</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
<code class="code">replace_first re templ s</code>: Replaces the first match of <code class="code">re</code> in
<code class="code">s</code> by <code class="code">templ</code>.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALreplace_first">replace_first</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
<code class="code">replace_first re templ s</code>: Replaces the first match of <code class="code">re</code> in
<code class="code">s</code> by <code class="code">templ</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALreply">reply</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Asynchronous procedures can reply their results with this function.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALreply_error">reply_error</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Like <code class="code">reply</code>, but an error condition is sent back to the caller.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALreset">reset</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
Empty the buffer, deallocate the internal string, and replace it
with a new string of length <code class="code">n</code> that was allocated by
<a href="Netbuffer.html#VALcreate"><code class="code">Netbuffer.create</code></a> <code class="code">n</code>.
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#VALresize">resize</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td><div class="info">
<code class="code">resize a n</code>: Resizes the array to length <code class="code">n</code>.
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#VALresp_100_continue">resp_100_continue</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
The predefined token for the "100 Continue" response
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALrestart">restart</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
<code class="code">restart f arg</code> calls <code class="code">f arg</code>, and restarts this call if the
exception <code class="code">Unix_error(EINTR,_,_)</code> is caught.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALrestarting_select">restarting_select</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
A wrapper around <code class="code">Unix.select</code> that handles the <code class="code">EINTR</code> condition
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALrev_split">rev_split</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">split_rev is_delim s</code> split <code class="code">s</code> at each character <code class="code">is_delim</code>
and returns the list of substrings in reverse order.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALrm_htspace">rm_htspace</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">rm_htspace is_space s low up</code> returns the substring <code class="code">s.[low
.. up - 1]</code> stripped of possible heading and trailing spaces
identified by the function <code class="code">is_space</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_packer.html#VALrm_string_of_packed_value">rm_string_of_packed_value</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#VALrollback">rollback</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_netplex.html#VALrpc_factory">rpc_factory</a> [<a href="Rpc_netplex.html">Rpc_netplex</a>]</td>
<td><div class="info">
A factory for TCP-based RPC servers.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALrun">run</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Executes the command concurrently with the current process.
</div>
</td></tr>
<tr><td><a href="Netcgi_test.html#VALrun">run</a> [<a href="Netcgi_test.html">Netcgi_test</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_fcgi.html#VALrun">run</a> [<a href="Netcgi_fcgi.html">Netcgi_fcgi</a>]</td>
<td><div class="info">
<code class="code">run f</code> register the function <code class="code">f</code> as a main function of the
script.
</div>
</td></tr>
<tr><td><a href="Netcgi_cgi.html#VALrun">run</a> [<a href="Netcgi_cgi.html">Netcgi_cgi</a>]</td>
<td><div class="info">
<code class="code">run f</code> executes <code class="code">f cgi</code> for each cgi request.
</div>
</td></tr>
<tr><td><a href="Netcgi_scgi.html#VALrun">run</a> [<a href="Netcgi_scgi.html">Netcgi_scgi</a>]</td>
<td><div class="info">
<code class="code">run f</code> executes <code class="code">f cgi</code> for each SCGI request.
</div>
</td></tr>
<tr><td><a href="Netcgi_ajp.html#VALrun">run</a> [<a href="Netcgi_ajp.html">Netcgi_ajp</a>]</td>
<td><div class="info">
<code class="code">run f</code> executes <code class="code">f cgi</code> for each AJP request.
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALrun">run</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Starts the event loop.
</div>
</td></tr>
<tr><td><a href="Equeue.html#VALrun">run</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
Running a system means that, unless the queue is empty, the events
at the time of the <code class="code">run</code> invocation and all later added events are
gone through.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALrun_job">run_job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Invokes the commands of the job such that they run concurrently
with the main process.
</div>
</td></tr>
<tr><td align="left"><br>S</td></tr>
<tr><td><a href="Netconversion.html#VALsame_encoding">same_encoding</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Whether both encodings are the same.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_encoded_text_value">scan_encoded_text_value</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Scans a "text" value.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_header">scan_header</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">let params, header_end_pos = scan_header s start_pos end_pos</code>:
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_mime_type">scan_mime_type</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">let name, params = scan_mime_type s options</code>:
Scans MIME types like
<code class="code">text/plain; charset=iso-8859-1</code>
The name of the type and the names of the parameters are converted
to lower case.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_mime_type_ep">scan_mime_type_ep</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">let name, params = scan_mime_type_ep s options</code>:
This version copes with RFC-2231-encoded parameters.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_multipart_body">scan_multipart_body</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">let [params1, value1; params2, value2; ...]
= scan_multipart_body s start_pos end_pos boundary</code>:
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_multipart_body_and_decode">scan_multipart_body_and_decode</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Same as <code class="code">scan_multipart_body</code>, but decodes the bodies of the parts
if they are encoded using the methods "base64" or "quoted printable".
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_multipart_body_from_netstream">scan_multipart_body_from_netstream</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">scan_multipart_body_from_netstream s boundary create add stop</code>:
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_structured_value">scan_structured_value</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
This function is included for backwards compatibility, and for all
cases not requiring extended tokens.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_token">scan_token</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Returns the next token, or <code class="code">End</code> if there is no more token.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_token_list">scan_token_list</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Returns all following tokens as a list (excluding <code class="code">End</code>)
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_value_with_parameters">scan_value_with_parameters</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">let name, params = scan_value_with_parameters s options</code>:
Scans values with annotations like
<code class="code">name ; p1=v1 ; p2=v2 ; ...</code>
For example, MIME types like "text/plain;charset=ISO-8859-1" can
be parsed.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALscan_value_with_parameters_ep">scan_value_with_parameters_ep</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">let name, params = scan_value_with_parameters_ep s options</code>:
This version of the scanner copes with encoded parameters according
to RFC 2231.
</div>
</td></tr>
<tr><td><a href="Netcgi_plex.html#VALscgi_processor">scgi_processor</a> [<a href="Netcgi_plex.html">Netcgi_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Netstring_pcre.html#VALsearch_backward">search_backward</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Searches a match of the string with the regexp, starting at
the position and in backward direction.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALsearch_backward">search_backward</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Searches a match of the string with the regexp, starting at
the position and in backward direction.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALsearch_forward">search_forward</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Searches a match of the string with the regexp, starting at
the position and in forward direction.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALsearch_forward">search_forward</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Searches a match of the string with the regexp, starting at
the position and in forward direction.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALsecure">secure</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
Tells whether the cookie is secure.
</div>
</td></tr>
<tr><td><a href="Netplex_cenv.html#VALself_cont">self_cont</a> [<a href="Netplex_cenv.html">Netplex_cenv</a>]</td>
<td><div class="info">
Returns the container running the code of the caller
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#VALsend_file_response">send_file_response</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
Sends the contents of a file as response body, together with the given status and
the header (optional).
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#VALsend_static_response">send_static_response</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
Sends the string argument as response body, together with the given status and
the header (optional).
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALsendmail">sendmail</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
Sends the passed message.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALseparates_adjacent_encoded_words">separates_adjacent_encoded_words</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
True iff the current token is white space (i.e.
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALseq">seq</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Do the list of actions in turn
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALseq2">seq2</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Do the two actions in turn
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#VALseq2_case">seq2_case</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td><div class="info">
Do the first action, then check the resulting command state.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_sys.html#VALserver_auth_method">server_auth_method</a> [<a href="Rpc_auth_sys.html">Rpc_auth_sys</a>]</td>
<td><div class="info">
Pass the result of this function to <code class="code">Rpc_server.set_auth_methods</code> to
configure authentication.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_local.html#VALserver_auth_method">server_auth_method</a> [<a href="Rpc_auth_local.html">Rpc_auth_local</a>]</td>
<td><div class="info">
Return the authentication method <code class="code">AUTH_LOCAL</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_auth_dh.html#VALserver_auth_method">server_auth_method</a> [<a href="Rpc_auth_dh.html">Rpc_auth_dh</a>]</td>
<td><div class="info">
Pass the result of this function to <a href="Rpc_server.html#VALset_auth_methods"><code class="code">Rpc_server.set_auth_methods</code></a> to
configure AUTH_DH for an RPC server.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALset">set</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
<code class="code">set pm_client program_nr version_nr protocol port_nr</code>:
Extends the mapping managed by the portmapper: The triple
<code class="code">(program_nr, version_nr, protocol)</code> is mapped to the given
<code class="code">port_nr</code>.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALset">set</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">set nb pos c</code>: Sets the character at <code class="code">pos</code> to <code class="code">c</code>
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#VALset">set</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td><div class="info">
<code class="code">set a k x</code>: Sets the contents of the array element number <code class="code">k</code> to <code class="code">x</code>
where <code class="code">0 <= k < length a</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi.Argument.html#VALset">set</a> [<a href="Netcgi.Argument.html">Netcgi.Argument</a>]</td>
<td><div class="info">
<code class="code">set new_args args</code> creates a list of argument from <code class="code">args</code>
deleting the arguments whose name appears in <code class="code">new_args</code> and
adding the <code class="code">new_args</code> arguments.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset">set</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
<code class="code">set http_header cookies</code> sets the <code class="code">cookies</code> in <code class="code">http_header</code>
using version 0 or version 1 depending on whether version 1
fields are used.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_accept">set_accept</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Accept</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_accept_charset">set_accept_charset</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Accept-charset</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_accept_encoding">set_accept_encoding</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Accept-encoding</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_accept_language">set_accept_language</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Accept-language</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_accept_ranges">set_accept_ranges</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Accept-ranges</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_age">set_age</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Age</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_allow">set_allow</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Allow</code> header
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_arguments">set_arguments</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the argument array
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_assignments">set_assignments</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the list of assignments <code class="code"> (fd_from,fd_to) </code>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALset_auth_methods">set_auth_methods</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Sets the available authentication methods.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALset_auth_methods">set_auth_methods</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Set the authentication methods for this client.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_authorization">set_authorization</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Authorization</code> header.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_cache_control">set_cache_control</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Cache-control</code> header
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_chdir">set_chdir</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the <code class="code">chdir</code> parameter of the command
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_cmdname">set_cmdname</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the command name
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_comment">set_comment</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<code class="code">set_comment c s</code> sets the comment of the cookie <code class="code">c</code> to <code class="code">s</code>
which must be UTF-8 encoded (RFC 2279).
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_comment">set_comment</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_comment_url">set_comment_url</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<code class="code">set_comment_url c url</code> same as <a href="Netcgi.Cookie.html#VALset_comment"><code class="code">Netcgi.Cookie.set_comment</code></a>
except that the cookie comment is available on the page
pointed by <code class="code">url</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_comment_url">set_comment_url</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_connection">set_connection</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Connection</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_content_encoding">set_content_encoding</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Content-encoding</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_content_language">set_content_language</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Content-language</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_content_length">set_content_length</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Content-length</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_content_location">set_content_location</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Content-location</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_content_md5">set_content_md5</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Content-MD5</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_content_range">set_content_range</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Content-range</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_content_type">set_content_type</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Content-type</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_cookie">set_cookie</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Set the <code class="code">Cookie</code> header.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_date">set_date</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Date</code> header
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#VALset_debug_mode">set_debug_mode</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
Whether to output debug messages.
</div>
</td></tr>
<tr><td><a href="Equeue.html#VALset_debug_mode">set_debug_mode</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
Enables or disables debug mode.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_descriptors">set_descriptors</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the list of active descriptors
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALset_dgram_destination">set_dgram_destination</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
<code class="code">set_dgram_destination client addr_opt</code>: This function is required
for using the client in conjunction with unconnected UDP sockets.
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_domain">set_domain</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
Cookies are bound to a certain domain, i.e.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_domain">set_domain</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Netulex.ULB.html#VALset_encoding">set_encoding</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Sets the <code class="code">encoding</code> to the passed value.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_env">set_env</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the contents of the environment to the passed string array
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_env_var">set_env_var</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<code class="code">set_env_var env varname varval</code>: Sets the value of the variable
<code class="code">varname</code> in the environment <code class="code">env</code> to <code class="code">varval</code>.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_environment">set_environment</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the environment
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_etag">set_etag</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Etag</code> header
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALset_exception_handler">set_exception_handler</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Sets the exception handler for the server.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALset_exception_handler">set_exception_handler</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
sets an exception handler (the default prints the exception to stderr).
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_expect">set_expect</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Expect</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_expires">set_expires</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Expires</code> header
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALset_filename">set_filename</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Sets the file name of the executable to start
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_from">set_from</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">From</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_host">set_host</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Host</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_if_match">set_if_match</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">If-match</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_if_modified_since">set_if_modified_since</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">If-modified-since</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_if_none_match">set_if_none_match</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">If-none-match</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_if_range">set_if_range</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">If-range</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_if_unmodified_since">set_if_unmodified_since</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">If-unmodified-since</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_last_modified">set_last_modified</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Last-modified</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_location">set_location</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Location</code> header
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_max_age">set_max_age</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<code class="code">set_max_age c (Some t)</code> sets the lifetime of the cookie <code class="code">c</code>
to <code class="code">t</code> seconds.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_max_age">set_max_age</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_max_forwards">set_max_forwards</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Max-forwards</code> header
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALset_onclose_action">set_onclose_action</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Every time a connection is closed, the onclose function is called
with the closed connection.
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_path">set_path</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
Cookies are also bound to certain path prefixes, i.e.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_path">set_path</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_ports">set_ports</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<code class="code">set ports c (Some p)</code> says that the cookie <code class="code">c</code> must only be
returned if the server request comes from one of the listed
ports.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_ports">set_ports</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_pragma">set_pragma</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Pragma</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_proxy_authenticate">set_proxy_authenticate</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Proxy-authenticate</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_proxy_authorization">set_proxy_authorization</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Proxy-authorization</code> header
The "Basic" authentication scheme is represented as explained for
<code class="code">get_proxy_authorization</code>.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_range">set_range</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Range</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_referer">set_referer</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Referer</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_referrer">set_referrer</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Same, for addicts of correct orthography
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_retry_after">set_retry_after</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Retry-after</code> header
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_secure">set_secure</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
Cookies are also bound to the type of the web server:
<code class="code">set_secure false</code> means servers without SSL, <code class="code">set_secure
true</code> means servers with activated SSL ("https").
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_secure">set_secure</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_server">set_server</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Server</code> header
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALset_session_filter">set_session_filter</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
If set, the filter function is invoked every time the beginning of a new
RPC call is received, and the result of the filter function determines
what to do with the call:
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALset_session_filter_2">set_session_filter_2</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Same as <code class="code">set_session_filter</code>, but the filter gets as second argument the
connection ID.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_set_cookie">set_set_cookie</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Set the <code class="code">Set-Cookie</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_te">set_te</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">TE</code> header
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALset_timeout">set_timeout</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Sets the timeout for the transport.
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_trailer">set_trailer</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Trailer</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_transfer_encoding">set_transfer_encoding</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Transfer-encoding</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_upgrade">set_upgrade</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Upgrade</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_user_agent">set_user_agent</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">User-agent</code> header
</div>
</td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALset_value">set_value</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
<code class="code">set_value c v</code> sets the value of the cookie <code class="code">c</code> to <code class="code">v</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALset_value">set_value</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_vary">set_vary</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">Vary</code> header
</div>
</td></tr>
<tr><td><a href="Nethttp.Header.html#VALset_www_authenticate">set_www_authenticate</a> [<a href="Nethttp.Header.html">Nethttp.Header</a>]</td>
<td><div class="info">
Sets the <code class="code">WWW-Authenticate</code> header
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALsetpgid">setpgid</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
<code class="code">setpgid pid pgid</code>: Set the process group ID of the process <code class="code">pid</code>
to <code class="code">pgid</code>.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALsetpgrp">setpgrp</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Same as <code class="code">setpgid 0 0</code>: A new process group ID is created, and the
current process becomes its sole member.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALsetregid">setregid</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Changes both the real and the effective group ID of the current
process.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALsetreuid">setreuid</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Changes both the real and the effective user ID of the current
process.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALsetup_job">setup_job</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a job like <code class="code">call</code>, but does not execute it.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALshm_open">shm_open</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Opens a shared memory object.
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#VALshm_table">shm_table</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td><div class="info">
Returns the underlying shared memory table used to implement hash
tables
</div>
</td></tr>
<tr><td><a href="Netshm_hashtbl.html#VALshm_table">shm_table</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td><div class="info">
Returns the underlying shared memory table used to implement hash
tables.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALshm_type_of_name">shm_type_of_name</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys.html#VALshm_unlink">shm_unlink</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Unlinks the name for a shared memory object
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALshut_down">shut_down</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
Shuts down the connection to the portmapper.
</div>
</td></tr>
<tr><td><a href="Rpc_simple_client.html#VALshut_down">shut_down</a> [<a href="Rpc_simple_client.html">Rpc_simple_client</a>]</td>
<td><div class="info">
Shut the connection down.
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALshut_down">shut_down</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Shuts down the connection.
</div>
</td></tr>
<tr><td><a href="Rpc_key_service.html#VALshut_down">shut_down</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_client.html#VALshutdown_connector">shutdown_connector</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
The default implementation to shut down the connector.
</div>
</td></tr>
<tr><td><a href="Rpc_program.html#VALsignature">signature</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.Argument.html#VALsimple">simple</a> [<a href="Netcgi.Argument.html">Netcgi.Argument</a>]</td>
<td><div class="info">
<code class="code">simple_arg name value</code> creates an unstructured CGI argument
called <code class="code">name</code> with contents <code class="code">value</code>.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALsimple_listing">simple_listing</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Simple listing generator for <code class="code">`Enable_listings</code>
</div>
</td></tr>
<tr><td><a href="Netdate.html#VALsince_epoch">since_epoch</a> [<a href="Netdate.html">Netdate</a>]</td>
<td><div class="info">
Convert a date/time record into the time (seconds since the epoch)
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALspecials_rfc2045">specials_rfc2045</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
The sets of special characters defined by the RFCs 822 and 2045.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALspecials_rfc822">specials_rfc822</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td></td></tr>
<tr><td><a href="Netstring_pcre.html#VALsplit">split</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Splits the string according to the regexp in substrings.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALsplit">split</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Splits the string according to the regexp in substrings.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALsplit_delim">split_delim</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Same as <code class="code">split</code>, but occurrences of the delimiter at the beginning
and the end are returned as empty strings
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALsplit_delim">split_delim</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Same as <code class="code">split</code>, but occurrences of the delimiter at the beginning
and the end are returned as empty strings
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALsplit_host_port">split_host_port</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Splits the <code class="code">Host</code> header in hostname and optional port number.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALsplit_mime_type">split_mime_type</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
<code class="code">let (main_type, sub_type) = split_mime_type content_type</code>:
Splits the MIME type into main and sub type, for example
<code class="code"> split_mime_type "text/plain" = ("text", "plain") </code>.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALsplit_path">split_path</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Splits a <code class="code">'/'</code>-separated path into components (e.g.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALsplit_uri">split_uri</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Splits a long URI according to the algorithm of RFC 2017.
</div>
</td></tr>
<tr><td><a href="Uq_ssl.html#VALssl_accept_engine">ssl_accept_engine</a> [<a href="Uq_ssl.html">Uq_ssl</a>]</td>
<td><div class="info">
This engine performs the server handshake.
</div>
</td></tr>
<tr><td><a href="Rpc_ssl.html#VALssl_client_socket_config">ssl_client_socket_config</a> [<a href="Rpc_ssl.html">Rpc_ssl</a>]</td>
<td><div class="info">
SSL configuration object for clients
</div>
</td></tr>
<tr><td><a href="Uq_ssl.html#VALssl_connect_engine">ssl_connect_engine</a> [<a href="Uq_ssl.html">Uq_ssl</a>]</td>
<td><div class="info">
This engine performs the client handshake.
</div>
</td></tr>
<tr><td><a href="Rpc_ssl.html#VALssl_server_socket_config">ssl_server_socket_config</a> [<a href="Rpc_ssl.html">Rpc_ssl</a>]</td>
<td><div class="info">
SSL configuration object for servers
</div>
</td></tr>
<tr><td><a href="Netplex_main.html#VALstartup">startup</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td><div class="info">
Parses the configuration file and starts the Netplex daemon.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALstatus">status</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Reports the status as determined by <code class="code">wait</code> (below): If the process
has terminated, the status of the process is returned.
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#VALstatus_of_bad_request_error">status_of_bad_request_error</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
Returns the best response code for the error
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALstatus_of_cgi_header">status_of_cgi_header</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Returns the status code and the status text corresponding to the
<code class="code">Status</code> header
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALstd_activation">std_activation</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Create the function for <code class="code">dyn_activation</code> from a <code class="code">std_activation</code> tag.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALstderr">stderr</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
The standard descriptors; defined here for convenience.
</div>
</td></tr>
<tr><td><a href="Netplex_log.html#VALstderr_logger_factory">stderr_logger_factory</a> [<a href="Netplex_log.html">Netplex_log</a>]</td>
<td><div class="info">
Reads a logging section like
</div>
</td></tr>
<tr><td><a href="Shell.html#VALstdin">stdin</a> [<a href="Shell.html">Shell</a>]</td>
<td></td></tr>
<tr><td><a href="Shell.html#VALstdout">stdout</a> [<a href="Shell.html">Shell</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#VALstop_connection">stop_connection</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Schedules a special event that causes the connection to be stopped in the
very near future.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#VALstop_server">stop_server</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Stops the server: If a TCP server socket is listening, it is immediately
closed.
</div>
</td></tr>
<tr><td><a href="Netmime.html#VALstorage">storage</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
Creates a new storage facility for a mime body according to <code class="code">store</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_transport.html#VALstream_rpc_multiplex_controller">stream_rpc_multiplex_controller</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td><div class="info">
The multiplex controller for stream encapsulation
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALstring_after">string_after</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
The last <code class="code">n</code> characters of a string
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALstring_after">string_after</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
The last <code class="code">n</code> characters of a string
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALstring_before">string_before</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
The first <code class="code">n</code> characters of a string
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALstring_before">string_before</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
The first <code class="code">n</code> characters of a string
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#VALstring_manager">string_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
Represents a string in the following way.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALstring_match">string_match</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
Matches the string at the position with the regexp.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALstring_match">string_match</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
Matches the string at the position with the regexp.
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#VALstring_of_bad_request_error">string_of_bad_request_error</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
Convert error to a string, for logging
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALstring_of_encoding">string_of_encoding</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the name of the encoding.
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#VALstring_of_fatal_error">string_of_fatal_error</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
Convert error to a string, for logging
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALstring_of_http_status">string_of_http_status</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Returns the informational text for a status value
</div>
</td></tr>
<tr><td><a href="Netchannels.html#VALstring_of_in_obj_channel">string_of_in_obj_channel</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
Reads from the input channel until EOF and returns the characters
as string.
</div>
</td></tr>
<tr><td><a href="Rpc_packer.html#VALstring_of_packed_value">string_of_packed_value</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#VALstring_of_protocol">string_of_protocol</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Returns the string representation, e.g.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALstring_of_request_method">string_of_request_method</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALstring_of_url">string_of_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Returns the URL as string
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALstrong_validator_match">strong_validator_match</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Whether the tags match strongly (see RFC 2616 for definition)
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALsub">sub</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">sub nb k n</code>: returns the n characters starting at position <code class="code">n</code> from
netbuffer <code class="code">nb</code> as fresh string
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALsub_lexeme">sub_lexeme</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
Returns a substring of the lexeme as array of Unicode
code points.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#VALsubstitute_first">substitute_first</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
<code class="code">substitute_first re subst s</code>: Applies the substitution function
<code class="code">subst</code> to the first matching of <code class="code">re</code> in <code class="code">s</code>, and returns the
transformed string.
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#VALsubstitute_first">substitute_first</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
<code class="code">substitute_first re subst s</code>: Applies the substitution function
<code class="code">subst</code> to the first matching of <code class="code">re</code> in <code class="code">s</code>, and returns the
transformed string.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALsupported_types">supported_types</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
The types supported for this OS
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALsync_call">sync_call</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td></td></tr>
<tr><td><a href="Netsys.html#VALsysconf_open_max">sysconf_open_max</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Return the maximum number of open file descriptor per process.
</div>
</td></tr>
<tr><td align="left"><br>T</td></tr>
<tr><td><a href="Netsys.html#VALtcgetpgrp">tcgetpgrp</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Return the process group ID of the foreground process group of
the session associated with the file descriptor, which must be
a tty.
</div>
</td></tr>
<tr><td><a href="Netsmtp.html#VALtcp_port">tcp_port</a> [<a href="Netsmtp.html">Netsmtp</a>]</td>
<td><div class="info">
default TCP port for SMTP
</div>
</td></tr>
<tr><td><a href="Netpop.html#VALtcp_port">tcp_port</a> [<a href="Netpop.html">Netpop</a>]</td>
<td><div class="info">
Default TCP port for POP version 3
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALtcsetpgrp">tcsetpgrp</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Sets the foreground process group ID of the session associated
with the file descriptor, which must be a tty.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi.html#VALtempfile_transactional_optype">tempfile_transactional_optype</a> [<a href="Netcgi1_compat.Netcgi.html">Netcgi1_compat.Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Shell.html#VALto_buffer">to_buffer</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a consumer writing the data into the passed buffer.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALto_buffer">to_buffer</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
<code class="code">to_buffer b</code> returns a function which can be
used as <code class="code">consumer</code> argument for <code class="code">add_consumer</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#VALto_compat_activation">to_compat_activation</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">to_compat_activation</code> converts a new style
cgi object to an old cgi_activation object.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#VALto_compat_argument">to_compat_argument</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">to_compat_argument a</code> converts a new style argument
<code class="code">a</code> to an old style one.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#VALto_compat_config">to_compat_config</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">to_compat_config c</code> transform the new configuration <code class="code">c</code>
into one suitable for the old interface.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#VALto_compat_environment">to_compat_environment</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
<b>Portage:</b> <code class="code">to_compat_environment e</code> converts the new environment
<code class="code">e</code> to the old interface.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALto_dev_null">to_dev_null</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
A consumer redirecting the data to <code class="code">/dev/null</code>.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALto_fd">to_fd</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a consumer redirecting the data to the file descriptor
</div>
</td></tr>
<tr><td><a href="Shell.html#VALto_file">to_file</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a consumer writing the data into the file whose name is
passed to this function.
</div>
</td></tr>
<tr><td><a href="Shell.html#VALto_function">to_function</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
Creates a consumer writing the data by calling a function.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALto_record">to_record</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td><div class="info">
Conversion to the deprecated style of cookie (some parameters
are dropped).
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALto_unicode">to_unicode</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Maps the code point of the charset to the corresponding
Unicode code point, or raises <code class="code">Malformed_code</code>, when the
input number does not correspond to a code point.
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALtry_shrinking">try_shrinking</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<code class="code">try_shrinking nb</code>: If the length of the buffer is less than half of
the allocated space, the netbuffer is reallocated in order to save
memory.
</div>
</td></tr>
<tr><td><a href="Netsys.html#VALttyname">ttyname</a> [<a href="Netsys.html">Netsys</a>]</td>
<td><div class="info">
Returns the name of the controlling tty referred to by the
file descriptor.
</div>
</td></tr>
<tr><td align="left"><br>U</td></tr>
<tr><td><a href="Netconversion.html#VALuarray_of_ustring">uarray_of_ustring</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the characters of the string as array of Unicode code points.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALuchar_at">uchar_at</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the Unicode code point of the character at the cursor.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALuint4_as_string">uint4_as_string</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALuint4_of_int">uint4_of_int</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALuint4_of_int32">uint4_of_int32</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALuint4_of_int64">uint4_of_int64</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALuint8_as_string">uint8_as_string</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
<t><code class="code">_as_string</code>: Returns the corresponding string in network byte
order for an integer value
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALuint8_of_int">uint8_of_int</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALuint8_of_int32">uint8_of_int32</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALuint8_of_int64">uint8_of_int64</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#VALunbind">unbind</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Unbinds the program if it is bound by the server
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALundefault_url">undefault_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Removes components from the URL if they have the passed value, and
returns the modified URL.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALunlink_shm">unlink_shm</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
Removes the name permanently from the system
</div>
</td></tr>
<tr><td><a href="Netmappings.html#VALunlock">unlock</a> [<a href="Netmappings.html">Netmappings</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALunpack_call">unpack_call</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALunpack_call_body">unpack_call_body</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALunpack_call_frame">unpack_call_frame</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALunpack_call_frame_l">unpack_call_frame_l</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALunpack_reply">unpack_reply</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_packer.html#VALunpack_reply_verifier">unpack_reply_verifier</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALunpack_xdr_value">unpack_xdr_value</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALunpack_xdr_value_l">unpack_xdr_value_l</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
<code class="code">fast</code>: whether to prefer the new "fast" values (default: false)
</div>
</td></tr>
<tr><td><a href="Netbuffer.html#VALunsafe_buffer">unsafe_buffer</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td><div class="info">
<b>Warning! This is a low-level function!</b>
Returns the current string that internally holds the buffer.
</div>
</td></tr>
<tr><td><a href="Netencoding.Html.html#VALunsafe_chars_html4">unsafe_chars_html4</a> [<a href="Netencoding.Html.html">Netencoding.Html</a>]</td>
<td><div class="info">
The string contains '<', '>', '"', '&' and the control characters
0-8, 11-12, 14-31, 127.
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#VALunset">unset</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
<code class="code">unset pm_client program_nr version_nr protocol port_nr</code>:
removes the mapping.
</div>
</td></tr>
<tr><td><a href="Rpc_program.html#VALupdate">update</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td><div class="info">
Modifies program and/or version number
</div>
</td></tr>
<tr><td><a href="Nethttpd_types.html#VALupdate_alist">update_alist</a> [<a href="Nethttpd_types.html">Nethttpd_types</a>]</td>
<td><div class="info">
<code class="code">update_alist updl l</code>: Returns the alist with all elements of <code class="code">updl</code>
and all elements of <code class="code">l</code> that are not member of <code class="code">updl</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#VALupdate_props_inheader">update_props_inheader</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
<code class="code">update_props_inheader (name, value) (props, inheader)</code> returns
<code class="code">(props, inheader)</code> to which the new parameter <code class="code">name</code>-<code class="code">value</code>
has been added -- to <code class="code">props</code> or <code class="code">inheader</code>, depending on <code class="code">name</code>.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#VALuri_distributor">uri_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Configures URI distribution.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALuripath_decode">uripath_decode</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Decodes %XX sequences in URI paths.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALuripath_encode">uripath_encode</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Encodes unsafe characters in URI paths.
</div>
</td></tr>
<tr><td><a href="Netencoding.Base64.html#VALurl_encode">url_encode</a> [<a href="Netencoding.Base64.html">Netencoding.Base64</a>]</td>
<td><div class="info">
<font color="#CCCCCC">Same as <code class="code">encode</code> but use slightly different characters that can be
part of URLs without additional encodings.
</font></div>
</td></tr>
<tr><td><a href="Neturl.html#VALurl_fragment">url_fragment</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_host">url_host</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_of_string">url_of_string</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Parses the passed string according to the passed <code class="code">url_syntax</code>.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALurl_other">url_other</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Return components of the URL.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALurl_param">url_param</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_password">url_password</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_path">url_path</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_port">url_port</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_provides">url_provides</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Returns <code class="code">true</code> iff the URL has all of the components passed with
<code class="code">true</code> value.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALurl_query">url_query</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_scheme">url_scheme</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_syntax_is_valid">url_syntax_is_valid</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Checks whether the passed <code class="code">url_syntax</code> is valid.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALurl_syntax_of_url">url_syntax_of_url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Returns the <code class="code">url_syntax</code> record of a URL.
</div>
</td></tr>
<tr><td><a href="Neturl.html#VALurl_user">url_user</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Neturl.html#VALurl_user_param">url_user_param</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#VALustring_compare">ustring_compare</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Compares two strings lexicographically.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALustring_iter">ustring_iter</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Iterates over the characters of a string, and calls the passed function
for every code point.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALustring_length">ustring_length</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the length of the string in characters.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALustring_map">ustring_map</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Maps every character of a string to a list of characters, and returns
the concatenated string.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALustring_of_uarray">ustring_of_uarray</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Returns the array of Unicode code points as encoded string.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALustring_of_uchar">ustring_of_uchar</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<code class="code">ustring_of_uchar enc i</code>:
Creates the string representing the Unicode code point <code class="code">i</code> in encoding
<code class="code">enc</code>.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALustring_sub">ustring_sub</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
<code class="code">ustring_sub enc start length s</code>: Returns the substring of <code class="code">s</code> starting
at character count <code class="code">start</code> and consisting of <code class="code">length</code> characters.
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALutf8_lexeme">utf8_lexeme</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
Returns the lexeme as UTF-8 encoded string
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALutf8_sub_lexeme">utf8_sub_lexeme</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
Returns a substring of the lexeme as UTF-8 encoded
string.
</div>
</td></tr>
<tr><td><a href="Netulex.Ulexing.html#VALutf8_sub_lexeme_length">utf8_sub_lexeme_length</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td><div class="info">
Same as
String.length(utf8_sub_lexeme args), i.e.
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALutf8_sub_string">utf8_sub_string</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
The two <code class="code">int</code> arguments are the position and length of a sub
string of the lexbuf that is returned as UTF8 string.
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#VALutf8_sub_string_length">utf8_sub_string_length</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td><div class="info">
Returns <code class="code">String.length(utf8_sub_string args)</code>.
</div>
</td></tr>
<tr><td align="left"><br>V</td></tr>
<tr><td><a href="Xdr.html#VALvalidate_xdr_type">validate_xdr_type</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALvalidate_xdr_type_system">validate_xdr_type_system</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.Cookie.html#VALvalue">value</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
The value of the cookie.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#VALvalue">value</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALvalue_matches_type">value_matches_type</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#VALverbose">verbose</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Set whether you want debug messages to stderr or not
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#VALverbose">verbose</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
set whether you want debug messages or not
</div>
</td></tr>
<tr><td><a href="Netconversion.html#VALverify">verify</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
Checks whether the string is properly encoded.
</div>
</td></tr>
<tr><td><a href="Rpc_program.html#VALversion_number">version_number</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td><div class="info">
Return the version number
</div>
</td></tr>
<tr><td align="left"><br>W</td></tr>
<tr><td><a href="Shell_sys.html#VALwait">wait</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Watches the given list of processes and the file descriptors <code class="code">read</code>,
<code class="code">write</code>, and <code class="code">except</code>, and waits until events for these resources
have happened, and reports these.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#VALwatch_for_zombies">watch_for_zombies</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Iterates over the jobs in the list of abandoned jobs, and removes
zombie processes.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#VALweak_validator_match">weak_validator_match</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Whether the tags match weakly (see RFC 2616 for definition)
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#VALwhen_state">when_state</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Watches the state of the argument engine, and arranges that one of
the functions is called when a final state is reached.
</div>
</td></tr>
<tr><td><a href="Netchannels.html#VALwith_in_obj_channel">with_in_obj_channel</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
<code class="code">with_in_obj_channel ch f</code>:
Computes <code class="code">f ch</code> and closes <code class="code">ch</code>.
</div>
</td></tr>
<tr><td><a href="Netchannels.html#VALwith_out_obj_channel">with_out_obj_channel</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
<code class="code">with_out_obj_channel ch f</code>:
Computes <code class="code">f ch</code> and closes <code class="code">ch</code>.
</div>
</td></tr>
<tr><td><a href="Netplex_workload.html#VALworkload_manager_factories">workload_manager_factories</a> [<a href="Netplex_workload.html">Netplex_workload</a>]</td>
<td><div class="info">
All built-in workload manager factories
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALwrap_attachment">wrap_attachment</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
Generates a header for the <code class="code">mime_body</code>.
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALwrap_mail">wrap_mail</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
Sets the mail-related header fields in the input message, and
returns a message ready for delivery.
</div>
</td></tr>
<tr><td><a href="Netsendmail.html#VALwrap_parts">wrap_parts</a> [<a href="Netsendmail.html">Netsendmail</a>]</td>
<td><div class="info">
Generates an intermediate container for multipart attachments.
</div>
</td></tr>
<tr><td><a href="Nethtml.html#VALwrite">write</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
Writes the document to the output channel.
</div>
</td></tr>
<tr><td><a href="Netshm.html#VALwrite_blocks">write_blocks</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
<code class="code">write_blocks tbl ops key f</code>: Like <code class="code">read_blocks</code> this function iterates
over the blocks of all bindings for <code class="code">key</code>.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALwrite_header">write_header</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
This function writes the header to the passed <code class="code">out_obj_channel</code>.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALwrite_int4">write_int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALwrite_int4_unsafe">write_int4_unsafe</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALwrite_int8">write_int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALwrite_int8_unsafe">write_int8_unsafe</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#VALwrite_mime_message">write_mime_message</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
Writes the MIME message to the output channel.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALwrite_uint4">write_uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALwrite_uint4_unsafe">write_uint4_unsafe</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#VALwrite_uint8">write_uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
<code class="code">write_</code><t> copies the characters corresponding to the integer values
into the string at the given positions.
</div>
</td></tr>
<tr><td><a href="Rtypes.html#VALwrite_uint8_unsafe">write_uint8_unsafe</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
<code class="code">write_</code><t><code class="code">_unsafe</code>: Same, but no index check.
</div>
</td></tr>
<tr><td><a href="Mimestring.html#VALwrite_value">write_value</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
Writes the list of <code class="code">s_token</code> to the <code class="code">out_obj_channel</code>.
</div>
</td></tr>
<tr><td align="left"><br>X</td></tr>
<tr><td><a href="Xdr.html#VALx_array_max">x_array_max</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Common abbreviation for arrays of arbitrary length
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALx_bool">x_bool</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Common abbreviation for boolean types.
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALx_opaque_max">x_opaque_max</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Common abbreviation for opaque data of arbitrary length
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALx_optional">x_optional</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Common abbreviation for optional types.
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALx_string_max">x_string_max</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Common abbreviation for strings of arbitrary length
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALxdr_type_term">xdr_type_term</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALxdr_type_term_system">xdr_type_term_system</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALxdrt_PMAP'V2'pmapproc_callit'arg">xdrt_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#VALxdrt_PMAP'V2'pmapproc_callit'res">xdrt_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#VALxdrt_PMAP'V2'pmapproc_dump'arg">xdrt_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#VALxdrt_PMAP'V2'pmapproc_dump'res">xdrt_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#VALxdrt_PMAP'V2'pmapproc_getport'arg">xdrt_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#VALxdrt_PMAP'V2'pmapproc_getport'res">xdrt_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#VALxdrt_PMAP'V2'pmapproc_null'arg">xdrt_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#VALxdrt_PMAP'V2'pmapproc_null'res">xdrt_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#VALxdrt_PMAP'V2'pmapproc_set'arg">xdrt_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#VALxdrt_PMAP'V2'pmapproc_set'res">xdrt_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#VALxdrt_PMAP'V2'pmapproc_unset'arg">xdrt_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#VALxdrt_PMAP'V2'pmapproc_unset'res">xdrt_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#VALxdrt_call_args">xdrt_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#VALxdrt_call_result">xdrt_call_result</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALxdrt_mapping">xdrt_mapping</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALxdrt_pmaplist">xdrt_pmaplist</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#VALxdrt_pmaplist_p">xdrt_pmaplist_p</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALxv_false">xv_false</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
See <code class="code">x_bool</code>
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALxv_none">xv_none</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#VALxv_some">xv_some</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
See <code class="code">x_optional</code>
</div>
</td></tr>
<tr><td><a href="Xdr.html#VALxv_true">xv_true</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
</table><br>
</body>
</html>
|