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
|
<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 types</title>
</head>
<body>
<center><h1>Index of types</h1></center>
<table>
<tr><td align="left"><br>A</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEac_by_host">ac_by_host</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
The service is protected by the access control rule
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEac_by_host_rule">ac_by_host_rule</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Access control by host: <code class="code">`Allow</code>: Only the listed hosts are allowed; all other are denied, <code class="code">`Deny</code>: The listed hosts are denied; all other are allowed
</div>
</td></tr>
<tr><td><a href="Ftp_client.Action.html#TYPEaction">action</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td></td></tr>
<tr><td><a href="Netaddress.html#TYPEaddr_spec">addr_spec</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
The pair <code class="code">local_part@domain</code> as O'Caml type.
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEaddress">address</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEannouncement">announcement</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
See config
</div>
</td></tr>
<tr><td><a href="Netcgi.html#TYPEarg_store">arg_store</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
This is the type of functions <code class="code">arg_store</code> so that <code class="code">arg_store env
name header</code> tells whether to <code class="code">`Discard</code> the argument or to
store it into a <code class="code">`File</code> or in <code class="code">`Memory</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEarg_store">arg_store</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
See <a href="Netcgi.html#TYPEarg_store"><code class="code">Netcgi.arg_store</code></a>.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEarg_store_type">arg_store_type</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi.html#TYPEargument_processing">argument_processing</a> [<a href="Netcgi1_compat.Netcgi.html">Netcgi1_compat.Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Shell.html#TYPEassignment">assignment</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
An assignment redirects file descriptors while calling a process
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEauth_peeker">auth_peeker</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEauth_result">auth_result</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td align="left"><br>B</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEbad_request_error">bad_request_error</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
A bad request is a violation where the current request cannot be
decoded, and it is not possible to accept further requests over the
current connection.
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEbinding">binding</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEbinding_async">binding_async</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEbinding_sync">binding_sync</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td align="left"><br>C</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEcache_control">cache_control</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEcache_control">cache_control</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
This is only a small subset of the HTTP 1.1 cache control
features, but they are usually sufficient, and they work for
HTTP/1.0 as well.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEcache_control">cache_control</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
See <a href="Netcgi.html#TYPEcache_control"><code class="code">Netcgi.cache_control</code></a>.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEcache_control_token">cache_control_token</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
The cache control token for the <code class="code">Cache-control</code> header
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEcall_args">call_args</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEcall_result">call_result</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEcapacity">capacity</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
How many connections a container can accept in addition to the
existing connections: <code class="code">`Normal_quality n</code>: It can accept n connections with normal
service quality, <code class="code">n > 0</code>, <code class="code">`Low_quality n</code>: It can accept n connections with low
service quality (e.g. because it is already quite loaded), <code class="code">n > 0</code>, <code class="code">`Unavailable</code>: No capacity free
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEcgi_config">cgi_config</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
Now simply called <a href="Netcgi.html#TYPEconfig"><code class="code">Netcgi.config</code></a>.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEcgi_cookie">cgi_cookie</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#TYPEcharset">charset</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
A <code class="code">charset</code> is simply a set of code points.
</div>
</td></tr>
<tr><td><a href="Netchannels.html#TYPEclose_mode">close_mode</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
Whether a <code class="code">close_out</code> implies a commit or rollback operation
</div>
</td></tr>
<tr><td><a href="Ftp_client.html#TYPEcmd">cmd</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
An FTP command.
</div>
</td></tr>
<tr><td><a href="Ftp_client.html#TYPEcmd_state">cmd_state</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
The command state: <code class="code">`Init</code>: Just connected, no greeting message arrived yet, <code class="code">`Success</code>: Got the greeting message/last command was successful, <code class="code">`Proto_error</code>: <b>currently unused</b>, <code class="code">`Temp_failure</code>: Last command was not successful, and the code
was between 400 and 499, <code class="code">`Perm_failure</code>: Last command was not successful, and the code
was between 500 and 599, <code class="code">`Rename_seq</code>: Used instead of <code class="code">`Success</code> after the RNFR command, <code class="code">`Restart_seq</code>: Used instead of <code class="code">`Success</code> after the REST command, <code class="code">`User_pass_seq</code>: Used instead of <code class="code">`Success</code> after the USER command
when a password must be typed in, <code class="code">`User_acct_seq</code>: Used instead of <code class="code">`Success</code> after the USER command
when an account ID must be typed in, <code class="code">`Pass_acct_seq</code>: Used instead of <code class="code">`Success</code> after the PASS command
when an account iD must be typed in, <code class="code">`Preliminary</code>: a reply with code 100 to 199. There will be another
final reply for the command
</div>
</td></tr>
<tr><td><a href="Netplex_main.html#TYPEcmdline_config">cmdline_config</a> [<a href="Netplex_main.html">Netplex_main</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEcommand">command</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
A command describes how to start a new process
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_body">complex_mime_body</a> [<a href="Netmime.html">Netmime</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_body_ro">complex_mime_body_ro</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
The read-only view of a complex_mime_message
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_message">complex_mime_message</a> [<a href="Netmime.html">Netmime</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#TYPEcomplex_mime_message_ro">complex_mime_message_ro</a> [<a href="Netmime.html">Netmime</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEconfig">config</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_common.html#TYPEconfig">config</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
See <a href="Netcgi.html#TYPEconfig"><code class="code">Netcgi.config</code></a>.
</div>
</td></tr>
<tr><td><a href="Nethttpd_plex.html#TYPEconfig_log_error">config_log_error</a> [<a href="Nethttpd_plex.html">Nethttpd_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEconfig_tree">config_tree</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEconnect_address">connect_address</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Specifies the service to connect to:
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEconnect_options">connect_options</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEconnect_status">connect_status</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
This type corresponds with <a href="Uq_engines.html#TYPEconnect_address"><code class="code">Uq_engines.connect_address</code></a>: An engine
connecting with an address `X will return a status of `X.
</div>
</td></tr>
<tr><td><a href="Netcgi_dbi.DBI_DRIVER.html#TYPEconnection">connection</a> [<a href="Netcgi_dbi.DBI_DRIVER.html">Netcgi_dbi.DBI_DRIVER</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_dbi.DBI_POOL.html#TYPEconnection">connection</a> [<a href="Netcgi_dbi.DBI_POOL.html">Netcgi_dbi.DBI_POOL</a>]</td>
<td></td></tr>
<tr><td><a href="Http_client.html#TYPEconnection_cache">connection_cache</a> [<a href="Http_client.html">Http_client</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEconnection_directive">connection_directive</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
Directive how to go on with the current connection: <code class="code">`Conn_close</code>: Just shut down and close descriptor, <code class="code">`Conn_close_linger</code>: Linger, shut down, and close descriptor, <code class="code">`Conn_keep_alive</code>: Check for another request on the same connection, <code class="code">`Conn_error e</code>: Shut down and close descriptor, and handle the
exception <code class="code">e</code>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEconnection_id">connection_id</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
identifies the connection of a session.
</div>
</td></tr>
<tr><td><a href="Rpc_xti_client.html#TYPEconnector">connector</a> [<a href="Rpc_xti_client.html">Rpc_xti_client</a>]</td>
<td><div class="info">
Same as <a href="Rpc_key_service.html#TYPEconnector"><code class="code">Rpc_key_service.connector</code></a>
</div>
</td></tr>
<tr><td><a href="Rpc_server.html#TYPEconnector">connector</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_client.html#TYPEconnector">connector</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_key_service.html#TYPEconnector">connector</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td><div class="info">
How to connect to keyserv: <code class="code">`Direct(c,p)</code>: Create a direct RPC connection to the keyserv
program listening at <code class="code">c</code> using protocol <code class="code">p</code>. This usually only
works if <code class="code">c</code> is a local transport like Unix Domain., <code class="code">`Keyenvoy path</code>: Call the <code class="code">keyenvoy</code> program installed at <code class="code">path</code>
</div>
</td></tr>
<tr><td><a href="Shell.html#TYPEconsumer">consumer</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
A consumer receives data from a called process
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEcontainer_id">container_id</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
Identifies a container
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEcontainer_state">container_state</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
The container state for workload management: <code class="code">`Accepting(n,t)</code>: The container is accepting further connections.
It currently processes <code class="code">n</code> connections. The last connection was
accepted at time <code class="code">t</code> (seconds since the epoch)., <code class="code">`Busy</code>: The container does not accept connections, <code class="code">`Starting t</code>: The container was started at time <code class="code">t</code> and is not
yet ready., <code class="code">`Shutting_down</code>: The container is being shutted down.
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEcookie">cookie</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEcopy_task">copy_task</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Specifies the task the <code class="code">copier</code> class has to do:
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEctrl_op">ctrl_op</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netconversion.html#TYPEcursor">cursor</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
A cursor denotes a character position in an encoded string
</div>
</td></tr>
<tr><td align="left"><br>D</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEdata_chunk">data_chunk</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
A <code class="code">data_chunk</code> is a substring of a string.
</div>
</td></tr>
<tr><td><a href="Netshm_data.html#TYPEdata_manager">data_manager</a> [<a href="Netshm_data.html">Netshm_data</a>]</td>
<td><div class="info">
The data manager consists of several manager functions.
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEdatagram_type">datagram_type</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
- <code class="code">`Unix_dgram</code>: Datagrams over Unix domain sockets <code class="code">`Inet_udp</code>: Internet v4 UDP protocol, <code class="code">`Inet6_udp</code>: Internet v6 UDP protocol
</div>
</td></tr>
<tr><td><a href="Ftp_data_endpoint.html#TYPEdescr_state">descr_state</a> [<a href="Ftp_data_endpoint.html">Ftp_data_endpoint</a>]</td>
<td><div class="info">
Describes the state of the socket used for data transfers.
</div>
</td></tr>
<tr><td><a href="Nethtml.html#TYPEdocument">document</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
The type <code class="code">document</code> represents parsed HTML documents:
</div>
</td></tr>
<tr><td><a href="Netaddress.html#TYPEdomain">domain</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
The domain of the mailbox
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEdynamic_service">dynamic_service</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td></td></tr>
<tr><td align="left"><br>E</td></tr>
<tr><td><a href="Nethtml.html#TYPEelement_class">element_class</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
Element classes are a property used in the HTML DTD.
</div>
</td></tr>
<tr><td><a href="Netconversion.html#TYPEencoding">encoding</a> [<a href="Netconversion.html">Netconversion</a>]</td>
<td><div class="info">
The polymorphic variant enumerating the supported encodings.
</div>
</td></tr>
<tr><td><a href="Nethttpd_engine.html#TYPEengine_req_state">engine_req_state</a> [<a href="Nethttpd_engine.html">Nethttpd_engine</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_engines.html#TYPEengine_state">engine_state</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
The type of states with result values of type <code class="code">'t</code>: <code class="code">`Working n</code>: The engine is working. The number <code class="code">n</code> counts the number
of events that have been processed., <code class="code">`Done arg</code>: The engine has completed its task without errors.
The argument <code class="code">arg</code> is the result value of the engine, <code class="code">`Error exn</code>: The engine has aborted because of an error. The
argument <code class="code">exn</code> describes the error as an exception., <code class="code">`Aborted</code>: The engine has aborted because the <code class="code">abort</code> method
was called
</div>
</td></tr>
<tr><td><a href="Netencoding.Html.html#TYPEentity_set">entity_set</a> [<a href="Netencoding.Html.html">Netencoding.Html</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEenvironment">environment</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
The abstract type of a process environment
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEetag">etag</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Entity tags can be weak or strong
</div>
</td></tr>
<tr><td><a href="Unixqueue.html#TYPEevent">event</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
An <code class="code">event</code> is triggered when the condition of an <code class="code">operation</code>
becomes true, when a signal happens, or when the event is
(artificially) added to the event queue (<code class="code">add_event</code>, below).
</div>
</td></tr>
<tr><td><a href="Netcgi.html#TYPEexn_handler">exn_handler</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
A function of type <code class="code">exn_handler</code> allows to define a custom
handler of uncaught exceptions raised by the <code class="code">unit -> unit</code>
parameter.
</div>
</td></tr>
<tr><td align="left"><br>F</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEfatal_error">fatal_error</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
These are the serious protocol violations after that the daemon stops
any further processing.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEfile_option">file_option</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Add-on features for file services: <code class="code">`Enable_gzip</code>: If enabled, files ending in <code class="code">.gz</code> are assumed to be in <code class="code">gzip</code>
compression. When there is <b>both</b> the base file and the gzip file ending in
<code class="code">.gz</code>, accesses to the base file (!) are transmitted with <code class="code">gzip</code>
compression., <code class="code">`Enable_index_file</code>: If enabled, accesses to directories are redirected
to index files. The possible file names are given in the string list.
E.g. <code class="code">`Enable_index_file ["index.html"; "index.htm"]</code>. It is redirected to
these files, so these can be handled by different services if neccessary., <code class="code">`Enable_listings</code>: If enabled, directory listings are generated by calling
the argument function. The <code class="code">PATH_TRANSLATED</code> property of the environment
contains the absolute name of the directory to list. The <code class="code">PATH_INFO</code> property
is the corresponding URI path. <code class="code">SCRIPT_NAME</code> is meaningless.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEfile_service">file_service</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Describes a file service
</div>
</td></tr>
<tr><td><a href="Ftp_client.html#TYPEfilename">filename</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
There are several methods how to specify filenames: <code class="code">`NVFS name</code>: The "Network Virtual File System" is the normal way
of accessing FTP files. The client walks into the directory containing
the file using <code class="code">CWD</code> and <code class="code">CDUP</code> commands, and calls the file operation
from this directory. For simplicity, this client interprets slashes
in <code class="code">name</code> as path component separators. The FTP server will never
see these slashes., <code class="code">`Verbatim name</code>: The string <code class="code">name</code> is passed to the server without
transforming it in any way.
In the future, there will be a third way of referring to files:
TVFS, the "Trivial Virtual File System".
</div>
</td></tr>
<tr><td><a href="Ftp_client.html#TYPEform_code">form_code</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
The <code class="code">form_code</code> has a meaning when FTP is used to print files: <code class="code">`Non_print</code>: This is not the case., <code class="code">`Telnet</code>: Telnet control codes are used for vertical movement, <code class="code">`ASA</code>: ASA (Fortran) control codes are used for vertical movement
</div>
</td></tr>
<tr><td><a href="Rtypes.html#TYPEfp4">fp4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
single precision float
</div>
</td></tr>
<tr><td><a href="Rtypes.html#TYPEfp8">fp8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
double precision float
</div>
</td></tr>
<tr><td><a href="Netmappings.html#TYPEfrom_uni_list">from_uni_list</a> [<a href="Netmappings.html">Netmappings</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEfront_token">front_token</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
Tokens generated by <code class="code">http_response</code>: <code class="code">`Resp_wire_data</code> are data tokens., <code class="code">`Resp_end</code> indicates the end of the response.
</div>
</td></tr>
<tr><td><a href="Ftp_client.html#TYPEftp_state">ftp_state</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
The ftp_state reflects the knowledge of the client about what has been
agreed upon with the server.
</div>
</td></tr>
<tr><td align="left"><br>G</td></tr>
<tr><td><a href="Unixqueue.html#TYPEgroup">group</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
A group is an abstract tag for a set of events, resources, and
event handlers.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEgroup_action">group_action</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Determines in which process group the new process will run
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEgroup_mode">group_mode</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Specifies how the job instance is related to process groups
</div>
</td></tr>
<tr><td align="left"><br>H</td></tr>
<tr><td><a href="Http_client.html#TYPEheader_kind">header_kind</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
The <code class="code">`Base</code> header is set by the user of <code class="code">http_call</code> and is never
changed during processing the call.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEhost">host</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
For name- and IP-based virtual hosting this record describes the individual
host.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEhost_distributor">host_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Describes virtual hosting by pairs <code class="code">(host,service)</code>: If <code class="code">host</code> matches the
incoming request, the corresponding <code class="code">service</code> is performed to generate the
response.
</div>
</td></tr>
<tr><td><a href="Http_client.html#TYPEhow_to_reconnect">how_to_reconnect</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
How to deal with automatic reconnections, especially when the
connection crashes.
</div>
</td></tr>
<tr><td><a href="Http_client.html#TYPEhow_to_redirect">how_to_redirect</a> [<a href="Http_client.html">Http_client</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEhttp_method">http_method</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
Method name, URI
</div>
</td></tr>
<tr><td><a href="Http_client.html#TYPEhttp_options">http_options</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
Options for the whole pipeline
</div>
</td></tr>
<tr><td><a href="Nethttpd_types.html#TYPEhttp_service_reaction">http_service_reaction</a> [<a href="Nethttpd_types.html">Nethttpd_types</a>]</td>
<td><div class="info">
Indicates the immediate reaction upon an arriving HTTP header: <code class="code">`Accept_body</code> is the regular way of processing requests. If necessary,
the client is told to continue sending the rest of the request., <code class="code">`Reject_body</code> can be used when the body of the request is not needed,
and the response will be negative., <code class="code">`Static</code> means to send the header and a constant string back as response.
The header is taken from the environment if not explicitly passed,
Note: The <code class="code">Content-Length</code> header is automatically added. The <code class="code">Content-Type</code>
defaults to "text/html"., <code class="code">`File</code> is similar to this, but the data come from a file. The file
is specified by an absolute pathname. The range of the file is given
by the start position and the length of the range.
The header is taken from the environment if not explicitly passed,
Note: The <code class="code">Content-Length</code> header is automatically added. The <code class="code">Content-Type</code>
defaults to "text/html"., <code class="code">`Std_response</code> is similar to <code class="code">`Static</code>, however the body is the standard
text for the status code. If the header is omitted, it is taken as empty.
The third argument is an optional entry into the error log.
Note: The <code class="code">Content-Length</code> header is automatically added. The <code class="code">Content-Type</code>
defaults to "text/html".
</div>
</td></tr>
<tr><td><a href="Nethttp.html#TYPEhttp_status">http_status</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
HTTP response status:
</div>
</td></tr>
<tr><td align="left"><br>I</td></tr>
<tr><td><a href="Rpc_auth_sys.html#TYPEidentity">identity</a> [<a href="Rpc_auth_sys.html">Rpc_auth_sys</a>]</td>
<td><div class="info">
Specifies the user: <code class="code">`Effective_user</code>: Take the effective user of the process, <code class="code">`Real_user</code>: Take the real user of the process, <code class="code">`This_user(uid,gid,sup_groups,hostname)</code>: Pretend to be
this user
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEinput_mode">input_mode</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
This is not used anywhere.
</div>
</td></tr>
<tr><td><a href="Netchannels.html#TYPEinput_result">input_result</a> [<a href="Netchannels.html">Netchannels</a>]</td>
<td><div class="info">
This type is for the method <code class="code">enhanced_input</code> of <code class="code">enhanced_raw_in_channel</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEinput_state">input_state</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
This is not the business of the user.
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEint32_array">int32_array</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Rtypes.html#TYPEint4">int4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
32 bit signed integer
</div>
</td></tr>
<tr><td><a href="Rtypes.html#TYPEint8">int8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
64 bit signed integer
</div>
</td></tr>
<tr><td align="left"><br>J</td></tr>
<tr><td><a href="Shell_sys.html#TYPEjob">job</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEjob_instance">job_instance</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td></td></tr>
<tr><td><a href="Shell_sys.html#TYPEjob_status">job_status</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Indicates the status of the job
</div>
</td></tr>
<tr><td align="left"><br>L</td></tr>
<tr><td><a href="Netplex_types.html#TYPElevel">level</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netulex.Ulexing.html#TYPElexbuf">lexbuf</a> [<a href="Netulex.Ulexing.html">Netulex.Ulexing</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPElinear_distributor">linear_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Services are selected by calling the selector function.
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPElisten_address">listen_address</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Specifies the resource to listen on:
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPElisten_options">listen_options</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td></td></tr>
<tr><td><a href="Netaddress.html#TYPElocal_part">local_part</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
Usually the user name
</div>
</td></tr>
<tr><td><a href="Ftp_data_endpoint.html#TYPElocal_receiver">local_receiver</a> [<a href="Ftp_data_endpoint.html">Ftp_data_endpoint</a>]</td>
<td><div class="info">
The <code class="code">local_receiver</code> is the object that gets the data received
over the data connection.
</div>
</td></tr>
<tr><td><a href="Ftp_data_endpoint.html#TYPElocal_sender">local_sender</a> [<a href="Ftp_data_endpoint.html">Ftp_data_endpoint</a>]</td>
<td><div class="info">
The <code class="code">local_sender</code> is the object that provides the data sent
over the data connection.
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPElocking_method">locking_method</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
The locking method is used to ensure that parallel read and write
operations to the memory object do not interfer with each other.
</div>
</td></tr>
<tr><td align="left"><br>M</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEmapping">mapping</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEmethod_distributor">method_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
The first service is selected for which the method filter accepts the request
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEmethod_filter">method_filter</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
The request is only accepted if listed (for <code class="code">`Limit</code>), or if not listed
(for <code class="code">`Limit_except</code>).
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEmime_message">mime_message</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
Simple MIME message, in a form that is compatible with complex
ones.
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEmime_message_ro">mime_message_ro</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
Read-only variant of simple messages
</div>
</td></tr>
<tr><td><a href="Mimestring.html#TYPEmime_scanner">mime_scanner</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
The opaque type of a scanner for structured values
</div>
</td></tr>
<tr><td><a href="Rpc.html#TYPEmode">mode</a> [<a href="Rpc.html">Rpc</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEmode2">mode2</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
Determines the type of the server for <code class="code">create2</code>:
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#TYPEmode2">mode2</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
Determines the type of the client for <code class="code">create2</code>:
</div>
</td></tr>
<tr><td><a href="Nethtml.html#TYPEmodel_constraint">model_constraint</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
Model constraints define the possible sub elements of an element: <code class="code">`Inline</code>: The sub elements must belong to the class <code class="code">`Inline</code>, <code class="code">`Block</code>: The sub elements must be members of the classes <code class="code">`Block</code> or
<code class="code">`Essential_block</code>, <code class="code">`Flow</code>: The sub elements must belong to the classes <code class="code">`Inline</code>, <code class="code">`Block</code>,
or <code class="code">`Essential_block</code>, <code class="code">`Empty</code>: There are no sub elements, <code class="code">`Any</code>: Any sub element is allowed, <code class="code">`Special</code>: The element has special content (e.g. <code class="code"><script></code>).
Functionally equivalent to <code class="code">`Empty</code>, <code class="code">`Elements l</code>: Only these enumerated elements may occur as sub elements, <code class="code">`Or(m1,m2)</code>: One of the constraints <code class="code">m1</code> or <code class="code">m2</code> must hold, <code class="code">`Except(m1,m2)</code>: The constraint <code class="code">m1</code> must hold, and <code class="code">m2</code> must not hold, <code class="code">`Sub_exclusions(l,m)</code>: The constraint <code class="code">m</code> must hold; furthermore,
the elements enumerated in list <code class="code">l</code> are not allowed as direct or
indirect subelements, even if <code class="code">m</code> or the model of a subelement would
allow them. The difference to <code class="code">`Except(m, `Elements l)</code> is that the
exclusion is inherited to the subelements. The <code class="code">`Sub_exclusions</code>
expression must be toplevel, i.e. it must not occur within an <code class="code">`Or</code>,
<code class="code">`Except</code>, or another <code class="code">'Sub_exclusions</code> expression.
Note that the members of the class <code class="code">`Everywhere</code> are allowed everywhere,
regardless of whether the model constraint allows them or not.
</div>
</td></tr>
<tr><td><a href="Netcgi_plex.html#TYPEmountpoint">mountpoint</a> [<a href="Netcgi_plex.html">Netcgi_plex</a>]</td>
<td></td></tr>
<tr><td><a href="Netmime.html#TYPEmultipart_style">multipart_style</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
How to parse multipart messages: <code class="code">`None</code>: Do not handle multipart messages specially. Multipart bodies
are not further decoded, and returned as <code class="code">`Body b</code> where <code class="code">b</code> is
the transfer-encoded text representation., <code class="code">`Flat</code>: If the top-level message is a multipart message, the parts
are separated and returned as list. If the parts are again multipart
messages, these inner multipart messages are not furher decoded
and returned as <code class="code">`Body b</code>., <code class="code">`Deep</code>: Multipart messages are recursively decoded and returned as
tree structure.
This value determines how far the <code class="code">complex_mime_message</code> structure
is created for a parsed MIME message.
</div>
</td></tr>
<tr><td align="left"><br>O</td></tr>
<tr><td><a href="Uq_engines.html#TYPEonshutdown_in_spec">onshutdown_in_spec</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
See class <code class="code">input_async_mplex</code> for explanations
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEonshutdown_out_spec">onshutdown_out_spec</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
See class <code class="code">output_async_mplex</code> for explanations
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi.html#TYPEoperating_type">operating_type</a> [<a href="Netcgi1_compat.Netcgi.html">Netcgi1_compat.Netcgi</a>]</td>
<td></td></tr>
<tr><td><a href="Unixqueue.html#TYPEoperation">operation</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
An <code class="code">operation</code> specifies the condition to wait for.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEother_url_spec">other_url_spec</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEother_url_spec">other_url_spec</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
Determines how an URL part is generated: <code class="code">`Env</code>: Take the value from the environment., <code class="code">`This v</code>: Use this value <code class="code">v</code>. It must already be URL-encoded., <code class="code">`None</code>: Do not include this part into the URL.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEother_url_spec">other_url_spec</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
See <a href="Netcgi.html#TYPEother_url_spec"><code class="code">Netcgi.other_url_spec</code></a>.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEoutput_mode">output_mode</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
This is not used anywhere.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEoutput_state">output_state</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
This is not the business of the user.
</div>
</td></tr>
<tr><td><a href="Netcgi.html#TYPEoutput_type">output_type</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
The ouput type determines how generated data is buffered.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEoutput_type">output_type</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
See <a href="Netcgi.html#TYPEoutput_type"><code class="code">Netcgi.output_type</code></a>.
</div>
</td></tr>
<tr><td align="left"><br>P</td></tr>
<tr><td><a href="Rpc_packer.html#TYPEpacked_value">packed_value</a> [<a href="Rpc_packer.html">Rpc_packer</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEparallelization_type">parallelization_type</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
Type of parallelization: <code class="code">`Multi_processing</code> on a single host, <code class="code">`Multi_threading</code> on a single host, <code class="code">`Controller_attached</code> means that the service runs within the
controller. This is (for now) only allowed for controller-internal
services.
</div>
</td></tr>
<tr><td><a href="Netplex_types.html#TYPEparam_value">param_value</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEparam_value_or_any">param_value_or_any</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netaux.KMP.html#TYPEpattern">pattern</a> [<a href="Netaux.KMP.html">Netaux.KMP</a>]</td>
<td></td></tr>
<tr><td><a href="Ftp_client.Action.html#TYPEplan">plan</a> [<a href="Ftp_client.Action.html">Ftp_client.Action</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEpmaplist">pmaplist</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEpmaplist_p">pmaplist_p</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Ftp_client.html#TYPEport">port</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
The port of the data connection: <code class="code">`Active</code> means that the server
initiates the data connection to the listening client, and in the
case of <code class="code">`Passive</code> the client initiates the data connection to the
listening server.
</div>
</td></tr>
<tr><td><a href="Http_client.html#TYPEprivate_api">private_api</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
The private part of the <code class="code">http_call</code> class type
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEprocess">process</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
A process is the running instance of a command (a Unix process)
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEprocess_event">process_event</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
Events used by <code class="code">wait</code>
</div>
</td></tr>
<tr><td><a href="Shell.html#TYPEproducer">producer</a> [<a href="Shell.html">Shell</a>]</td>
<td><div class="info">
A producer generates data sent to a called process
</div>
</td></tr>
<tr><td><a href="Rpc.html#TYPEprotocol">protocol</a> [<a href="Rpc.html">Rpc</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEprotocol">protocol</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td><div class="info">
The base protocol.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEprotocol">protocol</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEprotocol_attribute">protocol_attribute</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEprotocol_attribute">protocol_attribute</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttp.html#TYPEprotocol_version">protocol_version</a> [<a href="Nethttp.html">Nethttp</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEprotocol_version">protocol_version</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td></td></tr>
<tr><td align="left"><br>Q</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEquery_string_spec">query_string_spec</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.html#TYPEquery_string_spec">query_string_spec</a> [<a href="Netcgi.html">Netcgi</a>]</td>
<td><div class="info">
Determines how the query part of URLs is generated: <code class="code">`Env</code>: The query string of the current request., <code class="code">`This l</code>: The query string is created from the specified
argument list <code class="code">l</code>., <code class="code">`None</code>: The query string is omitted., <code class="code">`Args</code>: <i>deprecated</i>, use <code class="code">`This</code>
(left for backward compatibility).
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEquery_string_spec">query_string_spec</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td><div class="info">
See <a href="Netcgi.html#TYPEquery_string_spec"><code class="code">Netcgi.query_string_spec</code></a>.
</div>
</td></tr>
<tr><td align="left"><br>R</td></tr>
<tr><td><a href="Netstring_pcre.html#TYPEregexp">regexp</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
The type of regular expressions; now based on <code class="code">Pcre</code>
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#TYPEregexp">regexp</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
The type of regular expressions; now based on <code class="code">Pcre</code>
</div>
</td></tr>
<tr><td><a href="Ftp_client.html#TYPEreply">reply</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
Reply code plus text
</div>
</td></tr>
<tr><td><a href="Ftp_client.html#TYPErepresentation">representation</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
The representation of the transferred file: <code class="code">`ASCII</code>: An ASCII variant is used, i.e. the server sends files in
ASCII encoding with CR/LF as end-of-line marker. Supported by all
servers., <code class="code">`EBCDIC</code>: An EBCDIC variant is used, i.e. the server sends files in
EBCDIC encoding with NEL as end-of-line marker, <code class="code">`Image</code>: The file is transferred in its original binary
representation. Supported by all servers.
"Local" representations are not supported.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPErepresentation">representation</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
Embedded in the single place of use.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPErepresentation">representation</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEreq_token">req_token</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
A <code class="code">req_token</code> represents a textual part of the received request: <code class="code">`Req_header</code> is the full received header. Together with the header,
the corresponding <code class="code">http_response</code> object is returned which must
be used to transmit the response., <code class="code">`Req_expect_100_continue</code> is generated when the client expects that the
server sends a "100 Contnue" response (or a final status code) now.
One should add <code class="code">`Resp_info_line resp_100_continue</code> to the send queue
if the header is acceptable, or otherwise generate an error response. In any
case, the rest of the request must be read until <code class="code">`Req_end</code>., <code class="code">`Req_body</code> is a part of the request body. The transfer-coding, if any,
is already decoded., <code class="code">`Req_trailer</code> is the received trailer, <code class="code">`Req_end</code> indicates the end of the request (the next request may begin
immediately)., <code class="code">`Eof</code> indicates the end of the stream, <code class="code">`Bad_request_error</code> indicates that the request violated the HTTP protocol
in a serious way and cannot be decoded. It is required to send a
"400 Bad Request" response. The following token will be <code class="code">`Eof</code>., <code class="code">`Fatal_error</code> indicates that the connection crashed.
The following token will be <code class="code">`Eof</code>., <code class="code">`Timeout</code> means that nothing has been received for a certain amount
of time, and the protocol is in a state that the next request can begin.
The following token will be <code class="code">`Eof</code>.
Note that it is always allowed to <code class="code">send</code> tokens to the client.
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPErequest_line">request_line</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
The method (including the URI), and the HTTP version
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPErequest_method">request_method</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi_common.html#TYPErequest_method">request_method</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Http_client.html#TYPEresolver">resolver</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
A name resolver is a function <code class="code">r</code> called as <code class="code">r esys name reply</code>.
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEresp_state">resp_state</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
The response state: <code class="code">`Inhibited</code> = it is not yet allowed to start the response, <code class="code">`Queued</code> = the response waits on the queue for activation, <code class="code">`Active</code> = the response is currently being transmitted, <code class="code">`Processed</code> = the response has been completely sent, <code class="code">`Error</code> = an error occurred during the transmission of this response, <code class="code">`Dropped</code> = an earlier response forced to close the connection, and
this response is dequeued
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEresp_token">resp_token</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
The <code class="code">resp_token</code> represents a textual part of the response to send: <code class="code">`Resp_info_line</code> is an informational status line (code=100..199). There can
be several informational lines, and they can be accompanied with their own
headers. Such lines are only sent to HTTP/1.1 clients., <code class="code">`Resp_status_line</code> is the final status line to send (code >= 200), <code class="code">`Resp_header</code> is the whole response header to send, <code class="code">`Resp_body</code> is the next part of the response body to send., <code class="code">`Resp_trailer</code> is the whole response trailer to send (currently ignored), <code class="code">`Resp_action</code> is special because it does not directly represent a token
to send. The argument is a function which is called when the token is
the next token on the active event queue. The function is also called when
the event queue is dropped because of an error (the state of the
response object indicates this). The function must not raise exceptions
except <code class="code">Unix_error</code>, and it must not block.
</div>
</td></tr>
<tr><td><a href="Http_client.html#TYPEresponse_body_storage">response_body_storage</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
How to create the response body: <code class="code">`Memory</code>: The response body is in-memory, <code class="code">`File f</code>: The response body is stored into the file whose name
is returned by <code class="code">f()</code>, <code class="code">`Body f</code>: The response body is stored into the object returned
by <code class="code">f()</code>
</div>
</td></tr>
<tr><td><a href="Rpc_transport.html#TYPEresult">result</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Netstring_pcre.html#TYPEresult">result</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td><div class="info">
The type of matching results
</div>
</td></tr>
<tr><td><a href="Netstring_str.html#TYPEresult">result</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td><div class="info">
The type of matching results
</div>
</td></tr>
<tr><td><a href="Rpc_transport.html#TYPEresult_eof">result_eof</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPErule">rule</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_tcl.html#TYPErunner">runner</a> [<a href="Uq_tcl.html">Uq_tcl</a>]</td>
<td></td></tr>
<tr><td><a href="Uq_gtk.html#TYPErunner">runner</a> [<a href="Uq_gtk.html">Uq_gtk</a>]</td>
<td></td></tr>
<tr><td align="left"><br>S</td></tr>
<tr><td><a href="Mimestring.html#TYPEs_extended_token">s_extended_token</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
An opaque type containing the information of <code class="code">s_token</code> plus: where the token occurs, RFC-2047 access functions
</div>
</td></tr>
<tr><td><a href="Mimestring.html#TYPEs_option">s_option</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td></td></tr>
<tr><td><a href="Mimestring.html#TYPEs_param">s_param</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
The type of encoded parameters (RFC 2231)
</div>
</td></tr>
<tr><td><a href="Mimestring.html#TYPEs_token">s_token</a> [<a href="Mimestring.html">Mimestring</a>]</td>
<td><div class="info">
A token may be one of: <code class="code">QString s</code>: The quoted string <code class="code">s</code>, i.e a string between double
quotes. Quoted pairs are already decoded in <code class="code">s</code>., <code class="code">Control c</code>: The control character <code class="code">c</code> (0-31, 127, 128-255), <code class="code">Special c</code>: The special character <code class="code">c</code>, i.e. a character from
the <code class="code">specials</code> list, <code class="code">DomainLiteral s</code>: The bracketed string <code class="code">s</code>, i.e. a string between
brackets. Quoted pairs are already decoded in <code class="code">s</code>., <code class="code">Comment</code>: A string between parentheses. This kind of token is only
generated when the option <code class="code">Return_comments</code> is in effect., <code class="code">EncodedWord((charset,lang),encoding,encoded_word)</code>: An RFC-2047 style
encoded word: <code class="code">charset</code> is the name of the character set; <code class="code">lang</code> is
the language specifier (from RFC 2231) or ""; <code class="code">encoding</code> is either
"Q" or "B"; and <code class="code">encoded_word</code> is the word encoded in <code class="code">charset</code> and
<code class="code">encoding</code>. This kind of token is only generated when the option
<code class="code">Recognize_encoded_words</code> is in effect (if not, <code class="code">Atom</code> is generated
instead)., <code class="code">Atom s</code>: A string which is neither quoted not bracketed nor
written in RFC 2047 notation, and which is not a control or special
character, i.e. the "rest", <code class="code">End</code>: The end of the string
</div>
</td></tr>
<tr><td><a href="Rpc.html#TYPEserver_error">server_error</a> [<a href="Rpc.html">Rpc</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_server.html#TYPEsession">session</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
identifies a pair of a call and a reply
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEshm_descr">shm_descr</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
A shared memory descriptor refers to a shared memory object.
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEshm_name">shm_name</a> [<a href="Netshm.html">Netshm</a>]</td>
<td><div class="info">
A <code class="code">shm_name</code> is a name for a shared memory object.
</div>
</td></tr>
<tr><td><a href="Netsys.html#TYPEshm_open_flag">shm_open_flag</a> [<a href="Netsys.html">Netsys</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#TYPEshm_table">shm_table</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm.html#TYPEshm_type">shm_type</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td><a href="Nethtml.html#TYPEsimplified_dtd">simplified_dtd</a> [<a href="Nethtml.html">Nethtml</a>]</td>
<td><div class="info">
A <code class="code">simplified_dtd</code> is an associative list of tuples
<code class="code">(element_name, (element_class, constraint))</code>: For every <code class="code">element_name</code>
it is declared that it is a member of <code class="code">element_class</code>, and that
the sub elements must satisfy <code class="code">constraint</code>.
</div>
</td></tr>
<tr><td><a href="Rpc_transport.html#TYPEsockaddr">sockaddr</a> [<a href="Rpc_transport.html">Rpc_transport</a>]</td>
<td></td></tr>
<tr><td><a href="Netplex_types.html#TYPEsocket_state">socket_state</a> [<a href="Netplex_types.html">Netplex_types</a>]</td>
<td><div class="info">
The state of a socket: <code class="code">`Enabled</code>: The controller allows containers to accept connections.
Note that this does not necessarily means that there such containers., <code class="code">`Disabled</code>: It is not allowed to accept new connections. The
socket is kept open, however., <code class="code">`Restarting b</code>: The containers are being restarted. The boolean
argument says whether the socket will be enabled after that., <code class="code">`Down</code>: The socket is down/closed
</div>
</td></tr>
<tr><td><a href="Uq_engines.html#TYPEsockspec">sockspec</a> [<a href="Uq_engines.html">Uq_engines</a>]</td>
<td><div class="info">
Extended names for socket addresses.
</div>
</td></tr>
<tr><td><a href="Netstring_pcre.html#TYPEsplit_result">split_result</a> [<a href="Netstring_pcre.html">Netstring_pcre</a>]</td>
<td></td></tr>
<tr><td><a href="Netstring_str.html#TYPEsplit_result">split_result</a> [<a href="Netstring_str.html">Netstring_str</a>]</td>
<td></td></tr>
<tr><td><a href="Netpop.html#TYPEstate">state</a> [<a href="Netpop.html">Netpop</a>]</td>
<td></td></tr>
<tr><td><a href="Http_client.html#TYPEstatus">status</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
Condensed status information of a HTTP call: <code class="code">`Unserved</code>: The call has not yet been finished, <code class="code">`HTTP_protocol_error e</code>: An error on HTTP level occurred. Corresponds
to the exception <code class="code">Http_protocol</code>., <code class="code">`Successful</code>: The call is successful, and the response code is between
200 and 299., <code class="code">`Redirection</code>: The call is successful, and the response code is
between 300 and 399., <code class="code">`Client_error</code>: The call failed with a response code between 400 and
499., <code class="code">`Server_error</code>: The call failed for any other reason.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEstatus">status</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEstatus_line">status_line</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td><div class="info">
= (code, phrase)
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEstd_activation">std_activation</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
The way the <code class="code">Netcgi_types.cgi_activation</code> object is created.
</div>
</td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEstd_activation_options">std_activation_options</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
These are options for <code class="code">`Std_activation</code>.
</div>
</td></tr>
<tr><td><a href="Netmime.html#TYPEstore">store</a> [<a href="Netmime.html">Netmime</a>]</td>
<td><div class="info">
Specifies where to store the body of a mail message.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_types.html#TYPEstore">store</a> [<a href="Netcgi1_compat.Netcgi_types.html">Netcgi1_compat.Netcgi_types</a>]</td>
<td><div class="info">
Embedded in the single place of use.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.html#TYPEstore">store</a> [<a href="Netcgi_common.html">Netcgi_common</a>]</td>
<td></td></tr>
<tr><td><a href="Ftp_client.html#TYPEstructure">structure</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
The client supports two structures: <code class="code">`File_structure</code>: Files are simply contiguous streams of bytes, <code class="code">`Record_structure</code>: Files are sequences of records. FTP does
not make a difference between variable and fixed length records.
It is not forbidden that the records are themselves structured
into lines, in fact it can happen that end-of-line markers are
contained in binary records. Operating systems that support
record-structured files often store text files in this format, i.e.
every line is stored in its own record, without end-of-line marker.
If record structure is selected by a STRU command, it is recommended
to use the classes <a href="Ftp_data_endpoint.out_record_channel.html"><code class="code">Ftp_data_endpoint.out_record_channel</code></a> and
<a href="Ftp_data_endpoint.in_record_channel.html"><code class="code">Ftp_data_endpoint.in_record_channel</code></a> for the local representation
of the files, otherwise the records may be incorrectly mapped
to the local conventions.
Page-structured files (i.e.
</div>
</td></tr>
<tr><td><a href="Http_client.html#TYPEsynchronization">synchronization</a> [<a href="Http_client.html">Http_client</a>]</td>
<td><div class="info">
This type determines whether to keep requests and responses
synchronized or not.
</div>
</td></tr>
<tr><td><a href="Shell_sys.html#TYPEsystem_handler">system_handler</a> [<a href="Shell_sys.html">Shell_sys</a>]</td>
<td><div class="info">
There are two record components:
</div>
</td></tr>
<tr><td align="left"><br>T</td></tr>
<tr><td><a href="Rpc_server.html#TYPEt">t</a> [<a href="Rpc_server.html">Rpc_server</a>]</td>
<td><div class="info">
represents a server for an RPC program
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper.html#TYPEt">t</a> [<a href="Rpc_portmapper.html">Rpc_portmapper</a>]</td>
<td><div class="info">
represents a client for the portmapper
</div>
</td></tr>
<tr><td><a href="Rpc_simple_client.html#TYPEt">t</a> [<a href="Rpc_simple_client.html">Rpc_simple_client</a>]</td>
<td><div class="info">
The type of simple clients
</div>
</td></tr>
<tr><td><a href="Rpc_client.html#TYPEt">t</a> [<a href="Rpc_client.html">Rpc_client</a>]</td>
<td><div class="info">
The type of RPC clients
</div>
</td></tr>
<tr><td><a href="Rpc_program.html#TYPEt">t</a> [<a href="Rpc_program.html">Rpc_program</a>]</td>
<td><div class="info">
Type of RPC programs
</div>
</td></tr>
<tr><td><a href="Rpc_key_service.html#TYPEt">t</a> [<a href="Rpc_key_service.html">Rpc_key_service</a>]</td>
<td><div class="info">
represents a client of the keyserv daemon
</div>
</td></tr>
<tr><td><a href="Netdate.html#TYPEt">t</a> [<a href="Netdate.html">Netdate</a>]</td>
<td></td></tr>
<tr><td><a href="Netbuffer.html#TYPEt">t</a> [<a href="Netbuffer.html">Netbuffer</a>]</td>
<td></td></tr>
<tr><td><a href="Netaddress.html#TYPEt">t</a> [<a href="Netaddress.html">Netaddress</a>]</td>
<td><div class="info">
The union of <code class="code">mailbox</code> and <code class="code">group</code>
</div>
</td></tr>
<tr><td><a href="Netshm_array.html#TYPEt">t</a> [<a href="Netshm_array.html">Netshm_array</a>]</td>
<td></td></tr>
<tr><td><a href="Netshm_hashtbl.html#TYPEt">t</a> [<a href="Netshm_hashtbl.html">Netshm_hashtbl</a>]</td>
<td></td></tr>
<tr><td><a href="Netcgi.Cookie.html#TYPEt">t</a> [<a href="Netcgi.Cookie.html">Netcgi.Cookie</a>]</td>
<td><div class="info">
Mutable cookie type.
</div>
</td></tr>
<tr><td><a href="Netcgi_common.Cookie.html#TYPEt">t</a> [<a href="Netcgi_common.Cookie.html">Netcgi_common.Cookie</a>]</td>
<td></td></tr>
<tr><td><a href="Equeue.html#TYPEt">t</a> [<a href="Equeue.html">Equeue</a>]</td>
<td><div class="info">
This is the type of an event system with events of type 'a
</div>
</td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_callit'arg">t_PMAP'V2'pmapproc_callit'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_callit'res">t_PMAP'V2'pmapproc_callit'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_dump'arg">t_PMAP'V2'pmapproc_dump'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_dump'res">t_PMAP'V2'pmapproc_dump'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_getport'arg">t_PMAP'V2'pmapproc_getport'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_getport'res">t_PMAP'V2'pmapproc_getport'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_null'arg">t_PMAP'V2'pmapproc_null'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_null'res">t_PMAP'V2'pmapproc_null'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_set'arg">t_PMAP'V2'pmapproc_set'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_set'res">t_PMAP'V2'pmapproc_set'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_unset'arg">t_PMAP'V2'pmapproc_unset'arg</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_portmapper_aux.html#TYPEt_PMAP'V2'pmapproc_unset'res">t_PMAP'V2'pmapproc_unset'res</a> [<a href="Rpc_portmapper_aux.html">Rpc_portmapper_aux</a>]</td>
<td></td></tr>
<tr><td><a href="Telnet_client.html#TYPEtelnet_command">telnet_command</a> [<a href="Telnet_client.html">Telnet_client</a>]</td>
<td><div class="info">
A <code class="code">telnet_command</code> is the interpretation of the octets in a Telnet
session, i.e.
</div>
</td></tr>
<tr><td><a href="Telnet_client.html#TYPEtelnet_connector">telnet_connector</a> [<a href="Telnet_client.html">Telnet_client</a>]</td>
<td><div class="info">
Connectors: <code class="code">Telnet_connect(host,port)</code>: The client connects to this port., <code class="code">Telnet_socket s</code>: The client uses an already connected socket.
Why <code class="code">Telnet_socket</code>? Telnet is a symmetrical protocol; client and servers
implement the same protocol features (the only difference is the
environment: a client is typically connected with a real terminal; a server
is connected with a pseudo terminal).
</div>
</td></tr>
<tr><td><a href="Telnet_client.html#TYPEtelnet_negotiated_option">telnet_negotiated_option</a> [<a href="Telnet_client.html">Telnet_client</a>]</td>
<td><div class="info">
<code class="code">telnet_negotiated_option</code>: names for the most common options, and
the generic name <code class="code">Telnet_option</code> for other options.
</div>
</td></tr>
<tr><td><a href="Telnet_client.html#TYPEtelnet_option_state">telnet_option_state</a> [<a href="Telnet_client.html">Telnet_client</a>]</td>
<td><div class="info">
An option has one of three states: <code class="code">Not_negotiated</code>: There was no negotiation about the option. This means
that the option is turned off (but this client is allowed to reject
it explicitly), <code class="code">Accepted</code>: Both sides have accepted the option., <code class="code">Rejected</code>: One side has rejected the option. This also means that the
option is off, but the client refuses to send further acknoledgements
that the option is off (to avoid endless negotiation loops).
</div>
</td></tr>
<tr><td><a href="Telnet_client.html#TYPEtelnet_options">telnet_options</a> [<a href="Telnet_client.html">Telnet_client</a>]</td>
<td><div class="info">
<code class="code">telnet_options</code>: modifies the behaviour of the client.
</div>
</td></tr>
<tr><td><a href="Ftp_data_endpoint.html#TYPEtext_data_repr">text_data_repr</a> [<a href="Ftp_data_endpoint.html">Ftp_data_endpoint</a>]</td>
<td><div class="info">
Possible representation of text data:
<code class="code">`ASCII</code> means an ASCII-compatible encoding where the newline
character is represented by CR/LF.
</div>
</td></tr>
<tr><td><a href="Nethttpd_kernel.html#TYPEtransfer_coding">transfer_coding</a> [<a href="Nethttpd_kernel.html">Nethttpd_kernel</a>]</td>
<td></td></tr>
<tr><td><a href="Ftp_client.html#TYPEtransmission_mode">transmission_mode</a> [<a href="Ftp_client.html">Ftp_client</a>]</td>
<td><div class="info">
The transmission mode selects how the data are encoded in the data
connection.
</div>
</td></tr>
<tr><td><a href="Ftp_data_endpoint.html#TYPEtransmission_mode">transmission_mode</a> [<a href="Ftp_data_endpoint.html">Ftp_data_endpoint</a>]</td>
<td><div class="info">
The transmission mode as described in RFC 959.
</div>
</td></tr>
<tr><td align="left"><br>U</td></tr>
<tr><td><a href="Rtypes.html#TYPEuint4">uint4</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
32 bit unsigned integer
</div>
</td></tr>
<tr><td><a href="Rtypes.html#TYPEuint8">uint8</a> [<a href="Rtypes.html">Rtypes</a>]</td>
<td><div class="info">
64 bit unsigned integer
</div>
</td></tr>
<tr><td><a href="Netulex.ULB.html#TYPEunicode_lexbuf">unicode_lexbuf</a> [<a href="Netulex.ULB.html">Netulex.ULB</a>]</td>
<td></td></tr>
<tr><td><a href="Nethttpd_services.html#TYPEuri_distributor">uri_distributor</a> [<a href="Nethttpd_services.html">Nethttpd_services</a>]</td>
<td><div class="info">
Describes that services are bound to URI prefixes.
</div>
</td></tr>
<tr><td><a href="Neturl.html#TYPEurl">url</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Values of type <code class="code">url</code> describe concrete URLs.
</div>
</td></tr>
<tr><td><a href="Neturl.html#TYPEurl_syntax">url_syntax</a> [<a href="Neturl.html">Neturl</a>]</td>
<td><div class="info">
Values of type <code class="code">url_syntax</code> describe which components of an URL are
recognized, which are allowed (and optional), and which are required.
</div>
</td></tr>
<tr><td><a href="Neturl.html#TYPEurl_syntax_option">url_syntax_option</a> [<a href="Neturl.html">Neturl</a>]</td>
<td></td></tr>
<tr><td><a href="Rpc_auth_sys.html#TYPEuser_name_format">user_name_format</a> [<a href="Rpc_auth_sys.html">Rpc_auth_sys</a>]</td>
<td><div class="info">
How <code class="code">Rpc_server.get_user</code> returns the user as string: <code class="code">`Full</code>: The format includes all transmitted details:
<code class="code">"<uid>.<gid>.<gid1>.<gid2>...@<hostname>"</code>.
All user and group IDs are numeric. The first two numbers, <uid> and
<gid> are always present. The other numbers are the supplementary
group IDs and can be omitted. The <hostname> is the name passed in
the credentials., <code class="code">`UID</code>: The string is the numeric user ID, <code class="code">`Custom f</code>: The string is returned by the function <code class="code">f</code>. The
arguments are <code class="code">uid</code>, <code class="code">gid</code>, the array of the supplementary
group IDs and the hostname.
</div>
</td></tr>
<tr><td align="left"><br>W</td></tr>
<tr><td><a href="Unixqueue.html#TYPEwait_id">wait_id</a> [<a href="Unixqueue.html">Unixqueue</a>]</td>
<td><div class="info">
A wait identifier is used to distinguish between several
timers, see type <code class="code">operation</code>.
</div>
</td></tr>
<tr><td><a href="Netcgi1_compat.Netcgi_env.html#TYPEworkaround">workaround</a> [<a href="Netcgi1_compat.Netcgi_env.html">Netcgi1_compat.Netcgi_env</a>]</td>
<td><div class="info">
The <code class="code">Work_around_</code> part has been dropped as it is clear at
the spot of use.
</div>
</td></tr>
<tr><td><a href="Netshm.html#TYPEwrite_op">write_op</a> [<a href="Netshm.html">Netshm</a>]</td>
<td></td></tr>
<tr><td align="left"><br>X</td></tr>
<tr><td><a href="Xdr.html#TYPExdr_type">xdr_type</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
This is the validated version of <code class="code">xdr_type_term</code>.
</div>
</td></tr>
<tr><td><a href="Xdr.html#TYPExdr_type_system">xdr_type_system</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
A validated type system.
</div>
</td></tr>
<tr><td><a href="Xdr.html#TYPExdr_type_term">xdr_type_term</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
<tr><td><a href="Xdr.html#TYPExdr_type_term_system">xdr_type_term_system</a> [<a href="Xdr.html">Xdr</a>]</td>
<td><div class="info">
Bind names to types.
</div>
</td></tr>
<tr><td><a href="Xdr.html#TYPExdr_value">xdr_value</a> [<a href="Xdr.html">Xdr</a>]</td>
<td></td></tr>
</table><br>
</body>
</html>
|