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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="Start" href="index.html">
<link rel="previous" href="Nethttp.Cookie.html">
<link rel="Up" href="Nethttp.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of extensions" rel=Appendix href="index_extensions.html">
<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of class attributes" rel=Appendix href="index_attributes.html">
<link title="Index of class methods" rel=Appendix href="index_methods.html">
<link title="Index of classes" rel=Appendix href="index_classes.html">
<link title="Index of class types" rel=Appendix href="index_class_types.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Index of module types" rel=Appendix href="index_module_types.html">
<link title="Uq_gtk" rel="Chapter" href="Uq_gtk.html">
<link title="Uq_tcl" rel="Chapter" href="Uq_tcl.html">
<link title="Equeue" rel="Chapter" href="Equeue.html">
<link title="Unixqueue" rel="Chapter" href="Unixqueue.html">
<link title="Unixqueue_pollset" rel="Chapter" href="Unixqueue_pollset.html">
<link title="Unixqueue_select" rel="Chapter" href="Unixqueue_select.html">
<link title="Uq_resolver" rel="Chapter" href="Uq_resolver.html">
<link title="Uq_engines" rel="Chapter" href="Uq_engines.html">
<link title="Uq_multiplex" rel="Chapter" href="Uq_multiplex.html">
<link title="Uq_transfer" rel="Chapter" href="Uq_transfer.html">
<link title="Uq_socks5" rel="Chapter" href="Uq_socks5.html">
<link title="Uq_io" rel="Chapter" href="Uq_io.html">
<link title="Uq_lwt" rel="Chapter" href="Uq_lwt.html">
<link title="Uq_libevent" rel="Chapter" href="Uq_libevent.html">
<link title="Uq_mt" rel="Chapter" href="Uq_mt.html">
<link title="Uq_client" rel="Chapter" href="Uq_client.html">
<link title="Uq_server" rel="Chapter" href="Uq_server.html">
<link title="Uq_datagram" rel="Chapter" href="Uq_datagram.html">
<link title="Uq_engines_compat" rel="Chapter" href="Uq_engines_compat.html">
<link title="Equeue_intro" rel="Chapter" href="Equeue_intro.html">
<link title="Equeue_howto" rel="Chapter" href="Equeue_howto.html">
<link title="Netcamlbox" rel="Chapter" href="Netcamlbox.html">
<link title="Netcgi_apache" rel="Chapter" href="Netcgi_apache.html">
<link title="Netcgi_modtpl" rel="Chapter" href="Netcgi_modtpl.html">
<link title="Netcgi_plex" rel="Chapter" href="Netcgi_plex.html">
<link title="Netcgi_common" rel="Chapter" href="Netcgi_common.html">
<link title="Netcgi" rel="Chapter" href="Netcgi.html">
<link title="Netcgi_ajp" rel="Chapter" href="Netcgi_ajp.html">
<link title="Netcgi_scgi" rel="Chapter" href="Netcgi_scgi.html">
<link title="Netcgi_cgi" rel="Chapter" href="Netcgi_cgi.html">
<link title="Netcgi_fcgi" rel="Chapter" href="Netcgi_fcgi.html">
<link title="Netcgi_dbi" rel="Chapter" href="Netcgi_dbi.html">
<link title="Netcgi1_compat" rel="Chapter" href="Netcgi1_compat.html">
<link title="Netcgi_test" rel="Chapter" href="Netcgi_test.html">
<link title="Netcgi_porting" rel="Chapter" href="Netcgi_porting.html">
<link title="Nethttp_client_conncache" rel="Chapter" href="Nethttp_client_conncache.html">
<link title="Nethttp_client" rel="Chapter" href="Nethttp_client.html">
<link title="Nettelnet_client" rel="Chapter" href="Nettelnet_client.html">
<link title="Netftp_data_endpoint" rel="Chapter" href="Netftp_data_endpoint.html">
<link title="Netftp_client" rel="Chapter" href="Netftp_client.html">
<link title="Nethttp_fs" rel="Chapter" href="Nethttp_fs.html">
<link title="Netftp_fs" rel="Chapter" href="Netftp_fs.html">
<link title="Netsmtp" rel="Chapter" href="Netsmtp.html">
<link title="Netpop" rel="Chapter" href="Netpop.html">
<link title="Netldap" rel="Chapter" href="Netldap.html">
<link title="Netclient_tut" rel="Chapter" href="Netclient_tut.html">
<link title="Netgss_bindings" rel="Chapter" href="Netgss_bindings.html">
<link title="Netgss" rel="Chapter" href="Netgss.html">
<link title="Nethttpd_types" rel="Chapter" href="Nethttpd_types.html">
<link title="Nethttpd_kernel" rel="Chapter" href="Nethttpd_kernel.html">
<link title="Nethttpd_reactor" rel="Chapter" href="Nethttpd_reactor.html">
<link title="Nethttpd_engine" rel="Chapter" href="Nethttpd_engine.html">
<link title="Nethttpd_services" rel="Chapter" href="Nethttpd_services.html">
<link title="Nethttpd_plex" rel="Chapter" href="Nethttpd_plex.html">
<link title="Nethttpd_util" rel="Chapter" href="Nethttpd_util.html">
<link title="Nethttpd_intro" rel="Chapter" href="Nethttpd_intro.html">
<link title="Netmcore" rel="Chapter" href="Netmcore.html">
<link title="Netmcore_camlbox" rel="Chapter" href="Netmcore_camlbox.html">
<link title="Netmcore_mempool" rel="Chapter" href="Netmcore_mempool.html">
<link title="Netmcore_heap" rel="Chapter" href="Netmcore_heap.html">
<link title="Netmcore_ref" rel="Chapter" href="Netmcore_ref.html">
<link title="Netmcore_array" rel="Chapter" href="Netmcore_array.html">
<link title="Netmcore_sem" rel="Chapter" href="Netmcore_sem.html">
<link title="Netmcore_mutex" rel="Chapter" href="Netmcore_mutex.html">
<link title="Netmcore_condition" rel="Chapter" href="Netmcore_condition.html">
<link title="Netmcore_queue" rel="Chapter" href="Netmcore_queue.html">
<link title="Netmcore_buffer" rel="Chapter" href="Netmcore_buffer.html">
<link title="Netmcore_matrix" rel="Chapter" href="Netmcore_matrix.html">
<link title="Netmcore_hashtbl" rel="Chapter" href="Netmcore_hashtbl.html">
<link title="Netmcore_process" rel="Chapter" href="Netmcore_process.html">
<link title="Netmcore_tut" rel="Chapter" href="Netmcore_tut.html">
<link title="Netmcore_basics" rel="Chapter" href="Netmcore_basics.html">
<link title="Netplex_types" rel="Chapter" href="Netplex_types.html">
<link title="Netplex_mp" rel="Chapter" href="Netplex_mp.html">
<link title="Netplex_mt" rel="Chapter" href="Netplex_mt.html">
<link title="Netplex_log" rel="Chapter" href="Netplex_log.html">
<link title="Netplex_controller" rel="Chapter" href="Netplex_controller.html">
<link title="Netplex_container" rel="Chapter" href="Netplex_container.html">
<link title="Netplex_sockserv" rel="Chapter" href="Netplex_sockserv.html">
<link title="Netplex_workload" rel="Chapter" href="Netplex_workload.html">
<link title="Netplex_main" rel="Chapter" href="Netplex_main.html">
<link title="Netplex_config" rel="Chapter" href="Netplex_config.html">
<link title="Netplex_kit" rel="Chapter" href="Netplex_kit.html">
<link title="Rpc_netplex" rel="Chapter" href="Rpc_netplex.html">
<link title="Netplex_cenv" rel="Chapter" href="Netplex_cenv.html">
<link title="Netplex_semaphore" rel="Chapter" href="Netplex_semaphore.html">
<link title="Netplex_sharedvar" rel="Chapter" href="Netplex_sharedvar.html">
<link title="Netplex_mutex" rel="Chapter" href="Netplex_mutex.html">
<link title="Netplex_encap" rel="Chapter" href="Netplex_encap.html">
<link title="Netplex_mbox" rel="Chapter" href="Netplex_mbox.html">
<link title="Netplex_internal" rel="Chapter" href="Netplex_internal.html">
<link title="Netplex_intro" rel="Chapter" href="Netplex_intro.html">
<link title="Netplex_advanced" rel="Chapter" href="Netplex_advanced.html">
<link title="Netplex_admin" rel="Chapter" href="Netplex_admin.html">
<link title="Netshm" rel="Chapter" href="Netshm.html">
<link title="Netshm_data" rel="Chapter" href="Netshm_data.html">
<link title="Netshm_hashtbl" rel="Chapter" href="Netshm_hashtbl.html">
<link title="Netshm_array" rel="Chapter" href="Netshm_array.html">
<link title="Netshm_intro" rel="Chapter" href="Netshm_intro.html">
<link title="Netstring_pcre" rel="Chapter" href="Netstring_pcre.html">
<link title="Netconversion" rel="Chapter" href="Netconversion.html">
<link title="Netchannels" rel="Chapter" href="Netchannels.html">
<link title="Netstream" rel="Chapter" href="Netstream.html">
<link title="Netmime_string" rel="Chapter" href="Netmime_string.html">
<link title="Netmime" rel="Chapter" href="Netmime.html">
<link title="Netsendmail" rel="Chapter" href="Netsendmail.html">
<link title="Neturl" rel="Chapter" href="Neturl.html">
<link title="Netaddress" rel="Chapter" href="Netaddress.html">
<link title="Netbuffer" rel="Chapter" href="Netbuffer.html">
<link title="Netmime_header" rel="Chapter" href="Netmime_header.html">
<link title="Netmime_channels" rel="Chapter" href="Netmime_channels.html">
<link title="Neturl_ldap" rel="Chapter" href="Neturl_ldap.html">
<link title="Netdate" rel="Chapter" href="Netdate.html">
<link title="Netencoding" rel="Chapter" href="Netencoding.html">
<link title="Netulex" rel="Chapter" href="Netulex.html">
<link title="Netaccel" rel="Chapter" href="Netaccel.html">
<link title="Netaccel_link" rel="Chapter" href="Netaccel_link.html">
<link title="Nethtml" rel="Chapter" href="Nethtml.html">
<link title="Netstring_str" rel="Chapter" href="Netstring_str.html">
<link title="Netmappings" rel="Chapter" href="Netmappings.html">
<link title="Netaux" rel="Chapter" href="Netaux.html">
<link title="Nethttp" rel="Chapter" href="Nethttp.html">
<link title="Netpagebuffer" rel="Chapter" href="Netpagebuffer.html">
<link title="Netfs" rel="Chapter" href="Netfs.html">
<link title="Netglob" rel="Chapter" href="Netglob.html">
<link title="Netauth" rel="Chapter" href="Netauth.html">
<link title="Netsockaddr" rel="Chapter" href="Netsockaddr.html">
<link title="Netnumber" rel="Chapter" href="Netnumber.html">
<link title="Netxdr_mstring" rel="Chapter" href="Netxdr_mstring.html">
<link title="Netxdr" rel="Chapter" href="Netxdr.html">
<link title="Netcompression" rel="Chapter" href="Netcompression.html">
<link title="Netunichar" rel="Chapter" href="Netunichar.html">
<link title="Netasn1" rel="Chapter" href="Netasn1.html">
<link title="Netasn1_encode" rel="Chapter" href="Netasn1_encode.html">
<link title="Netoid" rel="Chapter" href="Netoid.html">
<link title="Netstring_tstring" rel="Chapter" href="Netstring_tstring.html">
<link title="Netdn" rel="Chapter" href="Netdn.html">
<link title="Netx509" rel="Chapter" href="Netx509.html">
<link title="Netascii_armor" rel="Chapter" href="Netascii_armor.html">
<link title="Nettls_support" rel="Chapter" href="Nettls_support.html">
<link title="Netmech_scram" rel="Chapter" href="Netmech_scram.html">
<link title="Netmech_scram_gssapi" rel="Chapter" href="Netmech_scram_gssapi.html">
<link title="Netmech_scram_sasl" rel="Chapter" href="Netmech_scram_sasl.html">
<link title="Netmech_scram_http" rel="Chapter" href="Netmech_scram_http.html">
<link title="Netgssapi_support" rel="Chapter" href="Netgssapi_support.html">
<link title="Netgssapi_auth" rel="Chapter" href="Netgssapi_auth.html">
<link title="Netchannels_crypto" rel="Chapter" href="Netchannels_crypto.html">
<link title="Netx509_pubkey" rel="Chapter" href="Netx509_pubkey.html">
<link title="Netx509_pubkey_crypto" rel="Chapter" href="Netx509_pubkey_crypto.html">
<link title="Netsaslprep" rel="Chapter" href="Netsaslprep.html">
<link title="Netmech_plain_sasl" rel="Chapter" href="Netmech_plain_sasl.html">
<link title="Netmech_crammd5_sasl" rel="Chapter" href="Netmech_crammd5_sasl.html">
<link title="Netmech_digest_sasl" rel="Chapter" href="Netmech_digest_sasl.html">
<link title="Netmech_digest_http" rel="Chapter" href="Netmech_digest_http.html">
<link title="Netmech_krb5_sasl" rel="Chapter" href="Netmech_krb5_sasl.html">
<link title="Netmech_gs2_sasl" rel="Chapter" href="Netmech_gs2_sasl.html">
<link title="Netmech_spnego_http" rel="Chapter" href="Netmech_spnego_http.html">
<link title="Netchannels_tut" rel="Chapter" href="Netchannels_tut.html">
<link title="Netmime_tut" rel="Chapter" href="Netmime_tut.html">
<link title="Netsendmail_tut" rel="Chapter" href="Netsendmail_tut.html">
<link title="Netulex_tut" rel="Chapter" href="Netulex_tut.html">
<link title="Neturl_tut" rel="Chapter" href="Neturl_tut.html">
<link title="Netsys" rel="Chapter" href="Netsys.html">
<link title="Netsys_posix" rel="Chapter" href="Netsys_posix.html">
<link title="Netsys_pollset" rel="Chapter" href="Netsys_pollset.html">
<link title="Netlog" rel="Chapter" href="Netlog.html">
<link title="Netexn" rel="Chapter" href="Netexn.html">
<link title="Netsys_win32" rel="Chapter" href="Netsys_win32.html">
<link title="Netsys_pollset_posix" rel="Chapter" href="Netsys_pollset_posix.html">
<link title="Netsys_pollset_win32" rel="Chapter" href="Netsys_pollset_win32.html">
<link title="Netsys_pollset_generic" rel="Chapter" href="Netsys_pollset_generic.html">
<link title="Netsys_signal" rel="Chapter" href="Netsys_signal.html">
<link title="Netsys_oothr" rel="Chapter" href="Netsys_oothr.html">
<link title="Netsys_xdr" rel="Chapter" href="Netsys_xdr.html">
<link title="Netsys_rng" rel="Chapter" href="Netsys_rng.html">
<link title="Netsys_crypto_types" rel="Chapter" href="Netsys_crypto_types.html">
<link title="Netsys_types" rel="Chapter" href="Netsys_types.html">
<link title="Netsys_mem" rel="Chapter" href="Netsys_mem.html">
<link title="Netsys_tmp" rel="Chapter" href="Netsys_tmp.html">
<link title="Netsys_sem" rel="Chapter" href="Netsys_sem.html">
<link title="Netsys_pmanage" rel="Chapter" href="Netsys_pmanage.html">
<link title="Netsys_crypto" rel="Chapter" href="Netsys_crypto.html">
<link title="Netsys_tls" rel="Chapter" href="Netsys_tls.html">
<link title="Netsys_ciphers" rel="Chapter" href="Netsys_ciphers.html">
<link title="Netsys_digests" rel="Chapter" href="Netsys_digests.html">
<link title="Netsys_crypto_modes" rel="Chapter" href="Netsys_crypto_modes.html">
<link title="Netsys_gssapi" rel="Chapter" href="Netsys_gssapi.html">
<link title="Netsys_sasl_types" rel="Chapter" href="Netsys_sasl_types.html">
<link title="Netsys_sasl" rel="Chapter" href="Netsys_sasl.html">
<link title="Netsys_polypipe" rel="Chapter" href="Netsys_polypipe.html">
<link title="Netsys_polysocket" rel="Chapter" href="Netsys_polysocket.html">
<link title="Netsys_global" rel="Chapter" href="Netsys_global.html">
<link title="Nettls_gnutls_bindings" rel="Chapter" href="Nettls_gnutls_bindings.html">
<link title="Nettls_nettle_bindings" rel="Chapter" href="Nettls_nettle_bindings.html">
<link title="Nettls_gnutls" rel="Chapter" href="Nettls_gnutls.html">
<link title="Netunidata" rel="Chapter" href="Netunidata.html">
<link title="Netgzip" rel="Chapter" href="Netgzip.html">
<link title="Rpc_auth_local" rel="Chapter" href="Rpc_auth_local.html">
<link title="Rpc_xti_client" rel="Chapter" href="Rpc_xti_client.html">
<link title="Rpc" rel="Chapter" href="Rpc.html">
<link title="Rpc_program" rel="Chapter" href="Rpc_program.html">
<link title="Rpc_util" rel="Chapter" href="Rpc_util.html">
<link title="Rpc_portmapper_aux" rel="Chapter" href="Rpc_portmapper_aux.html">
<link title="Rpc_packer" rel="Chapter" href="Rpc_packer.html">
<link title="Rpc_transport" rel="Chapter" href="Rpc_transport.html">
<link title="Rpc_client" rel="Chapter" href="Rpc_client.html">
<link title="Rpc_simple_client" rel="Chapter" href="Rpc_simple_client.html">
<link title="Rpc_portmapper_clnt" rel="Chapter" href="Rpc_portmapper_clnt.html">
<link title="Rpc_portmapper" rel="Chapter" href="Rpc_portmapper.html">
<link title="Rpc_server" rel="Chapter" href="Rpc_server.html">
<link title="Rpc_auth_sys" rel="Chapter" href="Rpc_auth_sys.html">
<link title="Rpc_auth_gssapi" rel="Chapter" href="Rpc_auth_gssapi.html">
<link title="Rpc_proxy" rel="Chapter" href="Rpc_proxy.html">
<link title="Rpc_intro" rel="Chapter" href="Rpc_intro.html">
<link title="Rpc_mapping_ref" rel="Chapter" href="Rpc_mapping_ref.html">
<link title="Rpc_intro_gss" rel="Chapter" href="Rpc_intro_gss.html">
<link title="Shell_sys" rel="Chapter" href="Shell_sys.html">
<link title="Shell" rel="Chapter" href="Shell.html">
<link title="Shell_uq" rel="Chapter" href="Shell_uq.html">
<link title="Shell_fs" rel="Chapter" href="Shell_fs.html">
<link title="Shell_intro" rel="Chapter" href="Shell_intro.html">
<link title="Intro" rel="Chapter" href="Intro.html">
<link title="Platform" rel="Chapter" href="Platform.html">
<link title="Foreword" rel="Chapter" href="Foreword.html">
<link title="Ipv6" rel="Chapter" href="Ipv6.html">
<link title="Regexp" rel="Chapter" href="Regexp.html">
<link title="Tls" rel="Chapter" href="Tls.html">
<link title="Crypto" rel="Chapter" href="Crypto.html">
<link title="Authentication" rel="Chapter" href="Authentication.html">
<link title="Credentials" rel="Chapter" href="Credentials.html">
<link title="Gssapi" rel="Chapter" href="Gssapi.html">
<link title="Ocamlnet4" rel="Chapter" href="Ocamlnet4.html">
<link title="Get" rel="Chapter" href="Get.html"><title>Ocamlnet 4 Reference Manual : Nethttp.Header</title>
</head>
<body>
<div class="navbar"><a class="pre" href="Nethttp.Cookie.html" title="Nethttp.Cookie">Previous</a>
<a class="up" href="Nethttp.html" title="Nethttp">Up</a>
</div>
<h1>Module <a href="type_Nethttp.Header.html">Nethttp.Header</a></h1>
<pre><span id="MODULEHeader"><span class="keyword">module</span> Header</span>: <code class="code">sig</code> <a href="Nethttp.Header.html">..</a> <code class="code">end</code></pre><hr width="100%">
<p>This module is a parser/printer for the header fields used in HTTP/1.1.
The <code class="code">get_*</code> functions generally raise <code class="code">Not_found</code> when the queried header
is not present. If the syntax of the field is a comma-separated list of
multiple values, the <code class="code">get_*</code> functions generally merge all headers of
the same type. The order is preserved in this case. The list <code class="code">[]</code> means
that the header exists, but only with empty value. For example,</p>
<pre class="codepre"><code class="code"> Accept: text/html
Accept: text/plain
</code></pre>
<p>would be returned as <code class="code">["text/html",[],[]; "text/plain", [],[]]</code>
by <code class="code">get_accept</code>. The header</p>
<pre class="codepre"><code class="code">Accept:</code></pre>
<p>would be returned as <code class="code">[]</code>.</p>
<p>The <code class="code">set_*</code> functions generally produce only a single header with comma-
separated values. Existing header are overwritten/removed.</p>
<p>To remove a header, simply use the <code class="code">delete_field</code> method of <code class="code">http_header</code>.</p>
<p>Error behaviour: The <code class="code">get_*</code> functions raise <code class="code">Bad_header_field</code>
when they cannot parse a header field. The <code class="code">set_*</code> functions
raise <code class="code">Invalid_argument</code> when an invalid value is passed to them
(only very few functions do that). The argument of both
exceptions is the function name.</p>
<pre><span id="TYPEparam_value"><span class="keyword">type</span> <code class="type"></code>param_value</span> = <code class="type">[ `Q of string | `V of string ]</code> </pre>
<div class="info ">
<div class="info-desc">
<p>Some parameters may occur quoted and unquoted. In partivular for
authentication it is important to get this aspect right, so we
represent values in two ways:</p>
<ul>
<li><code class="code">`V s</code> is the already decoded value. Originally it could be in
quotes or not, but the parser removed the quotes already.</li>
<li><code class="code">`Q s</code> is a value where <code class="code">s</code> includes the quotes, i.e. it is the
"raw" string.</li>
</ul>
<p>The parsers below always return values in the <code class="code">`V</code> form. For the
printers, you can specify whether to automatically add quotes
(using <code class="code">`V</code>) or to pass the raw values (using <code class="code">`Q</code>) that already
contains the quotes if needed.</p>
</div>
</div>
<pre><span id="TYPEauth_challenge"><span class="keyword">type</span> <code class="type"></code>auth_challenge</span> = <code class="type">string * (string * <a href="Nethttp.Header.html#TYPEparam_value">param_value</a>) list</code> </pre>
<div class="info ">
<div class="info-desc">
<p>The type of a single challenge, used during authentication.
It is interpreted as <code class="code">(mechanism_name, params)</code>. The headers
<code class="code">www-authenticate</code> and <code class="code">proxy-authenticate</code> use this.</p>
<p>See RFC 7235 for general information.</p>
</div>
</div>
<pre><span id="TYPEauth_credentials"><span class="keyword">type</span> <code class="type"></code>auth_credentials</span> = <code class="type">string * (string * <a href="Nethttp.Header.html#TYPEparam_value">param_value</a>) list</code> </pre>
<div class="info ">
<div class="info-desc">
<p>The type of a single credentials response, used during
authentication. It is interpreted as <code class="code">(mechanism_name, params)</code>.
The headers <code class="code">authorize</code> and <code class="code">proxy-authorize</code> use this.</p>
<p>See RFC 7235 for general information.</p>
</div>
</div>
<pre><span id="VALparse_quoted_parameters"><span class="keyword">val</span> parse_quoted_parameters</span> : <code class="type">string -> (string * string) list</code></pre><div class="info ">
<div class="info-desc">
<p>A generic parser for comma-separated parameters in the form
key=value or key="value". Fails if the string cannot be parsed.</p>
</div>
</div>
<pre><span id="VALprint_param_value"><span class="keyword">val</span> print_param_value</span> : <code class="type"><a href="Nethttp.Header.html#TYPEparam_value">param_value</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>returns `Q unchanged, and puts a `V into double quotes if necessary</p>
</div>
</div>
<pre><span id="VALvalue_of_param"><span class="keyword">val</span> value_of_param</span> : <code class="type"><a href="Nethttp.Header.html#TYPEparam_value">param_value</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>return the real value wrapped by `Q or `V</p>
</div>
</div>
<pre><span id="VALget_accept"><span class="keyword">val</span> get_accept</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -><br> (string * (string * string) list * (string * string) list) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Accept</code> header as list of triples <code class="code">(media_range,
media_range_params, accept_params)</code>. If there are
<code class="code">accept_params</code>, the first such parameter is always <code class="code">"q"</code>.</p>
<p>All present <code class="code">Accept</code> headers are merged. The function returns
<code class="code">[]</code> when there is at least one <code class="code">Accept</code> header, but none of
the headers has a non-empty value. The function raises
<code class="code">Not_found</code> if there no such headers at all (which should be
interpreted as <code class="code"> ["*/*",[],[] ] </code>).</p>
</div>
</div>
<pre><span id="VALbest_media_type"><span class="keyword">val</span> best_media_type</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list -> string * (string * string) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the best media type for a header and a list of supported types.
If any type is acceptable, "*/*" will be returned. If no type is
acceptable, "" will be returned.
The supported media types should be sorted such that the best type
is mentioned first.
Of several media types with equal quality the one mentioned first in the
list of supported types is chosen. In case several types in the Accept:
header match the same type in the list of supported types, the most
specific type is chosen.</p>
</div>
</div>
<pre><span id="VALset_accept"><span class="keyword">val</span> set_accept</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -><br> (string * (string * string) list * (string * string) list) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Accept</code> header</p>
</div>
</div>
<pre><span id="VALget_accept_charset"><span class="keyword">val</span> get_accept_charset</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * (string * string) list) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Accept-charset</code> header as list of pairs <code class="code">(charset,params)</code>.
The only mentioned parameter in RFC 2616 is <code class="code">"q"</code>.</p>
<p>All present <code class="code">Accept-charset</code> headers are merged. The function
raises <code class="code">Not_found</code> when there is no <code class="code">Accept-charset</code> header
(which should be interpreted as <code class="code"> ["*",[]] </code>).</p>
</div>
</div>
<pre><span id="VALbest_charset"><span class="keyword">val</span> best_charset</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the best charset for a header and a list of supported charsets.
If any charset is acceptable, "*" will be returned.
The supported charsets should be sorted such that the best charset
is mentioned first.</p>
<p>This function already implements the special handling of ISO-8859-1
mentioned in RFC 2616.</p>
</div>
</div>
<pre><span id="VALset_accept_charset"><span class="keyword">val</span> set_accept_charset</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * (string * string) list) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Accept-charset</code> header</p>
</div>
</div>
<pre><span id="VALget_accept_encoding"><span class="keyword">val</span> get_accept_encoding</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * (string * string) list) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Accept-encoding</code> header as list of pairs <code class="code">(coding,params)</code>.
The only mentioned parameter in RFC 2616 is <code class="code">"q"</code>. The RFC describes
compatibility problems with the "q" parameter.</p>
<p>All present <code class="code">Accept-encoding</code> headers are merged. The function
raises <code class="code">Not_found</code> when there is no <code class="code">Accept-encoding</code> header
(which should be interpreted as <code class="code"> ["identity",[]] </code>). The
return value <code class="code">[]</code> must be interpreted as <code class="code"> ["identity",[]] </code>.</p>
</div>
</div>
<pre><span id="VALbest_encoding"><span class="keyword">val</span> best_encoding</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the best encoding for a header and a list of supported
encodings. If anything else fails, "identity" will be
returned. The supported encodings should be sorted such that
the best encoding is mentioned first.</p>
</div>
</div>
<pre><span id="VALset_accept_encoding"><span class="keyword">val</span> set_accept_encoding</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * (string * string) list) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Accept-encoding</code> header</p>
</div>
</div>
<pre><span id="VALget_accept_language"><span class="keyword">val</span> get_accept_language</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * (string * string) list) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Accept-language</code> header as list of pairs
<code class="code">(lang_range,params)</code>. The only mentioned parameter in RFC
2616 is <code class="code">"q"</code>.</p>
<p>All present <code class="code">Accept-language</code> headers are merged. The function
raises <code class="code">Not_found</code> when there is no <code class="code">Accept-language</code> header
(which should be interpreted as <code class="code"> ["*",[]] </code>).</p>
</div>
</div>
<pre><span id="VALset_accept_language"><span class="keyword">val</span> set_accept_language</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * (string * string) list) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Accept-language</code> header</p>
</div>
</div>
<pre><span id="VALget_accept_ranges"><span class="keyword">val</span> get_accept_ranges</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Accept-ranges</code> header as list of tokens.</p>
<p>All present <code class="code">Accept-ranges</code> headers are merged. The function
raises <code class="code">Not_found</code> when there is no <code class="code">Accept-ranges</code>
header. The RFC leaves it open how this is to be interpreted
in general.</p>
</div>
</div>
<pre><span id="VALset_accept_ranges"><span class="keyword">val</span> set_accept_ranges</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Accept-ranges</code> header</p>
</div>
</div>
<pre><span id="VALget_age"><span class="keyword">val</span> get_age</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> float</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Age</code> header as number</p>
</div>
</div>
<pre><span id="VALset_age"><span class="keyword">val</span> set_age</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> float -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Age</code> header</p>
</div>
</div>
<pre><span id="VALget_allow"><span class="keyword">val</span> get_allow</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Allow</code> header as list of tokens.</p>
<p>All present <code class="code">Allow</code> headers are merged. The function raises <code class="code">Not_found</code>
when there is no <code class="code">Allow</code> header. The RFC leaves it open how this is
to be interpreted in general.</p>
</div>
</div>
<pre><span id="VALset_allow"><span class="keyword">val</span> set_allow</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Allow</code> header</p>
</div>
</div>
<pre><span id="VALget_authentication_info"><span class="keyword">val</span> get_authentication_info</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * <a href="Nethttp.Header.html#TYPEparam_value">param_value</a>) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Authentication-Info</code> header as list <code class="code">auth_params</code>,
or raises <code class="code">Not_found</code> if not present.</p>
</div>
</div>
<pre><span id="VALset_authentication_info"><span class="keyword">val</span> set_authentication_info</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * <a href="Nethttp.Header.html#TYPEparam_value">param_value</a>) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Authentication-Info</code> header.</p>
</div>
</div>
<pre><span id="VALget_authorization"><span class="keyword">val</span> get_authorization</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.Header.html#TYPEauth_credentials">auth_credentials</a></code></pre><div class="info ">
<div class="info-desc">
<p>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.</p>
<p>The "Basic" authentication scheme is represented specially as
<code class="code">("basic", [ "credentials", creds ])</code> where <code class="code">creds</code> are the
Base64-encoded credentials.</p>
<p>At present, parameters are always decoded (<code class="code">`V</code>).</p>
</div>
</div>
<pre><span id="VALset_authorization"><span class="keyword">val</span> set_authorization</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.Header.html#TYPEauth_credentials">auth_credentials</a> -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Authorization</code> header.
The "Basic" authentication scheme is represented as explained for
<code class="code">get_authorization</code>.</p>
</div>
</div>
<pre><span id="VALget_cache_control"><span class="keyword">val</span> get_cache_control</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.html#TYPEcache_control_token">Nethttp.cache_control_token</a> list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Cache-control</code> header as list of tokens.</p>
<p>All present <code class="code">Cache-control</code> headers are merged. The function
raises <code class="code">Not_found</code> when there is no <code class="code">Cache-control</code> header.</p>
</div>
</div>
<pre><span id="VALset_cache_control"><span class="keyword">val</span> set_cache_control</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.html#TYPEcache_control_token">Nethttp.cache_control_token</a> list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Cache-control</code> header</p>
</div>
</div>
<pre><span id="VALget_connection"><span class="keyword">val</span> get_connection</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Connection</code> header as list of tokens.</p>
<p>All present <code class="code">Connection</code> headers are merged. The function
raises <code class="code">Not_found</code> when there is no <code class="code">Connection</code> header.</p>
<p>The Connection header must be ignored when received from a
HTTP/1.0 client.</p>
</div>
</div>
<pre><span id="VALset_connection"><span class="keyword">val</span> set_connection</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Connection</code> header</p>
</div>
</div>
<pre><span id="VALget_content_encoding"><span class="keyword">val</span> get_content_encoding</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Content-encoding</code> header as list of tokens.</p>
<p>All present <code class="code">Content-encoding</code> headers are merged.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when there is no <code class="code">Content-encoding</code> header.</li>
</ul>
</div>
<pre><span id="VALset_content_encoding"><span class="keyword">val</span> set_content_encoding</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Content-encoding</code> header</p>
</div>
</div>
<pre><span id="VALget_content_language"><span class="keyword">val</span> get_content_language</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Content-language</code> header as list of tokens.</p>
<p>All present <code class="code">Content-language</code> headers are merged.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when there is no <code class="code">Content-language</code> header.</li>
</ul>
</div>
<pre><span id="VALset_content_language"><span class="keyword">val</span> set_content_language</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Content-language</code> header</p>
</div>
</div>
<pre><span id="VALget_content_length"><span class="keyword">val</span> get_content_length</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> int64</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Content-length</code> header as number. If the number
is too big for int64, the exception <code class="code">Bad_header_field
"Content-length"</code> will be raised.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_content_length"><span class="keyword">val</span> set_content_length</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> int64 -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Content-length</code> header</p>
</div>
</div>
<pre><span id="VALget_content_location"><span class="keyword">val</span> get_content_location</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Content-location</code> header as string.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_content_location"><span class="keyword">val</span> set_content_location</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Content-location</code> header</p>
</div>
</div>
<pre><span id="VALget_content_md5"><span class="keyword">val</span> get_content_md5</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Content-MD5</code> header as string. The Base64 encoding
has not been touched.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_content_md5"><span class="keyword">val</span> set_content_md5</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Content-MD5</code> header</p>
</div>
</div>
<pre><span id="VALget_content_range"><span class="keyword">val</span> get_content_range</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -><br> [ `Bytes of (int64 * int64) option * int64 option ]</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Content-range</code> header as
<code class="code">`Bytes(byte_range_resp_spec, instance_length)</code>. The option value
<code class="code">None</code> corresponds to "*" in the RFC.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_content_range"><span class="keyword">val</span> set_content_range</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -><br> [ `Bytes of (int64 * int64) option * int64 option ] -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Content-range</code> header</p>
</div>
</div>
<pre><span id="VALget_content_type"><span class="keyword">val</span> get_content_type</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string * (string * string) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Content-type</code> header as pair <code class="code">(media_type, params)</code>.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_content_type"><span class="keyword">val</span> set_content_type</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string * (string * string) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Content-type</code> header</p>
</div>
</div>
<pre><span id="VALget_date"><span class="keyword">val</span> get_date</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> float</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Date</code> header as number (seconds since the Epoch).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_date"><span class="keyword">val</span> set_date</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> float -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Date</code> header</p>
</div>
</div>
<pre><span id="VALget_etag"><span class="keyword">val</span> get_etag</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.html#TYPEetag">Nethttp.etag</a></code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Etag</code> header.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_etag"><span class="keyword">val</span> set_etag</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.html#TYPEetag">Nethttp.etag</a> -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Etag</code> header</p>
</div>
</div>
<pre><span id="VALget_expect"><span class="keyword">val</span> get_expect</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -><br> (string * string option * (string * string) list) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Expect</code> header as list of triples <code class="code">(token,value,params)</code>.</p>
<p>All present <code class="code">Expect</code> headers are merged.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when there is no <code class="code">Expect</code> header.</li>
</ul>
</div>
<pre><span id="VALset_expect"><span class="keyword">val</span> set_expect</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -><br> (string * string option * (string * string) list) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Expect</code> header</p>
</div>
</div>
<pre><span id="VALget_expires"><span class="keyword">val</span> get_expires</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> float</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Expires</code> header as number (seconds since the Epoch).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_expires"><span class="keyword">val</span> set_expires</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> float -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Expires</code> header</p>
</div>
</div>
<pre><span id="VALget_from"><span class="keyword">val</span> get_from</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">From</code> header as string.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_from"><span class="keyword">val</span> set_from</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">From</code> header</p>
</div>
</div>
<pre><span id="VALget_host"><span class="keyword">val</span> get_host</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string * int option</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Host</code> header as pair <code class="code">(host,port)</code>.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_host"><span class="keyword">val</span> set_host</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string * int option -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Host</code> header</p>
</div>
</div>
<pre><span id="VALget_if_match"><span class="keyword">val</span> get_if_match</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.html#TYPEetag">Nethttp.etag</a> list option</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">If-match</code> header. The value <code class="code">None</code> means "*".</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_if_match"><span class="keyword">val</span> set_if_match</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.html#TYPEetag">Nethttp.etag</a> list option -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">If-match</code> header</p>
</div>
</div>
<pre><span id="VALget_if_modified_since"><span class="keyword">val</span> get_if_modified_since</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> float</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">If-modified-since</code> header as number (seconds
since the Epoch).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_if_modified_since"><span class="keyword">val</span> set_if_modified_since</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> float -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">If-modified-since</code> header</p>
</div>
</div>
<pre><span id="VALget_if_none_match"><span class="keyword">val</span> get_if_none_match</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.html#TYPEetag">Nethttp.etag</a> list option</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">If-none-match</code> header. The value <code class="code">None</code> means "*".</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_if_none_match"><span class="keyword">val</span> set_if_none_match</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.html#TYPEetag">Nethttp.etag</a> list option -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">If-none-match</code> header</p>
</div>
</div>
<pre><span id="VALget_if_range"><span class="keyword">val</span> get_if_range</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> [ `Date of float | `Etag of <a href="Nethttp.html#TYPEetag">Nethttp.etag</a> ]</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">If-range</code> header.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_if_range"><span class="keyword">val</span> set_if_range</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> [ `Date of float | `Etag of <a href="Nethttp.html#TYPEetag">Nethttp.etag</a> ] -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">If-range</code> header</p>
</div>
</div>
<pre><span id="VALget_if_unmodified_since"><span class="keyword">val</span> get_if_unmodified_since</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> float</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">If-unmodified-since</code> header as number (seconds
since the Epoch).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_if_unmodified_since"><span class="keyword">val</span> set_if_unmodified_since</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> float -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">If-unmodified-since</code> header</p>
</div>
</div>
<pre><span id="VALget_last_modified"><span class="keyword">val</span> get_last_modified</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> float</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Last-modified</code> header as number (seconds since the Epoch).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_last_modified"><span class="keyword">val</span> set_last_modified</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> float -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Last-modified</code> header</p>
</div>
</div>
<pre><span id="VALget_location"><span class="keyword">val</span> get_location</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Location</code> header as string.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_location"><span class="keyword">val</span> set_location</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Location</code> header</p>
</div>
</div>
<pre><span id="VALget_max_forwards"><span class="keyword">val</span> get_max_forwards</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> int</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Max-forwards</code> header as number.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_max_forwards"><span class="keyword">val</span> set_max_forwards</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> int -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Max-forwards</code> header</p>
</div>
</div>
<pre><span id="VALget_pragma"><span class="keyword">val</span> get_pragma</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * string option) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Pragma</code> header as list of pairs <code class="code">(token,value)</code>.</p>
<p>All present <code class="code">Pragma</code> headers are merged.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when there is no <code class="code">Pragma</code> header.</li>
</ul>
</div>
<pre><span id="VALset_pragma"><span class="keyword">val</span> set_pragma</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * string option) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Pragma</code> header</p>
</div>
</div>
<pre><span id="VALget_proxy_authenticate"><span class="keyword">val</span> get_proxy_authenticate</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.Header.html#TYPEauth_challenge">auth_challenge</a> list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Proxy-authenticate</code> header as list of challenges
<code class="code">(auth_scheme,auth_params)</code>. See also <code class="code">get_www_authenticate</code>.</p>
<p>All present <code class="code">Proxy-authenticate</code> headers are merged.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when there is no <code class="code">Proxy-authenticate</code> header.
At present, parameters are always decoded (<code class="code">`V</code>).</li>
</ul>
</div>
<pre><span id="VALset_proxy_authenticate"><span class="keyword">val</span> set_proxy_authenticate</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.Header.html#TYPEauth_challenge">auth_challenge</a> list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Proxy-authenticate</code> header</p>
</div>
</div>
<pre><span id="VALget_proxy_authentication_info"><span class="keyword">val</span> get_proxy_authentication_info</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * <a href="Nethttp.Header.html#TYPEparam_value">param_value</a>) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Proxy-Authentication-Info</code> header as list
<code class="code">auth_params</code>, or raises <code class="code">Not_found</code> if not present.</p>
</div>
</div>
<pre><span id="VALset_proxy_authentication_info"><span class="keyword">val</span> set_proxy_authentication_info</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * <a href="Nethttp.Header.html#TYPEparam_value">param_value</a>) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Proxy-Authentication-Info</code> header.</p>
</div>
</div>
<pre><span id="VALget_proxy_authorization"><span class="keyword">val</span> get_proxy_authorization</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.Header.html#TYPEauth_credentials">auth_credentials</a></code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Proxy-authorization</code> header as pair
<code class="code">(auth_scheme,auth_params)</code>.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is
missing.
The "Basic" authentication scheme is represented specially as
<code class="code">("basic", [ "credentials", creds ])</code> where <code class="code">creds</code> are the
Base64-encoded credentials.
At present, parameters are always decoded (<code class="code">`V</code>).</li>
</ul>
</div>
<pre><span id="VALset_proxy_authorization"><span class="keyword">val</span> set_proxy_authorization</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.Header.html#TYPEauth_credentials">auth_credentials</a> -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>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>.</p>
</div>
</div>
<pre><span id="VALget_range"><span class="keyword">val</span> get_range</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> [ `Bytes of (int64 option * int64 option) list ]</code></pre><div class="info ">
<div class="info-desc">
<p>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).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_range"><span class="keyword">val</span> set_range</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -><br> [ `Bytes of (int64 option * int64 option) list ] -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Range</code> header</p>
</div>
</div>
<pre><span id="VALget_referer"><span class="keyword">val</span> get_referer</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Referer</code> header as string.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALget_referrer"><span class="keyword">val</span> get_referrer</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Same, for addicts of correct orthography</p>
</div>
</div>
<pre><span id="VALset_referer"><span class="keyword">val</span> set_referer</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Referer</code> header</p>
</div>
</div>
<pre><span id="VALset_referrer"><span class="keyword">val</span> set_referrer</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Same, for addicts of correct orthography</p>
</div>
</div>
<pre><span id="VALget_retry_after"><span class="keyword">val</span> get_retry_after</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> [ `Date of float | `Seconds of int ]</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Retry-after</code> header.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_retry_after"><span class="keyword">val</span> set_retry_after</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> [ `Date of float | `Seconds of int ] -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Retry-after</code> header</p>
</div>
</div>
<pre><span id="VALget_server"><span class="keyword">val</span> get_server</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Server</code> header as uninterpreted string (including
comments).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> when the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_server"><span class="keyword">val</span> set_server</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Server</code> header</p>
</div>
</div>
<pre><span id="VALget_te"><span class="keyword">val</span> get_te</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -><br> (string * (string * string) list * (string * string) list) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">TE</code> header as list of triples
<code class="code">(te_token, te_params, accept_params)</code>.
If there are <code class="code">accept_params</code>, the first such parameter is always <code class="code">"q"</code>.</p>
<p>All present <code class="code">TE</code> headers are merged. The function returns <code class="code">[]</code> when
there is at least one <code class="code">TE</code> header, but none of the headers has a
non-empty value.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> if there no such headers at all.</li>
</ul>
</div>
<pre><span id="VALset_te"><span class="keyword">val</span> set_te</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -><br> (string * (string * string) list * (string * string) list) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">TE</code> header</p>
</div>
</div>
<pre><span id="VALget_trailer"><span class="keyword">val</span> get_trailer</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Trailer</code> header as list of field names.</p>
<p>All present <code class="code">Trailer</code> headers are merged. The function returns
<code class="code">[]</code> when there is at least one <code class="code">Trailer</code> header, but none of
the headers has a non-empty value.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> if there no such headers at all.</li>
</ul>
</div>
<pre><span id="VALset_trailer"><span class="keyword">val</span> set_trailer</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Trailer</code> header</p>
</div>
</div>
<pre><span id="VALget_transfer_encoding"><span class="keyword">val</span> get_transfer_encoding</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * (string * string) list) list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Transfer-encoding</code> header as list of pairs
<code class="code">(token, params)</code>.</p>
<p>All present <code class="code">Transfer-encoding</code> headers are merged. The
function returns <code class="code">[]</code> when there is at least one
<code class="code">Transfer-encoding</code> header, but none of the headers has a
non-empty value.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> if there no such headers at all.</li>
</ul>
</div>
<pre><span id="VALset_transfer_encoding"><span class="keyword">val</span> set_transfer_encoding</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * (string * string) list) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Transfer-encoding</code> header</p>
</div>
</div>
<pre><span id="VALget_upgrade"><span class="keyword">val</span> get_upgrade</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Upgrade</code> header as list of products.</p>
<p>All present <code class="code">Upgrade</code> headers are merged. The function returns
<code class="code">[]</code> when there is at least one <code class="code">Upgrade</code> header, but none of
the headers has a non-empty value.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> if there no such headers at all.</li>
</ul>
</div>
<pre><span id="VALset_upgrade"><span class="keyword">val</span> set_upgrade</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Upgrade</code> header</p>
</div>
</div>
<pre><span id="VALget_user_agent"><span class="keyword">val</span> get_user_agent</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> string</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">User-agent</code> header as uninterpreted string
(including comments).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> if the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_user_agent"><span class="keyword">val</span> set_user_agent</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> string -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">User-agent</code> header</p>
</div>
</div>
<pre><span id="VALget_vary"><span class="keyword">val</span> get_vary</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> [ `Fields of string list | `Star ]</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">Vary</code> header.</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> if the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_vary"><span class="keyword">val</span> set_vary</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> [ `Fields of string list | `Star ] -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">Vary</code> header</p>
</div>
</div>
<pre><span id="VALget_www_authenticate"><span class="keyword">val</span> get_www_authenticate</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.Header.html#TYPEauth_challenge">auth_challenge</a> list</code></pre><div class="info ">
<div class="info-desc">
<p>Returns the <code class="code">WWW-Authenticate</code> header as list of challenges
<code class="code">(auth_scheme,auth_params)</code>.</p>
<p>All present <code class="code">WWW-Authenticate</code> headers are merged.</p>
<p>The scheme "negotiate" uses a deviating header format.
This data is returned as e.g. <code class="code">("negotiate", ["credentials", data])</code>.</p>
<p>At present, parameters are always decoded (<code class="code">`V</code>).</p>
</div>
<ul class="info-attributes">
<li><b>Raises</b> <code>Not_found</code> if the header is missing.</li>
</ul>
</div>
<pre><span id="VALset_www_authenticate"><span class="keyword">val</span> set_www_authenticate</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.Header.html#TYPEauth_challenge">auth_challenge</a> list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Sets the <code class="code">WWW-Authenticate</code> header</p>
</div>
</div>
<pre><span id="VALget_cookie"><span class="keyword">val</span> get_cookie</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> (string * string) list</code></pre><div class="info ">
<div class="info-desc">
<p>Get the (Netscape) cookies as (name,value) pairs (or Not_found).</p>
</div>
</div>
<pre><span id="VALget_cookie_ct"><span class="keyword">val</span> get_cookie_ct</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.Cookie.html#TYPEt">Nethttp.Cookie.t</a> list</code></pre><div class="info ">
<div class="info-desc">
<p>Get the cookies in the <a href="Nethttp.Cookie.html#TYPEt"><code class="code">Nethttp.Cookie.t</code></a> representation
(the suffix "_ct" reminds of <code class="code">Cookie.t</code>).
This function also supports version 1 cookies.
Returns the empty list if there are no cookies.</p>
</div>
</div>
<pre><span id="VALset_cookie"><span class="keyword">val</span> set_cookie</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> (string * string) list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Set the <code class="code">Cookie</code> header. Note: This does not set cookies in the client,
use <code class="code">set_set_cookie</code> instead!</p>
</div>
</div>
<pre><span id="VALget_set_cookie"><span class="keyword">val</span> get_set_cookie</span> : <code class="type">#<a href="Nethttp.http_header_ro-c.html">Nethttp.http_header_ro</a> -> <a href="Nethttp.html#TYPEnetscape_cookie">Nethttp.netscape_cookie</a> list</code></pre><div class="info ">
<div class="info-desc">
<p>Get the <code class="code">Set-Cookie</code> header</p>
</div>
</div>
<pre><span id="VALset_set_cookie"><span class="keyword">val</span> set_set_cookie</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.html#TYPEnetscape_cookie">Nethttp.netscape_cookie</a> list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Set the <code class="code">Set-Cookie</code> header</p>
</div>
</div>
<pre><span id="VALset_set_cookie_ct"><span class="keyword">val</span> set_set_cookie_ct</span> : <code class="type">#<a href="Nethttp.http_header-c.html">Nethttp.http_header</a> -> <a href="Nethttp.Cookie.html#TYPEt">Nethttp.Cookie.t</a> list -> unit</code></pre><div class="info ">
<div class="info-desc">
<p>Set the <code class="code">Set-Cookie</code> and <code class="code">Set-Cookie2</code> headers:</p>
<p><code class="code">set_set_cookie_ct header cookies</code> sets the <code class="code">cookies</code> in <code class="code">header</code>
using version 0 or version 1 depending on whether version 1
fields are used. For better browser compatibility, if
"Set-cookie2" (RFC 2965) is issued, then a "Set-cookie"
precedes (declaring the same cookie with a limited number of
options).</p>
</div>
</div>
</body></html>
|