This file is indexed.

/usr/share/doc/racket/net/blueboxes.rktd is in racket-doc 6.7-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
28688
((3) 0 () 63 ((q lib "net/nntp.rkt") (q 38375 . 4) (q lib "net/tcp-sig.rkt") (q lib "net/pop3.rkt") (q 30651 . 4) (q lib "net/smtp.rkt") (q lib "net/mime.rkt") (q lib "net/imap.rkt") (q lib "net/url-structs.rkt") (q 4698 . 18) (q lib "net/qp.rkt") (q 34467 . 3) (q lib "net/url.rkt") (q 32908 . 4) (q 31938 . 16) (q lib "net/http-client.rkt") (q lib "net/head.rkt") (q lib "net/dns.rkt") (q 35137 . 7) (q lib "net/ftp.rkt") (q lib "net/cookie.rkt") (q lib "net/cgi.rkt") (q 38506 . 4) (q 30103 . 5) (q 30301 . 5) (q 29915 . 5) (q 27084 . 8) (q 32522 . 3) (q 33161 . 3) (q 31175 . 26) (q 38754 . 4) (q 29450 . 3) (q 30496 . 4) (q 37739 . 3) (q 5291 . 5) (q 38101 . 4) (q 29546 . 3) (q lib "net/sendmail.rkt") (q lib "net/git-checkout.rkt") (q 33355 . 3) (q lib "net/unihead.rkt") (q 38246 . 4) (q 38894 . 3) (q 33255 . 3) (q lib "net/sendurl.rkt") (q lib "net/uri-codec.rkt") (q 35688 . 7) (q 33057 . 3) (q 32755 . 4) (q 45439 . 3) (q 38652 . 3) (q 29375 . 3) (q 34567 . 3) (q 37978 . 4) (q 31001 . 6) (q 32614 . 4) (q 37814 . 5) (q 29750 . 4) (q 47786 . 4) (q lib "net/url-sig.rkt") (q 29648 . 3) (q 34389 . 3) (q lib "net/base64.rkt")) () (h ! (equal) ((c def c (c (? . 0) q struct:non-existent-group)) c (? . 1)) ((c def c (c (? . 6) q entity)) c (? . 29)) ((c def c (c (? . 5) q smtp-send-message)) q (16539 . 29)) ((c def c (c (? . 7) q imap-disconnect)) q (22903 . 3)) ((c sig-val c (c (? . 2) q tcp^ tcp-addresses)) q (41123 . 7)) ((c def c (c (? . 0) q non-existent-group?)) c (? . 1)) ((c sig-val c (c (? . 2) q tcp^ tcp-close)) q (40917 . 3)) ((c def c (c (? . 3) q malformed-server-response)) c (? . 4)) ((c def c (c (? . 8) q url-scheme)) c (? . 9)) ((c def c (c (? . 10) q qp-wrong-input)) c (? . 11)) ((c def c (c (? . 3) q make-not-ready-for-transaction)) c (? . 57)) ((c def c (c (? . 19) q ftp-delete-file)) q (14555 . 4)) ((c def c (c (? . 3) q malformed-server-response?)) c (? . 4)) ((c def c (c (? . 5) q smtp-sending-end-of-message)) q (17960 . 4)) ((c def c (c (? . 6) q struct:mime-error)) c (? . 27)) ((c def c (c (? . 6) q disposition-type)) c (? . 14)) ((c def c (c (? . 7) q imap-append)) q (25723 . 7)) ((c def c (c (? . 6) q struct:malformed-multipart-entity)) c (? . 13)) ((c def c (c (? . 12) q options-pure-port)) q (7061 . 4)) ((c def c (c (? . 6) q missing-multipart-boundary-parameter?)) c (? . 48)) ((q form ((lib "net/head-sig.rkt") head^)) q (21203 . 2)) ((c def c (c (? . 8) q struct:url)) c (? . 9)) ((c def c (c (? . 0) q struct:article-not-found)) c (? . 30)) ((c def c (c (? . 0) q disconnect-from-server)) q (36063 . 3)) ((c def c (c (? . 15) q http-conn-CONNECT-tunnel)) q (3927 . 14)) ((c def c (c (? . 3) q struct:pop3)) c (? . 51)) ((c def c (c (? . 3) q illegal-message-number?)) c (? . 23)) ((c def c (c (? . 7) q imap-mailbox-flags)) q (26893 . 4)) ((c def c (c (? . 10) q qp-encode)) q (34021 . 3)) ((c def c (c (? . 16) q data-lines->data)) q (20782 . 3)) ((c sig-val c (c (? . 2) q tcp^ tcp-accept)) q (40629 . 3)) ((c def c (c (? . 40) q generalize-encoding)) q (21361 . 3)) ((c def c (c (? . 7) q imap-uidnext)) q (23957 . 3)) ((c def c (c (? . 20) q cookie-value?)) q (44185 . 3)) ((c sig-val c (c (? . 2) q tcp^ tcp-accept-ready?)) q (40832 . 3)) ((c def c (c (? . 10) q make-qp-wrong-input)) c (? . 11)) ((c def c (c (? . 12) q purify-port)) q (8312 . 3)) ((c sig-val c (c (? . 2) q tcp^ tcp-listen)) q (39089 . 10)) ((c def c (c (? . 6) q empty-subtype)) c (? . 43)) ((c def c (c (? . 12) q relative-path->relative-url-string)) q (6029 . 4)) ((c def c (c (? . 6) q make-malformed-multipart-entity)) c (? . 13)) ((c def c (c (? . 0) q bad-status-line?)) c (? . 53)) ((c def c (c (? . 6) q disposition)) c (? . 14)) ((c def c (c (? . 17) q struct:srv-rr)) c (? . 18)) ((c def c (c (? . 15) q http-conn-sendrecv!)) q (2141 . 18)) ((c def c (c (? . 16) q remove-field)) q (19719 . 4)) ((c def c (c (? . 8) q path/param)) c (? . 34)) ((c def c (c (? . 6) q empty-disposition-type?)) c (? . 39)) ((c def c (c (? . 0) q nntp)) c (? . 33)) ((c def c (c (? . 7) q imap-connect*)) q (22287 . 18)) ((c def c (c (? . 21) q get-bindings)) q (42279 . 3)) ((c def c (c (? . 7) q imap-pending-expunges?)) q (24426 . 3)) ((c def c (c (? . 17) q srv-rr?)) c (? . 18)) ((c def c (c (? . 7) q imap-copy)) q (25531 . 5)) ((c def c (c (? . 7) q imap-reset-new!)) q (24243 . 3)) ((c def c (c (? . 15) q http-conn-send!)) q (904 . 17)) ((c def c (c (? . 0) q article-not-in-group)) c (? . 22)) ((c def c (c (? . 19) q ftp-download-file)) q (13490 . 13)) ((q form ((lib "net/pop3-sig.rkt") pop3^)) q (30838 . 2)) ((c def c (c (? . 45) q uri-unreserved-decode)) q (11703 . 3)) ((c def c (c (? . 12) q display-pure-port)) q (8244 . 3)) ((c def c (c (? . 3) q connect-to-server)) q (27389 . 4)) ((c def c (c (? . 3) q not-given-headers-message)) c (? . 25)) ((c def c (c (? . 8) q url-port)) c (? . 9)) ((c def c (c (? . 6) q malformed-multipart-entity)) c (? . 13)) ((q def ((lib "net/ftp-unit.rkt") ftp@)) q (15061 . 2)) ((c def c (c (? . 20) q cookie?)) q (44015 . 3)) ((c def c (c (? . 7) q imap-force-disconnect)) q (22978 . 3)) ((c def c (c (? . 37) q send-mail-message)) q (18653 . 15)) ((c def c (c (? . 0) q bad-newsgroup-line?)) c (? . 41)) ((c def c (c (? . 7) q imap-get-hierarchy-delimiter)) q (26804 . 3)) ((c def c (c (? . 6) q empty-type?)) c (? . 28)) ((c def c (c (? . 0) q authentication-rejected)) c (? . 42)) ((c def c (c (? . 21) q generate-error-output)) q (43708 . 3)) ((c def c (c (? . 3) q username-rejected)) c (? . 36)) ((c def c (c (? . 3) q struct:communicator)) c (? . 26)) ((c def c (c (? . 8) q url-user)) c (? . 9)) ((c def c (c (? . 0) q struct:article-not-in-group)) c (? . 22)) ((c def c (c (? . 20) q cookie:add-path)) q (44693 . 4)) ((c def c (c (? . 12) q post-impure-port)) q (7953 . 5)) ((c def c (c (? . 3) q get-message/body)) q (28462 . 6)) ((c def c (c (? . 3) q make-illegal-message-number)) c (? . 23)) ((c def c (c (? . 10) q qp-wrong-input?)) c (? . 11)) ((c form c (c (? . 59) q url^)) q (11156 . 2)) ((c def c (c (? . 3) q cannot-delete-message-communicator)) c (? . 24)) ((c def c (c (? . 0) q make-desired-header)) q (37510 . 3)) ((c def c (c (? . 3) q cannot-delete-message?)) c (? . 24)) ((c def c (c (? . 3) q struct:not-given-headers)) c (? . 25)) ((q def ((lib "net/cgi-unit.rkt") cgi@)) q (43965 . 2)) ((c def c (c (? . 3) q communicator-state)) c (? . 26)) ((c def c (c (? . 7) q imap-port-number)) q (22164 . 4)) ((c def c (c (? . 0) q article-not-in-group?)) c (? . 22)) ((c def c (c (? . 15) q http-conn)) q (117 . 2)) ((c def c (c (? . 10) q qp-encode-stream)) q (34141 . 5)) ((c def c (c (? . 3) q make-desired-header)) q (29146 . 3)) ((c def c (c (? . 6) q mime-error)) c (? . 27)) ((c def c (c (? . 6) q mime-analyze)) q (30868 . 4)) ((c def c (c (? . 12) q string->url)) q (5493 . 3)) ((c def c (c (? . 15) q base-ssl?-tnl/c)) q (4662 . 2)) ((c def c (c (? . 8) q url-path-absolute?)) c (? . 9)) ((c def c (c (? . 6) q malformed-multipart-entity-msg)) c (? . 13)) ((c def c (c (? . 6) q empty-type)) c (? . 28)) ((c def c (c (? . 7) q imap-new?)) q (24171 . 3)) ((c sig-val c (c (? . 2) q tcp^ tcp-connect)) q (39498 . 12)) ((c def c (c (? . 12) q get-pure-port)) q (6521 . 7)) ((c def c (c (? . 12) q url-regexp)) q (5464 . 2)) ((c def c (c (? . 15) q http-sendrecv)) q (2989 . 20)) ((c def c (c (? . 3) q cannot-connect)) c (? . 31)) ((c def c (c (? . 0) q open-news-group)) q (36158 . 7)) ((c def c (c (? . 3) q struct:disconnect-not-quiet)) c (? . 32)) ((c def c (c (? . 7) q imap-poll)) q (23598 . 3)) ((c def c (c (? . 6) q entity-params)) c (? . 29)) ((c def c (c (? . 38) q current-git-password)) q (47647 . 4)) ((c def c (c (? . 21) q output-http-headers)) q (42893 . 2)) ((c def c (c (? . 3) q struct:password-rejected)) c (? . 60)) ((c def c (c (? . 19) q ftp-make-directory)) q (14679 . 4)) ((c def c (c (? . 7) q imap-store)) q (25238 . 6)) ((q form ((lib "net/base64-sig.rkt") base64^)) q (33989 . 2)) ((q form ((lib "net/uri-codec-sig.rkt") uri-codec^)) q (12538 . 2)) ((c def c (c (? . 12) q head-pure-port)) q (6823 . 4)) ((q def ((lib "net/tcp-redirect.rkt") tcp-redirect)) q (41418 . 3)) ((c def c (c (? . 19) q ftp-rename-file)) q (14921 . 5)) ((c def c (c (? . 17) q srv-rr-weight)) c (? . 18)) ((c def c (c (? . 0) q communicator?)) c (? . 46)) ((c def c (c (? . 44) q send-url/mac)) q (16181 . 4)) ((c def c (c (? . 0) q article-not-found-article)) c (? . 30)) ((q def ((lib "net/smtp-unit.rkt") smtp@)) q (18085 . 2)) ((c def c (c (? . 6) q make-entity)) c (? . 29)) ((c def c (c (? . 6) q disposition-params)) c (? . 14)) ((c def c (c (? . 3) q struct:cannot-connect)) c (? . 31)) ((c def c (c (? . 3) q disconnect-not-quiet)) c (? . 32)) ((c def c (c (? . 3) q communicator-server)) c (? . 26)) ((c def c (c (? . 0) q struct:nntp)) c (? . 33)) ((c def c (c (? . 8) q path/param-path)) c (? . 34)) ((c def c (c (? . 0) q make-premature-close)) c (? . 35)) ((c def c (c (? . 0) q premature-close?)) c (? . 35)) ((c def c (c (? . 6) q entity-charset)) c (? . 29)) ((q def ((lib "net/url-connect.rkt") current-https-protocol)) q (10958 . 4)) ((c def c (c (? . 12) q put-impure-port)) q (8099 . 5)) ((c def c (c (? . 10) q qp-wrong-line-size?)) c (? . 52)) ((c def c (c (? . 15) q http-conn?)) q (0 . 3)) ((c def c (c (? . 3) q extract-desired-headers)) q (29230 . 4)) ((c def c (c (? . 3) q get-message/headers)) q (28255 . 6)) ((c def c (c (? . 3) q struct:username-rejected)) c (? . 36)) ((c def c (c (? . 6) q entity-fields)) c (? . 29)) ((c def c (c (? . 0) q newnews-since)) q (36978 . 4)) ((c def c (c (? . 37) q send-mail-message/port)) q (18137 . 13)) ((q def ((lib "net/imap-unit.rkt") imap@)) q (27032 . 2)) ((c def c (c (? . 38) q git-checkout)) q (45591 . 37)) ((c def c (c (? . 3) q make-malformed-server-response)) c (? . 4)) ((c def c (c (? . 6) q make-mime-error)) c (? . 27)) ((c def c (c (? . 6) q make-empty-disposition-type)) c (? . 39)) ((c def c (c (? . 40) q encode-for-header)) q (21233 . 3)) ((q def ((lib "net/cookie-unit.rkt") cookie@)) q (45535 . 2)) ((c def c (c (? . 6) q unexpected-termination?)) c (? . 55)) ((c def c (c (? . 62) q base64-encode)) q (33525 . 4)) ((c def c (c (? . 0) q bad-newsgroup-line-line)) c (? . 41)) ((c def c (c (? . 12) q head-impure-port)) q (7301 . 4)) ((c def c (c (? . 12) q path->url)) q (5784 . 3)) ((c def c (c (? . 12) q http-sendrecv/url)) q (10230 . 12)) ((c def c (c (? . 0) q struct:authentication-rejected)) c (? . 42)) ((c def c (c (? . 6) q struct:empty-subtype)) c (? . 43)) ((c def c (c (? . 44) q unix-browser-list)) q (16493 . 2)) ((c def c (c (? . 45) q uri-decode)) q (11282 . 3)) ((c def c (c (? . 12) q call/input-url)) q (9098 . 10)) ((c def c (c (? . 15) q http-conn-live?)) q (56 . 3)) ((c def c (c (? . 0) q generic-message-command)) q (37140 . 9)) ((c def c (c (? . 45) q form-urlencoded-decode)) q (12018 . 3)) ((c def c (c (? . 19) q ftp-directory-list)) q (13134 . 7)) ((c def c (c (? . 45) q current-alist-separator-mode)) q (12299 . 5)) ((c def c (c (? . 8) q path/param-param)) c (? . 34)) ((c def c (c (? . 3) q illegal-message-number-communicator)) c (? . 23)) ((c def c (c (? . 6) q disposition-filename)) c (? . 14)) ((c def c (c (? . 6) q entity-other)) c (? . 29)) ((c def c (c (? . 0) q authentication-rejected?)) c (? . 42)) ((c def c (c (? . 0) q no-group-selected)) c (? . 50)) ((c def c (c (? . 6) q disposition?)) c (? . 14)) ((c def c (c (? . 15) q http-conn-close!)) q (770 . 3)) ((c def c (c (? . 0) q struct:communicator)) c (? . 46)) ((c def c (c (? . 7) q imap-get-expunges)) q (24318 . 3)) ((c def c (c (? . 12) q options-impure-port)) q (7543 . 4)) ((q def ((lib "net/uri-codec-unit.rkt") uri-codec@)) q (12511 . 2)) ((c def c (c (? . 3) q disconnect-not-quiet-communicator)) c (? . 32)) ((c def c (c (? . 0) q make-authentication-rejected)) c (? . 42)) ((c def c (c (? . 12) q proxiable-url-schemes)) q (9692 . 3)) ((c def c (c (? . 44) q send-url)) q (15111 . 7)) ((c def c (c (? . 12) q file-url-path-convention-type)) q (6199 . 4)) ((c def c (c (? . 45) q uri-userinfo-encode)) q (11491 . 3)) ((c def c (c (? . 8) q url-host)) c (? . 9)) ((c def c (c (? . 8) q url-query)) c (? . 9)) ((c sig-val c (c (? . 2) q tcp^ tcp-accept/enable-break)) q (40724 . 3)) ((c def c (c (? . 6) q empty-mechanism?)) c (? . 47)) ((c def c (c (? . 6) q struct:empty-mechanism)) c (? . 47)) ((c def c (c (? . 7) q imap-uidvalidity)) q (24062 . 3)) ((c def c (c (? . 16) q insert-field)) q (19865 . 5)) ((c def c (c (? . 20) q cookie-error)) c (? . 49)) ((c def c (c (? . 45) q uri-path-segment-decode)) q (11417 . 3)) ((c def c (c (? . 0) q make-unexpected-response)) c (? . 56)) ((c def c (c (? . 7) q imap-get-updates)) q (24511 . 5)) ((c def c (c (? . 10) q struct:qp-wrong-input)) c (? . 11)) ((c def c (c (? . 0) q premature-close-communicator)) c (? . 35)) ((c def c (c (? . 20) q cookie:add-domain)) q (44455 . 4)) ((c def c (c (? . 0) q make-nntp)) c (? . 33)) ((c def c (c (? . 7) q imap-mailbox-exists?)) q (26186 . 4)) ((c def c (c (? . 3) q illegal-message-number)) c (? . 23)) ((c def c (c (? . 19) q ftp-establish-connection)) q (12634 . 9)) ((c def c (c (? . 0) q extract-desired-headers)) q (37594 . 4)) ((c def c (c (? . 3) q communicator?)) c (? . 26)) ((c def c (c (? . 45) q uri-unreserved-encode)) q (11631 . 3)) ((q def ((lib "net/base64-unit.rkt") base64@)) q (33965 . 2)) ((q form ((lib "net/cgi-sig.rkt") cgi^)) q (43986 . 2)) ((c def c (c (? . 6) q empty-disposition-type)) c (? . 39)) ((c def c (c (? . 0) q bad-newsgroup-line)) c (? . 41)) ((c def c (c (? . 3) q make-disconnect-not-quiet)) c (? . 32)) ((c def c (c (? . 3) q communicator-receiver)) c (? . 26)) ((c def c (c (? . 6) q missing-multipart-boundary-parameter)) c (? . 48)) ((c def c (c (? . 40) q decode-for-header)) q (21297 . 3)) ((c def c (c (? . 3) q cannot-connect?)) c (? . 31)) ((c def c (c (? . 21) q bindings-as-html)) q (43846 . 3)) ((c def c (c (? . 20) q cookie:version)) q (44999 . 4)) ((c sig-val c (c (? . 2) q tcp^ tcp-listener?)) q (40991 . 3)) ((c def c (c (? . 0) q struct:premature-close)) c (? . 35)) ((c def c (c (? . 20) q struct:cookie-error)) c (? . 49)) ((c def c (c (? . 7) q imap-connection?)) q (21455 . 3)) ((c def c (c (? . 12) q url->string)) q (5725 . 3)) ((c def c (c (? . 6) q struct:entity)) c (? . 29)) ((c def c (c (? . 3) q communicator)) c (? . 26)) ((c def c (c (? . 12) q put-pure-port)) q (7810 . 5)) ((c def c (c (? . 45) q uri-userinfo-decode)) q (11561 . 3)) ((c def c (c (? . 12) q current-no-proxy-servers)) q (9773 . 4)) ((c def c (c (? . 17) q srv-rr-port)) c (? . 18)) ((q def ((lib "net/sendmail-unit.rkt") sendmail@)) q (19194 . 2)) ((c def c (c (? . 17) q dns-find-nameserver)) q (35576 . 2)) ((c def c (c (? . 6) q mime-error?)) c (? . 27)) ((c def c (c (? . 17) q srv-rr-priority)) c (? . 18)) ((q form ((lib "net/cookie-sig.rkt") cookie^)) q (45559 . 2)) ((c def c (c (? . 0) q communicator-port)) c (? . 46)) ((c def c (c (? . 20) q cookie:add-comment)) q (44347 . 4)) ((q form ((lib "net/dns-sig.rkt") dns^)) q (35659 . 2)) ((c def c (c (? . 6) q entity-encoding)) c (? . 29)) ((c def c (c (? . 12) q delete-impure-port)) q (7421 . 4)) ((c def c (c (? . 3) q username-rejected?)) c (? . 36)) ((c def c (c (? . 21) q get-bindings/get)) q (42454 . 3)) ((q form ((lib "net/qp-sig.rkt") qp^)) q (34695 . 2)) ((c def c (c (? . 6) q disposition-creation)) c (? . 14)) ((c def c (c (? . 19) q ftp-connection?)) q (12573 . 3)) ((q form ((lib "net/imap-sig.rkt") imap^)) q (27054 . 2)) ((c def c (c (? . 7) q imap-unseen)) q (23853 . 3)) ((c def c (c (? . 3) q make-communicator)) c (? . 26)) ((c def c (c (? . 7) q symbol->imap-flag)) q (25170 . 3)) ((c def c (c (? . 45) q form-urlencoded->alist)) q (12197 . 4)) ((c def c (c (? . 6) q message-fields)) c (? . 54)) ((c def c (c (? . 19) q ftp-delete-directory)) q (14799 . 4)) ((c def c (c (? . 6) q entity-parts)) c (? . 29)) ((c def c (c (? . 0) q struct:no-group-selected)) c (? . 50)) ((c def c (c (? . 3) q communicator-sender)) c (? . 26)) ((c def c (c (? . 21) q generate-html-output)) q (42936 . 15)) ((c def c (c (? . 0) q non-existent-group-group)) c (? . 1)) ((c def c (c (? . 3) q disconnect-not-quiet?)) c (? . 32)) ((c def c (c (? . 45) q form-urlencoded-encode)) q (11945 . 3)) ((c def c (c (? . 19) q ftp-make-file-seconds)) q (13401 . 3)) ((c def c (c (? . 0) q communicator)) c (? . 46)) ((c def c (c (? . 16) q empty-header)) q (19254 . 2)) ((c def c (c (? . 45) q uri-path-segment-encode)) q (11343 . 3)) ((c def c (c (? . 38) q current-git-username)) q (47508 . 4)) ((c def c (c (? . 3) q not-given-headers?)) c (? . 25)) ((c def c (c (? . 19) q ftp-cd)) q (13028 . 4)) ((c def c (c (? . 12) q get-impure-port)) q (7182 . 4)) ((c def c (c (? . 16) q extract-field)) q (19375 . 4)) ((c def c (c (? . 3) q make-pop3)) c (? . 51)) ((c def c (c (? . 20) q cookie-error?)) c (? . 49)) ((c def c (c (? . 10) q make-qp-wrong-line-size)) c (? . 52)) ((c def c (c (? . 21) q extract-binding/single)) q (42720 . 4)) ((c def c (c (? . 0) q bad-status-line-line)) c (? . 53)) ((c def c (c (? . 7) q imap-connect)) q (21517 . 15)) ((c def c (c (? . 6) q empty-subtype?)) c (? . 43)) ((c def c (c (? . 21) q get-cgi-method)) q (43788 . 2)) ((c def c (c (? . 3) q pop3)) c (? . 51)) ((c def c (c (? . 6) q message-entity)) c (? . 54)) ((c def c (c (? . 19) q ftp-close-connection)) q (12941 . 3)) ((c def c (c (? . 0) q make-communicator)) c (? . 46)) ((c def c (c (? . 8) q path/param?)) c (? . 34)) ((c def c (c (? . 38) q make-exn:fail:git)) c (? . 58)) ((c def c (c (? . 44) q send-url/file)) q (15336 . 9)) ((c def c (c (? . 6) q make-unexpected-termination)) c (? . 55)) ((c def c (c (? . 0) q communicator-server)) c (? . 46)) ((c def c (c (? . 0) q authenticate-user)) q (36367 . 7)) ((c def c (c (? . 6) q make-message)) c (? . 54)) ((c def c (c (? . 12) q proxy-server-for)) q (9964 . 5)) ((c def c (c (? . 0) q struct:unexpected-response)) c (? . 56)) ((c def c (c (? . 6) q entity-description)) c (? . 29)) ((c def c (c (? . 0) q premature-close)) c (? . 35)) ((c sig-val c (c (? . 2) q tcp^ tcp-connect/enable-break)) q (40050 . 13)) ((q form ((lib "net/smtp-sig.rkt") smtp^)) q (18107 . 2)) ((c def c (c (? . 12) q get-pure-port/headers)) q (8376 . 12)) ((c def c (c (? . 7) q imap-flag->symbol)) q (25100 . 3)) ((c def c (c (? . 12) q current-url-encode-mode)) q (6356 . 4)) ((c def c (c (? . 3) q not-given-headers-communicator)) c (? . 25)) ((c def c (c (? . 3) q not-ready-for-transaction?)) c (? . 57)) ((c def c (c (? . 8) q make-path/param)) c (? . 34)) ((c def c (c (? . 6) q entity-body)) c (? . 29)) ((c def c (c (? . 38) q exn:fail:git)) c (? . 58)) ((c def c (c (? . 20) q cookie:secure)) q (44897 . 4)) ((c def c (c (? . 6) q entity-type)) c (? . 29)) ((c def c (c (? . 12) q combine-url/relative)) q (5555 . 4)) ((c def c (c (? . 0) q make-article-not-in-group)) c (? . 22)) ((c def c (c (? . 16) q assemble-address-field)) q (21094 . 3)) ((c def c (c (? . 6) q struct:message)) c (? . 54)) ((c def c (c (? . 10) q struct:qp-error)) c (? . 61)) ((c def c (c (? . 20) q print-cookie)) q (45122 . 3)) ((c def c (c (? . 3) q struct:illegal-message-number)) c (? . 23)) ((c def c (c (? . 3) q not-ready-for-transaction)) c (? . 57)) ((c def c (c (? . 7) q imap-status)) q (26021 . 5)) ((c def c (c (? . 20) q cookie-name?)) q (44127 . 3)) ((c def c (c (? . 3) q malformed-server-response-communicator)) c (? . 4)) ((c def c (c (? . 0) q unexpected-response-code)) c (? . 56)) ((c def c (c (? . 20) q cookie:add-expires)) q (44796 . 4)) ((c def c (c (? . 8) q make-url)) c (? . 9)) ((q form ((lib "net/sendmail-sig.rkt") sendmail^)) q (19220 . 2)) ((c def c (c (? . 3) q pop3?)) c (? . 51)) ((c def c (c (? . 7) q imap-pending-updates?)) q (24681 . 3)) ((c def c (c (? . 12) q tcp-or-tunnel-connect)) q (10793 . 6)) ((c def c (c (? . 3) q disconnect-from-server)) q (27535 . 3)) ((c def c (c (? . 6) q malformed-multipart-entity?)) c (? . 13)) ((c def c (c (? . 12) q http-connection?)) q (8888 . 3)) ((c def c (c (? . 12) q current-proxy-servers)) q (9470 . 5)) ((c form c (c (? . 59) q url+scheme^)) q (11185 . 2)) ((c def c (c (? . 0) q nntp?)) c (? . 33)) ((c def c (c (? . 6) q struct:empty-type)) c (? . 28)) ((c def c (c (? . 45) q uri-encode)) q (11221 . 3)) ((c def c (c (? . 12) q post-pure-port)) q (7666 . 5)) ((c def c (c (? . 3) q not-given-headers)) c (? . 25)) ((c def c (c (? . 45) q uri-path-segment-unreserved-encode)) q (11775 . 3)) ((c def c (c (? . 0) q connect-to-server)) q (35917 . 4)) ((c def c (c (? . 6) q message)) c (? . 54)) ((c def c (c (? . 3) q password-rejected)) c (? . 60)) ((c def c (c (? . 21) q extract-bindings)) q (42543 . 4)) ((c def c (c (? . 12) q url->path)) q (5879 . 4)) ((c def c (c (? . 17) q dns-get-mail-exchanger)) q (35456 . 4)) ((c def c (c (? . 0) q bad-status-line)) c (? . 53)) ((c def c (c (? . 10) q make-qp-error)) c (? . 61)) ((c def c (c (? . 62) q base64-decode)) q (33645 . 3)) ((c def c (c (? . 7) q imap-list-child-mailboxes)) q (26446 . 9)) ((q def ((lib "net/url-unit.rkt") url@)) q (11135 . 2)) ((c def c (c (? . 15) q base-ssl?/c)) q (4630 . 2)) ((c def c (c (? . 16) q extract-addresses)) q (20855 . 7)) ((c def c (c (? . 3) q struct:not-ready-for-transaction)) c (? . 57)) ((c def c (c (? . 6) q make-empty-mechanism)) c (? . 47)) ((c def c (c (? . 3) q struct:malformed-server-response)) c (? . 4)) ((c def c (c (? . 0) q unexpected-response-text)) c (? . 56)) ((c def c (c (? . 21) q generate-link-text)) q (43604 . 4)) ((c def c (c (? . 17) q dns-get-address)) q (34723 . 7)) ((c def c (c (? . 3) q authenticate/plain-text)) q (27630 . 7)) ((c def c (c (? . 3) q get-message/complete)) q (28046 . 6)) ((c def c (c (? . 6) q entity-id)) c (? . 29)) ((c def c (c (? . 3) q get-mailbox-status)) q (27870 . 4)) ((q form ((lib "net/ftp-sig.rkt") ftp^)) q (15082 . 2)) ((c def c (c (? . 8) q url)) c (? . 9)) ((c def c (c (? . 20) q get-cookie/single)) q (45308 . 4)) ((c def c (c (? . 10) q qp-error?)) c (? . 61)) ((c def c (c (? . 20) q valid-domain?)) q (44068 . 3)) ((c def c (c (? . 17) q dns-get-name)) q (35346 . 4)) ((c def c (c (? . 0) q non-existent-group)) c (? . 1)) ((c def c (c (? . 17) q srv-rr)) c (? . 18)) ((c def c (c (? . 0) q article-not-found)) c (? . 30)) ((q def ((lib "net/ssl-tcp-unit.rkt") make-ssl-tcp@)) q (41522 . 15)) ((c def c (c (? . 8) q url-fragment)) c (? . 9)) ((c def c (c (? . 6) q make-disposition)) c (? . 14)) ((c def c (c (? . 3) q not-ready-for-transaction-communicator)) c (? . 57)) ((c def c (c (? . 6) q struct:missing-multipart-boundary-parameter)) c (? . 48)) ((c def c (c (? . 6) q struct:disposition)) c (? . 14)) ((c def c (c (? . 7) q imap-messages)) q (23667 . 3)) ((c def c (c (? . 3) q cannot-delete-message)) c (? . 24)) ((c def c (c (? . 0) q head-of-message)) q (36592 . 5)) ((c def c (c (? . 20) q set-cookie)) q (44244 . 4)) ((c def c (c (? . 0) q struct:bad-newsgroup-line)) c (? . 41)) ((c def c (c (? . 17) q dns-get-srv)) q (34950 . 6)) ((c def c (c (? . 17) q srv-rr-target)) c (? . 18)) ((c def c (c (? . 21) q string->html)) q (43541 . 3)) ((c def c (c (? . 3) q make-cannot-delete-message)) c (? . 24)) ((c def c (c (? . 15) q http-conn-open)) q (494 . 7)) ((c def c (c (? . 7) q imap-expunge)) q (25459 . 3)) ((c def c (c (? . 8) q struct:path/param)) c (? . 34)) ((c def c (c (? . 8) q url?)) c (? . 9)) ((c def c (c (? . 3) q password-rejected?)) c (? . 60)) ((c def c (c (? . 44) q send-url/contents)) q (15696 . 11)) ((c def c (c (? . 3) q make-username-rejected)) c (? . 36)) ((c def c (c (? . 6) q message?)) c (? . 54)) ((c def c (c (? . 44) q browser-preference?)) q (16428 . 3)) ((c def c (c (? . 12) q netscape/string->url)) q (5657 . 3)) ((c def c (c (? . 20) q get-cookie)) q (45191 . 4)) ((c def c (c (? . 6) q make-missing-multipart-boundary-parameter)) c (? . 48)) ((c def c (c (? . 0) q make-bad-status-line)) c (? . 53)) ((c def c (c (? . 3) q make-password-rejected)) c (? . 60)) ((c def c (c (? . 3) q communicator-port)) c (? . 26)) ((q form ((lib "net/nntp-sig.rkt") nntp^)) q (39030 . 2)) ((c def c (c (? . 3) q get-unique-id/single)) q (28833 . 5)) ((q def ((lib "net/tcp-unit.rkt") tcp@)) q (41397 . 2)) ((c def c (c (? . 0) q struct:bad-status-line)) c (? . 53)) ((c def c (c (? . 16) q extract-all-fields)) q (19531 . 5)) ((c def c (c (? . 6) q disposition-size)) c (? . 14)) ((c def c (c (? . 12) q delete-pure-port)) q (6941 . 4)) ((c def c (c (? . 6) q unexpected-termination-msg)) c (? . 55)) ((c def c (c (? . 10) q qp-decode)) q (34081 . 3)) ((c def c (c (? . 62) q base64-encode-stream)) q (33709 . 5)) ((c def c (c (? . 6) q entity-subtype)) c (? . 29)) ((c def c (c (? . 15) q http-conn-recv!)) q (1734 . 10)) ((q def ((lib "net/pop3-unit.rkt") pop3@)) q (30816 . 2)) ((c def c (c (? . 15) q http-conn-abandon!)) q (836 . 3)) ((q def ((lib "net/mime-unit.rkt") mime@)) q (33473 . 2)) ((c def c (c (? . 12) q make-http-connection)) q (8950 . 2)) ((c def c (c (? . 38) q struct:exn:fail:git)) c (? . 58)) ((c def c (c (? . 6) q disposition-modification)) c (? . 14)) ((c def c (c (? . 45) q uri-path-segment-unreserved-decode)) q (11860 . 3)) ((c def c (c (? . 0) q make-no-group-selected)) c (? . 50)) ((c def c (c (? . 6) q struct:empty-disposition-type)) c (? . 39)) ((c def c (c (? . 10) q qp-decode-stream)) q (34292 . 4)) ((c def c (c (? . 6) q entity-disposition)) c (? . 29)) ((q def ((lib "net/head-unit.rkt") head@)) q (21181 . 2)) ((c def c (c (? . 0) q make-non-existent-group)) c (? . 1)) ((c def c (c (? . 6) q disposition-read)) c (? . 14)) ((c def c (c (? . 7) q imap-create-mailbox)) q (26318 . 4)) ((c def c (c (? . 21) q get-bindings/post)) q (42364 . 3)) ((c def c (c (? . 15) q data-procedure/c)) q (4583 . 2)) ((c def c (c (? . 16) q validate-header)) q (19285 . 3)) ((c def c (c (? . 7) q imap-recent)) q (23761 . 3)) ((c def c (c (? . 0) q make-article-not-found)) c (? . 30)) ((c def c (c (? . 3) q delete-message)) q (28663 . 5)) ((c def c (c (? . 16) q replace-field)) q (20056 . 5)) ((q form ((lib "net/mime-sig.rkt") mime^)) q (33495 . 2)) ((c def c (c (? . 0) q communicator-sender)) c (? . 46)) ((c def c (c (? . 6) q empty-mechanism)) c (? . 47)) ((c def c (c (? . 12) q url-exception?)) q (10170 . 3)) ((c def c (c (? . 0) q article-not-found?)) c (? . 30)) ((c def c (c (? . 0) q make-bad-newsgroup-line)) c (? . 41)) ((c form c (c (? . 2) q tcp^)) q (39060 . 2)) ((c def c (c (? . 3) q struct:cannot-delete-message)) c (? . 24)) ((c def c (c (? . 3) q illegal-message-number-message)) c (? . 23)) ((c def c (c (? . 3) q make-cannot-connect)) c (? . 31)) ((c def c (c (? . 10) q qp-wrong-line-size)) c (? . 52)) ((c def c (c (? . 8) q url-path)) c (? . 9)) ((c def c (c (? . 0) q article-not-in-group-article)) c (? . 22)) ((c def c (c (? . 0) q unexpected-response)) c (? . 56)) ((c def c (c (? . 19) q ftp-upload-file)) q (14065 . 11)) ((c def c (c (? . 6) q message-version)) c (? . 54)) ((c def c (c (? . 20) q cookie:add-max-age)) q (44566 . 4)) ((c def c (c (? . 6) q struct:unexpected-termination)) c (? . 55)) ((c def c (c (? . 6) q unexpected-termination)) c (? . 55)) ((c def c (c (? . 16) q standard-message-header)) q (20411 . 11)) ((c def c (c (? . 16) q append-headers)) q (20257 . 4)) ((c def c (c (? . 12) q http-connection-close)) q (9005 . 3)) ((c def c (c (? . 0) q no-group-selected?)) c (? . 50)) ((c def c (c (? . 62) q base64-decode-stream)) q (33864 . 4)) ((c def c (c (? . 7) q imap-examine)) q (23261 . 5)) ((c def c (c (? . 7) q imap-noop)) q (23461 . 4)) ((c sig-val c (c (? . 2) q tcp^ tcp-abandon-port)) q (41050 . 3)) ((c def c (c (? . 3) q cannot-delete-message-message)) c (? . 24)) ((c def c (c (? . 3) q get-unique-id/all)) q (29017 . 4)) ((q def ((lib "net/dns-unit.rkt") dns@)) q (35638 . 2)) ((c def c (c (? . 7) q imap-get-messages)) q (24765 . 8)) ((q def ((lib "net/qp-unit.rkt") qp@)) q (34675 . 2)) ((c def c (c (? . 45) q alist->form-urlencoded)) q (12091 . 3)) ((c def c (c (? . 6) q entity?)) c (? . 29)) ((c def c (c (? . 7) q imap-reselect)) q (23059 . 5)) ((q def ((lib "net/nntp-unit.rkt") nntp@)) q (39008 . 2)) ((c def c (c (? . 0) q communicator-receiver)) c (? . 46)) ((c def c (c (? . 44) q external-browser)) q (16307 . 4)) ((c def c (c (? . 6) q make-empty-subtype)) c (? . 43)) ((c def c (c (? . 38) q exn:fail:git?)) c (? . 58)) ((c def c (c (? . 10) q struct:qp-wrong-line-size)) c (? . 52)) ((c def c (c (? . 0) q body-of-message)) q (36785 . 5)) ((c def c (c (? . 3) q make-not-given-headers)) c (? . 25)) ((c def c (c (? . 20) q make-cookie-error)) c (? . 49)) ((c def c (c (? . 15) q http-conn-open!)) q (155 . 9)) ((c def c (c (? . 6) q make-empty-type)) c (? . 28)) ((c def c (c (? . 10) q qp-error)) c (? . 61)) ((c def c (c (? . 0) q unexpected-response?)) c (? . 56))))
procedure
(http-conn? x) -> boolean?
  x : any/c
procedure
(http-conn-live? x) -> boolean?
  x : any/c
procedure
(http-conn) -> http-conn?
procedure
(http-conn-open!  hc                
                  host              
                 [#:ssl? ssl?       
                  #:port port]) -> void?
  hc : http-conn?
  host : (or/c bytes? string?)
  ssl? : base-ssl?-tnl/c = #f
  port : (between/c 1 65535) = (if ssl? 443 80)
procedure
(http-conn-open  host              
                [#:ssl? ssl?       
                 #:port port]) -> http-conn?
  host : (or/c bytes? string?)
  ssl? : base-ssl?-tnl/c = #f
  port : (between/c 1 65535) = (if ssl? 443 80)
procedure
(http-conn-close! hc) -> void?
  hc : http-conn?
procedure
(http-conn-abandon! hc) -> void?
  hc : http-conn?
procedure
(http-conn-send!  hc                           
                  uri                          
                 [#:version version            
                  #:method method              
                  #:close? close?              
                  #:headers headers            
                  #:content-decode decodes     
                  #:data data])            -> void?
  hc : http-conn-live?
  uri : (or/c bytes? string?)
  version : (or/c bytes? string?) = #"1.1"
  method : (or/c bytes? string? symbol?) = #"GET"
  close? : boolean? = #f
  headers : (listof (or/c bytes? string?)) = empty
  decodes : (listof symbol?) = '(gzip)
  data : (or/c false/c bytes? string? data-procedure/c) = #f
procedure
(http-conn-recv!  hc                       
                 [#:content-decode decodes 
                  #:method method          
                  #:close? close?])        
 -> bytes? (listof bytes?) input-port?
  hc : http-conn-live?
  decodes : (listof symbol?) = '(gzip)
  method : (or/c bytes? string? symbol?) = #"GET"
  close? : boolean? = #f
procedure
(http-conn-sendrecv!  hc                       
                      uri                      
                     [#:version version        
                      #:method method          
                      #:headers headers        
                      #:data data              
                      #:content-decode decodes 
                      #:close? close?])        
 -> bytes? (listof bytes?) input-port?
  hc : http-conn-live?
  uri : (or/c bytes? string?)
  version : (or/c bytes? string?) = #"1.1"
  method : (or/c bytes? string? symbol?) = #"GET"
  headers : (listof (or/c bytes? string?)) = empty
  data : (or/c false/c bytes? string? data-procedure/c) = #f
  decodes : (listof symbol?) = '(gzip)
  close? : boolean? = #f
procedure
(http-sendrecv  host                       
                uri                        
               [#:ssl? ssl?                
                #:port port                
                #:version version          
                #:method method            
                #:headers headers          
                #:data data                
                #:content-decode decodes]) 
 -> bytes? (listof bytes?) input-port?
  host : (or/c bytes? string?)
  uri : (or/c bytes? string?)
  ssl? : base-ssl?-tnl/c = #f
  port : (between/c 1 65535) = (if ssl? 443 80)
  version : (or/c bytes? string?) = #"1.1"
  method : (or/c bytes? string? symbol?) = #"GET"
  headers : (listof (or/c bytes? string?)) = empty
  data : (or/c false/c bytes? string? data-procedure/c) = #f
  decodes : (listof symbol?) = '(gzip)
procedure
(http-conn-CONNECT-tunnel  proxy-host        
                           proxy-port        
                           target-host       
                           target-port       
                          [#:ssl? ssl?]) -> base-ssl?/c
                                            input-port?
                                            output-port?
                                            (-> port? void?)
  proxy-host : (or/c bytes? string?)
  proxy-port : (between/c 1 65535)
  target-host : (or/c bytes? string?)
  target-port : (between/c 1 65535)
  ssl? : base-ssl?/c = #f
value
data-procedure/c : chaperone-contract?
value
base-ssl?/c : contract?
value
base-ssl?-tnl/c : contract?
struct
(struct url (scheme
             user
             host
             port
             path-absolute?
             path
             query
             fragment)
    #:extra-constructor-name make-url)
  scheme : (or/c false/c string?)
  user : (or/c false/c string?)
  host : (or/c false/c string?)
  port : (or/c false/c exact-nonnegative-integer?)
  path-absolute? : boolean?
  path : (listof path/param?)
  query : (listof (cons/c symbol? (or/c false/c string?)))
  fragment : (or/c false/c string?)
struct
(struct path/param (path param)
    #:extra-constructor-name make-path/param)
  path : (or/c string? (or/c 'up 'same))
  param : (listof string?)
value
url-regexp : regexp?
procedure
(string->url str) -> url?
  str : url-regexp
procedure
(combine-url/relative base relative) -> url?
  base : url?
  relative : string?
procedure
(netscape/string->url str) -> url?
  str : string?
procedure
(url->string URL) -> string?
  URL : url?
procedure
(path->url path) -> url?
  path : (or/c path-string? path-for-some-system?)
procedure
(url->path URL [kind]) -> path-for-some-system?
  URL : url?
  kind : (or/c 'unix 'windows) = (system-path-convention-type)
procedure
(relative-path->relative-url-string path) -> string?
  path : (and/c (or/c path-string? path-for-some-system?)
                relative-path?)
parameter
(file-url-path-convention-type) -> (or/c 'unix 'windows)
(file-url-path-convention-type kind) -> void?
  kind : (or/c 'unix 'windows)
parameter
(current-url-encode-mode) -> (or/c 'recommended 'unreserved)
(current-url-encode-mode mode) -> void?
  mode : (or/c 'recommended 'unreserved)
procedure
(get-pure-port  URL                               
               [header                            
                #:redirections redirections]) -> input-port?
  URL : url?
  header : (listof string?) = null
  redirections : exact-nonnegative-integer? = 0
procedure
(head-pure-port URL [header]) -> input-port?
  URL : url?
  header : (listof string?) = null
procedure
(delete-pure-port URL [header]) -> input-port?
  URL : url?
  header : (listof string?) = null
procedure
(options-pure-port URL [header]) -> input-port?
  URL : url?
  header : (listof string?) = null
procedure
(get-impure-port URL [header]) -> input-port?
  URL : url?
  header : (listof string?) = null
procedure
(head-impure-port URL [header]) -> input-port?
  URL : url?
  header : (listof string?) = null
procedure
(delete-impure-port URL [header]) -> input-port?
  URL : url?
  header : (listof string?) = null
procedure
(options-impure-port URL [header]) -> input-port?
  URL : url?
  header : (listof string?) = null
procedure
(post-pure-port URL post [header]) -> input-port?
  URL : url?
  post : bytes?
  header : (listof string?) = null
procedure
(put-pure-port URL post [header]) -> input-port?
  URL : url?
  post : bytes?
  header : (listof string?) = null
procedure
(post-impure-port URL post [header]) -> input-port?
  URL : url?
  post : bytes?
  header : (listof string?) = null
procedure
(put-impure-port URL post [header]) -> input-port?
  URL : url?
  post : bytes?
  header : (listof string?) = null
procedure
(display-pure-port in) -> void?
  in : input-port?
procedure
(purify-port in) -> string?
  in : input-port?
procedure
(get-pure-port/headers  url                         
                       [headers                     
                        #:redirections redirections 
                        #:status? status?]          
                        #:connection connection)    
 -> input-port? string?
  url : url?
  headers : (listof string?) = '()
  redirections : exact-nonnegative-integer? = 0
  status? : boolean? = #f
  connection : (or/c #f http-connection?)
procedure
(http-connection? v) -> boolean?
  v : any/c
procedure
(make-http-connection) -> http-connection?
procedure
(http-connection-close connection) -> void?
  connection : http-connection?
procedure
(call/input-url URL connect handle) -> any
  URL : url?
  connect : (url? . -> . input-port?)
  handle : (input-port? . -> . any)
(call/input-url URL connect handle header) -> any
  URL : url?
  connect : (url? (listof string?) . -> . input-port?)
  handle : (input-port? . -> . any)
  header : (listof string?)
parameter
(current-proxy-servers)
 -> (listof (list/c string? string? (integer-in 0 65535)))
(current-proxy-servers mapping) -> void?
  mapping : (listof (list/c string? string? (integer-in 0 65535)))
value
proxiable-url-schemes : (listof string?)
 = '("http" "https" "git")
parameter
(current-no-proxy-servers) -> (listof (or/c string? regexp?))
(current-no-proxy-servers dest-hosts-list) -> void?
  dest-hosts-list : (listof (or/c string? regexp?))
procedure
(proxy-server-for url-schm [dest-host-name])
 -> (or/c (list/c string? string? (integer-in 0 65535)) #f)
  url-schm : string?
  dest-host-name : (or/c false/c string?) = #f
procedure
(url-exception? x) -> boolean?
  x : any/c
procedure
(http-sendrecv/url  u                          
                   [#:method method            
                    #:headers headers          
                    #:data data                
                    #:content-decode decodes]) 
 -> bytes? (listof bytes?) input-port?
  u : url?
  method : (or/c bytes? string? symbol?) = #"GET"
  headers : (listof (or/c bytes? string?)) = empty
  data : (or/c false/c bytes? string? data-procedure/c) = #f
  decodes : (listof symbol?) = '(gzip)
procedure
(tcp-or-tunnel-connect scheme host port)
 -> input-port? output-port?
  scheme : string?
  host : string?
  port : (between/c 1 65535)
parameter
(current-https-protocol) -> (or/c ssl-client-context? symbol?)
(current-https-protocol protocol) -> void?
  protocol : (or/c ssl-client-context? symbol?)
value
url@ : unit?
signature
url^ : signature
signature
url+scheme^ : signature
procedure
(uri-encode str) -> string?
  str : string?
procedure
(uri-decode str) -> string?
  str : string?
procedure
(uri-path-segment-encode str) -> string?
  str : string?
procedure
(uri-path-segment-decode str) -> string?
  str : string?
procedure
(uri-userinfo-encode str) -> string?
  str : string?
procedure
(uri-userinfo-decode str) -> string?
  str : string?
procedure
(uri-unreserved-encode str) -> string?
  str : string?
procedure
(uri-unreserved-decode str) -> string?
  str : string?
procedure
(uri-path-segment-unreserved-encode str) -> string?
  str : string?
procedure
(uri-path-segment-unreserved-decode str) -> string?
  str : string?
procedure
(form-urlencoded-encode str) -> string?
  str : string?
procedure
(form-urlencoded-decode str) -> string?
  str : string?
procedure
(alist->form-urlencoded alist) -> string?
  alist : (listof (cons/c symbol? string?))
procedure
(form-urlencoded->alist str)
 -> (listof (cons/c symbol? string?))
  str : string
parameter
(current-alist-separator-mode)
 -> (one-of/c 'amp 'semi 'amp-or-semi 'semi-or-amp)
(current-alist-separator-mode mode) -> void?
  mode : (one-of/c 'amp 'semi 'amp-or-semi 'semi-or-amp)
value
uri-codec@ : unit?
signature
uri-codec^ : signature
procedure
(ftp-connection? v) -> boolean?
  v : any/c
procedure
(ftp-establish-connection server      
                          port-no     
                          user        
                          passwd) -> ftp-connection?
  server : string?
  port-no : (integer-in 0 65535)
  user : string?
  passwd : string?
procedure
(ftp-close-connection ftp-conn) -> void?
  ftp-conn : ftp-connection?
procedure
(ftp-cd ftp-conn new-dir) -> void?
  ftp-conn : ftp-connection?
  new-dir : string?
procedure
(ftp-directory-list ftp-conn [path])
 -> (listof (list/c (one-of/c "-" "d" "l")
                    string?
                    string?))
  ftp-conn : ftp-connection?
  path : (or/c false/c string?) = #f
procedure
(ftp-make-file-seconds ftp-date) -> exact-integer?
  ftp-date : string?
procedure
(ftp-download-file  ftp-conn                       
                    local-dir                      
                    file                           
                   [#:progress progress-proc]) -> void?
  ftp-conn : ftp-connection?
  local-dir : path-string?
  file : string?
  progress-proc : (or/c #f
                        (-> (-> (values exact-nonnegative-integer?
                                        evt?))
                            any))
                = #f
procedure
(ftp-upload-file  ftp-conn                       
                  file-path                      
                 [#:progress progress-proc]) -> void?
  ftp-conn : ftp-connection?
  file-path : path-string?
  progress-proc : (or/c #f
                        (-> (-> (values exact-nonnegative-integer?
                                        evt?))
                            any))
                = #f
procedure
(ftp-delete-file ftp-conn file-path) -> void?
  ftp-conn : ftp-connection?
  file-path : path-string?
procedure
(ftp-make-directory ftp-conn dir-name) -> void?
  ftp-conn : ftp-connection?
  dir-name : string?
procedure
(ftp-delete-directory ftp-conn dir-name) -> void?
  ftp-conn : ftp-connection?
  dir-name : string?
procedure
(ftp-rename-file ftp-conn origin dest) -> void?
  ftp-conn : ftp-connection?
  origin : string?
  dest : string?
value
ftp@ : unit?
signature
ftp^ : signature
procedure
(send-url  str                     
          [separate-window?        
           #:escape? escape?]) -> void?
  str : string?
  separate-window? : any/c = #t
  escape? : any/c = #t
procedure
(send-url/file  path                    
               [separate-window?        
                #:fragment fragment     
                #:query query])     -> void?
  path : path-string?
  separate-window? : any/c = #t
  fragment : (or/c string? false/c) = #f
  query : (or/c string? false/c) = #f
procedure
(send-url/contents  contents                  
                   [separate-window?          
                    #:fragment fragment       
                    #:query query             
                    #:delete-at seconds]) -> void?
  contents : string?
  separate-window? : any/c = #t
  fragment : (or/c string? false/c) = #f
  query : (or/c string? false/c) = #f
  seconds : (or/c number? false/c) = #f
procedure
(send-url/mac url [#:browser browser]) -> void?
  url : string?
  browser : (or/c string? #f) = #f
parameter
(external-browser) -> browser-preference?
(external-browser cmd) -> void?
  cmd : browser-preference?
procedure
(browser-preference? a) -> boolean?
  a : any/c
value
unix-browser-list : (listof symbol?)
procedure
(smtp-send-message  server-address            
                    from                      
                    to                        
                    header                    
                    message                   
                   [#:port-no port-no/k       
                    #:auth-user user          
                    #:auth-passwd pw          
                    #:tcp-connect connect     
                    #:tls-encode encode       
                    port-no])             -> void?
  server-address : string?
  from : string?
  to : (listof string?)
  header : string?
  message : (listof (or/c string? bytes?))
  port-no/k : (integer-in 0 65535) = 25
  user : (or/c string? false/c) = #f
  pw : (or/c string? false/c) = #f
  connect : ((string? (integer-in 0 65535))      = tcp-connect
             . ->* . (input-port? output-port?))
  encode : (or/c false/c                               = #f
                 ((input-port? output-port?
                   #:mode (one-of/c 'connect)
                   #:encrypt (one-of/c 'tls)
                   #:close-original? (one-of/c #t))
                  . ->* . (input-port? output-port?)))
  port-no : (integer-in 0 65535) = port-no/k
parameter
(smtp-sending-end-of-message) -> (-> any)
(smtp-sending-end-of-message proc) -> void?
  proc : (-> any)
value
smtp@ : unit?
signature
smtp^ : signature
procedure
(send-mail-message/port from                  
                        subject               
                        to                    
                        cc                    
                        bcc                   
                        extra-header ...) -> output-port?
  from : (or/c string? false/c)
  subject : string?
  to : (listof string?)
  cc : (listof string?)
  bcc : (listof string?)
  extra-header : string?
procedure
(send-mail-message from                  
                   subject               
                   to                    
                   cc                    
                   bcc                   
                   body                  
                   extra-header ...) -> void?
  from : string?
  subject : string?
  to : (listof string?)
  cc : (listof string?)
  bcc : (listof string?)
  body : (listof string?)
  extra-header : string?
value
sendmail@ : unit?
signature
sendmail^ : signature
value
empty-header : string?
procedure
(validate-header candidate) -> void?
  candidate : (or string? bytes?)
procedure
(extract-field field header) -> (or/c string? bytes? false/c)
  field : (or/c string? bytes?)
  header : (or/c string? bytes?)
procedure
(extract-all-fields header)
 -> (listof (cons/c (or/c string? bytes?)
                    (or/c string? bytes?)))
  header : (or/c string? bytes?)
procedure
(remove-field field header) -> (or/c string? bytes?)
  field : (or/c string? bytes?)
  header : (or/c string? bytes?)
procedure
(insert-field field value header) -> (or/c string? bytes?)
  field : (or/c string? bytes?)
  value : (or/c string? bytes?)
  header : (or/c string? bytes?)
procedure
(replace-field field value header) -> (or/c string? bytes?)
  field : (or/c string? bytes?)
  value : (or/c string? bytes? false/c)
  header : (or/c string? bytes?)
procedure
(append-headers header1 header2) -> (or/c string? bytes?)
  header1 : (or/c string? bytes?)
  header2 : (or/c string? bytes?)
procedure
(standard-message-header from         
                         to           
                         cc           
                         bcc          
                         subject) -> string?
  from : string?
  to : (listof string?)
  cc : (listof string?)
  bcc : (listof string?)
  subject : string?
procedure
(data-lines->data listof) -> string?
  listof : string?
procedure
(extract-addresses line kind)
 -> (or/c (listof string?)
          (listof (list/c string? string? string?)))
  line : string?
  kind : (one-of/c 'name 'address
                   'full 'all)
procedure
(assemble-address-field addrs) -> string?
  addrs : (listof string?)
value
head@ : unit?
signature
head^ : signature
procedure
(encode-for-header s) -> string?
  s : string?
procedure
(decode-for-header s) -> string?
  s : string?
procedure
(generalize-encoding s) -> (or string? bytes?)
  s : (or string? bytes?)
procedure
(imap-connection? v) -> boolean?
  v : any/c
procedure
(imap-connect  server                    
               username                  
               password                  
               mailbox                   
              [#:tls? tls?               
               #:try-tls? try-tls?]) -> imap-connection?
                                        exact-nonnegative-integer?
                                        exact-nonnegative-integer?
  server : string?
  username : (or/c string? bytes?)
  password : (or/c string? bytes?)
  mailbox : (or/c string? bytes?)
  tls? : any/c = #f
  try-tls? : any/c = #t
parameter
(imap-port-number) -> (integer-in 0 65535)
(imap-port-number k) -> void?
  k : (integer-in 0 65535)
procedure
(imap-connect*  in                    
                out                   
                username              
                password              
                mailbox               
               [#:tls? tls?           
                #:try-tls? try-tls?]) 
 -> imap-connection?
    exact-nonnegative-integer?
    exact-nonnegative-integer?
  in : input-port?
  out : output-port?
  username : (or/c string? bytes?)
  password : (or/c string? bytes?)
  mailbox : (or/c string? bytes?)
  tls? : any/c = #f
  try-tls? : any/c = #t
procedure
(imap-disconnect imap) -> void?
  imap : imap-connection?
procedure
(imap-force-disconnect imap) -> void?
  imap : imap-connection?
procedure
(imap-reselect imap mailbox) -> exact-nonnegative-integer?
                                exact-nonnegative-integer?
  imap : imap-connection?
  mailbox : (or/c string? bytes?)
procedure
(imap-examine imap mailbox) -> exact-nonnegative-integer?
                               exact-nonnegative-integer?
  imap : imap-connection?
  mailbox : (or/c string? bytes?)
procedure
(imap-noop imap) -> exact-nonnegative-integer?
                    exact-nonnegative-integer?
  imap : imap-connection?
procedure
(imap-poll imap) -> void?
  imap : imap-connection?
procedure
(imap-messages imap) -> exact-nonnegative-integer?
  imap : imap-connection?
procedure
(imap-recent imap) -> exact-nonnegative-integer?
  imap : imap-connection?
procedure
(imap-unseen imap) -> (or/c exact-nonnegative-integer? #f)
  imap : imap-connection?
procedure
(imap-uidnext imap) -> (or/c exact-nonnegative-integer? #f)
  imap : imap-connection?
procedure
(imap-uidvalidity imap) -> (or/c exact-nonnegative-integer? #f)
  imap : imap-connection?
procedure
(imap-new? imap) -> boolean?
  imap : imap-connection?
procedure
(imap-reset-new! imap) -> void?
  imap : imap-connection?
procedure
(imap-get-expunges imap) -> (listof exact-nonnegative-integer?)
  imap : imap-connection?
procedure
(imap-pending-expunges? imap) -> boolean?
  imap : imap-connection?
procedure
(imap-get-updates imap)
 -> (listof (cons/c exact-nonnegative-integer?
                    (listof pair?)))
  imap : imap-connection?
procedure
(imap-pending-updates? imap) -> boolean?
  imap : imap-connection?
procedure
(imap-get-messages imap msg-nums fields) -> (listof list?)
  imap : imap-connection?
  msg-nums : (listof exact-nonnegative-integer?)
  fields : (listof (or/c 'uid
                         'header
                         'body
                         'flags))
procedure
(imap-flag->symbol flag) -> symbol?
  flag : symbol?
procedure
(symbol->imap-flag sym) -> symbol?
  sym : symbol?
procedure
(imap-store imap mode msg-nums imap-flags) -> void?
  imap : imap-connection?
  mode : (or/c '+ '- '!)
  msg-nums : (listof exact-nonnegative-integer?)
  imap-flags : (listof symbol?)
procedure
(imap-expunge imap) -> void?
  imap : imap-connection?
procedure
(imap-copy imap msg-nums dest-mailbox) -> void?
  imap : imap-connection?
  msg-nums : (listof exact-nonnegative-integer?)
  dest-mailbox : (or/c string? bytes?)
procedure
(imap-append imap mailbox message [flags]) -> void?
  imap : imap-connection?
  mailbox : string?
  message : (or/c string? bytes?)
  flags : (listof (or/c 'seen 'answered 'flagged  = '(seen)
                        'deleted 'draft 'recent))
procedure
(imap-status imap mailbox statuses) -> list?
  imap : imap-connection?
  mailbox : (or/c string? bytes?)
  statuses : (listof symbol?)
procedure
(imap-mailbox-exists? imap mailbox) -> boolean?
  imap : imap-connection?
  mailbox : (or/c string? bytes?)
procedure
(imap-create-mailbox imap mailbox) -> void?
  imap : imap-connection?
  mailbox : (or/c string? bytes?)
procedure
(imap-list-child-mailboxes  imap        
                            mailbox     
                           [delimiter]) 
 -> (listof (list/c (listof symbol?) bytes?))
  imap : imap-connection?
  mailbox : (or/c string? bytes? #f)
  delimiter : (or/c string? bytes?)
            = (imap-get-hierarchy-delimiter)
procedure
(imap-get-hierarchy-delimiter imap) -> bytes?
  imap : imap-connection?
procedure
(imap-mailbox-flags imap mailbox) -> (listof symbol?)
  imap : imap-connection?
  mailbox : (or/c string? bytes?)
value
imap@ : unit?
signature
imap^ : signature
struct
(struct communicator (sender receiver server port state)
    #:extra-constructor-name make-communicator)
  sender : output-port?
  receiver : input-port?
  server : string?
  port : (integer-in 0 65535)
  state : (one-of/c 'disconnected 'authorization 'transaction)
procedure
(connect-to-server server [port-number]) -> communicator?
  server : string?
  port-number : (integer-in 0 65535) = 110
procedure
(disconnect-from-server communicator) -> void?
  communicator : communicator?
procedure
(authenticate/plain-text user              
                         passwd            
                         communicator) -> void?
  user : string?
  passwd : string?
  communicator : communicator?
procedure
(get-mailbox-status communicator) -> exact-nonnegative-integer?
                                     exact-nonnegative-integer?
  communicator : communicator?
procedure
(get-message/complete communicator    
                      message-number) 
 -> (listof string?) (listof string?)
  communicator : communicator?
  message-number : exact-integer?
procedure
(get-message/headers communicator    
                     message-number) 
 -> (listof string?) (listof string?)
  communicator : communicator?
  message-number : exact-integer?
procedure
(get-message/body communicator    
                  message-number) 
 -> (listof string?) (listof string?)
  communicator : communicator?
  message-number : exact-integer?
procedure
(delete-message communicator        
                message-number) -> void?
  communicator : communicator?
  message-number : exact-integer?
procedure
(get-unique-id/single communicator        
                      message-number) -> string?
  communicator : communicator?
  message-number : exact-integer?
procedure
(get-unique-id/all communicator)
 -> (listof (cons/c exact-integer? string?))
  communicator : communicator?
procedure
(make-desired-header tag-string) -> regexp?
  tag-string : string?
procedure
(extract-desired-headers header desireds) -> (listof string?)
  header : (listof string?)
  desireds : (listof regexp?)
struct
(struct pop3 exn ()
    #:extra-constructor-name make-pop3)
struct
(struct cannot-connect pop3 ()
    #:extra-constructor-name make-cannot-connect)
struct
(struct username-rejected pop3 ()
    #:extra-constructor-name make-username-rejected)
struct
(struct password-rejected pop3 ()
    #:extra-constructor-name make-password-rejected)
struct
(struct not-ready-for-transaction pop3 (communicator)
    #:extra-constructor-name make-not-ready-for-transaction)
  communicator : communicator?
struct
(struct not-given-headers pop3 (communicator message)
    #:extra-constructor-name make-not-given-headers)
  communicator : communicator?
  message : exact-integer?
struct
(struct illegal-message-number pop3 (communicator message)
    #:extra-constructor-name make-illegal-message-number)
  communicator : communicator?
  message : exact-integer?
struct
(struct cannot-delete-message exn (communicator message)
    #:extra-constructor-name make-cannot-delete-message)
  communicator : communicator?
  message : exact-integer?
struct
(struct disconnect-not-quiet pop3 (communicator)
    #:extra-constructor-name make-disconnect-not-quiet)
  communicator : communicator?
struct
(struct malformed-server-response pop3 (communicator)
    #:extra-constructor-name make-malformed-server-response)
  communicator : communicator?
value
pop3@ : unit?
signature
pop3^ : signature
procedure
(mime-analyze message-in [part?]) -> message?
  message-in : (or/c bytes? input-port)
  part? : any/c = #f
struct
(struct message (version entity fields)
    #:extra-constructor-name make-message)
  version : real?
  entity : entity
  fields : (listof string?)
struct
(struct entity (type
                subtype
                charset
                encoding
                disposition
                params
                id
                description
                other
                fields
                parts
                body)
    #:extra-constructor-name make-entity)
  type : symbol?
  subtype : symbol?
  charset : symbol?
  encoding : symbol?
  disposition : disposition?
  params : (listof (cons/c symbol? string?))
  id : string?
  description : string?
  other : (listof string?)
  fields : (listof string?)
  parts : (listof message?)
  body : (or/c (output-port? . -> . void?) null?)
struct
(struct disposition (type
                     filename
                     creation
                     modification
                     read
                     size
                     params)
    #:extra-constructor-name make-disposition)
  type : symbol?
  filename : (or/c string? false/c)
  creation : (or/c string? false/c)
  modification : (or/c string? false/c)
  read : (or/c string? false/c)
  size : (or/c exact-nonnegative-integer? false/c)
  params : (listof (cons/c symbol? string?))
struct
(struct mime-error exn:fail ()
    #:extra-constructor-name make-mime-error)
struct
(struct unexpected-termination mime-error (msg)
    #:extra-constructor-name make-unexpected-termination)
  msg : string?
struct
(struct missing-multipart-boundary-parameter mime-error ()
    #:extra-constructor-name
    make-missing-multipart-boundary-parameter)
struct
(struct malformed-multipart-entity mime-error (msg)
    #:extra-constructor-name make-malformed-multipart-entity)
  msg : string?
struct
(struct empty-mechanism mime-error ()
    #:extra-constructor-name make-empty-mechanism)
struct
(struct empty-type mime-error ()
    #:extra-constructor-name make-empty-type)
struct
(struct empty-subtype mime-error ()
    #:extra-constructor-name make-empty-subtype)
struct
(struct empty-disposition-type mime-error ()
    #:extra-constructor-name make-empty-disposition-type)
value
mime@ : unit?
signature
mime^ : signature
procedure
(base64-encode bstr [newline-bstr]) -> bytes?
  bstr : bytes?
  newline-bstr : bytes? = #"\r\n"
procedure
(base64-decode bstr) -> bytes?
  bstr : bytes?
procedure
(base64-encode-stream in out [newline-bstr]) -> void?
  in : input-port?
  out : output-port?
  newline-bstr : bytes? = #"\n"
procedure
(base64-decode-stream in out) -> void?
  in : input-port?
  out : output-port?
value
base64@ : unit?
signature
base64^ : signature
procedure
(qp-encode bstr) -> bytes?
  bstr : bytes?
procedure
(qp-decode bstr) -> bytes?
  bstr : bytes?
procedure
(qp-encode-stream in out [newline-bstr]) -> void?
  in : input-port?
  out : output-port?
  newline-bstr : bytes? = #"\n"
procedure
(qp-decode-stream in out) -> void?
  in : input-port?
  out : output-port?
struct
(struct qp-error ()
    #:extra-constructor-name make-qp-error)
struct
(struct qp-wrong-input qp-error ()
    #:extra-constructor-name make-qp-wrong-input)
struct
(struct qp-wrong-line-size qp-error ()
    #:extra-constructor-name make-qp-wrong-line-size)
value
qp@ : unit?
signature
qp^ : signature
procedure
(dns-get-address  nameserver          
                  address             
                 [#:ipv6? ipv6?]) -> string?
  nameserver : string?
  address : string?
  ipv6? : any/c = #f
procedure
(dns-get-srv nameserver name service [proto]) -> (listof srv-rr?)
  nameserver : string?
  name : string?
  service : string?
  proto : string? = "tcp"
struct
(struct srv-rr (priority weight port target)
    #:prefab)
  priority : (integer-in 0 65535)
  weight : (integer-in 0 65535)
  port : (integer-in 0 65535)
  target : string?
procedure
(dns-get-name nameserver address) -> string?
  nameserver : string?
  address : string?
procedure
(dns-get-mail-exchanger nameserver address) -> string?
  nameserver : string?
  address : string?
procedure
(dns-find-nameserver) -> (or/c string? false/c)
value
dns@ : unit?
signature
dns^ : signature
struct
(struct communicator (sender receiver server port)
    #:extra-constructor-name make-communicator)
  sender : output-port?
  receiver : input-port?
  server : string?
  port : (integer-in 0 65535)
procedure
(connect-to-server server [port-number]) -> communicator?
  server : string?
  port-number : (integer-in 0 65535) = 119
procedure
(disconnect-from-server communicator) -> void?
  communicator : communicator?
procedure
(open-news-group communicator newsgroup)
 -> exact-nonnegative-integer?
    exact-nonnegative-integer?
    exact-nonnegative-integer?
  communicator : communicator?
  newsgroup : string?
procedure
(authenticate-user communicator     
                   username         
                   password)    -> void?
  communicator : communicator?
  username : string?
  password : string?
procedure
(head-of-message communicator       
                 message-index) -> (listof string?)
  communicator : communicator?
  message-index : exact-nonnegative-integer?
procedure
(body-of-message communicator       
                 message-index) -> (listof string?)
  communicator : communicator?
  message-index : exact-nonnegative-integer?
procedure
(newnews-since communicator message-index) -> (listof string?)
  communicator : communicator?
  message-index : exact-nonnegative-integer?
procedure
((generic-message-command command            
                          ok-code)           
                          communicator       
                          message-index) -> (listof string?)
  command : string?
  ok-code : exact-integer?
  communicator : communicator?
  message-index : exact-nonnegative-integer?
procedure
(make-desired-header tag-string) -> regexp?
  tag-string : string?
procedure
(extract-desired-headers header desireds) -> (listof string?)
  header : (listof string?)
  desireds : (listof regexp?)
struct
(struct nntp exn ()
    #:extra-constructor-name make-nntp)
struct
(struct unexpected-response nntp (code text)
    #:extra-constructor-name make-unexpected-response)
  code : exact-integer?
  text : string?
struct
(struct bad-status-line nntp (line)
    #:extra-constructor-name make-bad-status-line)
  line : string?
struct
(struct premature-close nntp (communicator)
    #:extra-constructor-name make-premature-close)
  communicator : communicator?
struct
(struct bad-newsgroup-line nntp (line)
    #:extra-constructor-name make-bad-newsgroup-line)
  line : string?
struct
(struct non-existent-group nntp (group)
    #:extra-constructor-name make-non-existent-group)
  group : string?
struct
(struct article-not-in-group nntp (article)
    #:extra-constructor-name make-article-not-in-group)
  article : exact-integer?
struct
(struct no-group-selected nntp ()
    #:extra-constructor-name make-no-group-selected)
struct
(struct article-not-found nntp (article)
    #:extra-constructor-name make-article-not-found)
  article : exact-integer?
struct
(struct authentication-rejected nntp ()
    #:extra-constructor-name make-authentication-rejected)
value
nntp@ : unit?
signature
nntp^ : signature
signature
tcp^ : signature
procedure
(tcp-listen  port-no            
            [max-allow-wait     
             reuse?             
             hostname])     -> tcp-listener?
  port-no : (and/c exact-nonnegative-integer?
                   (integer-in 0 65535))
  max-allow-wait : exact-nonnegative-integer? = 4
  reuse? : any/c = #f
  hostname : (or/c string? false/c) = #f
procedure
(tcp-connect  hostname            
              port-no             
             [local-hostname      
              local-port-no]) -> input-port? output-port?
  hostname : string?
  port-no : (and/c exact-nonnegative-integer?
                  (integer-in 1 65535))
  local-hostname : (or/c string? false/c) = #f
  local-port-no : (or/c (and/c exact-nonnegative-integer? = #f
                               (integer-in 1 65535))
                        false/c)
procedure
(tcp-connect/enable-break  hostname        
                           port-no         
                          [local-hostname] 
                           local-port-no)  
 -> input-port? output-port?
  hostname : string?
  port-no : (and/c exact-nonnegative-integer?
                  (integer-in 1 65535))
  local-hostname : (or/c string? false/c) = #f
  local-port-no : (or/c (and/c exact-nonnegative-integer?
                               (integer-in 1 65535))
                        false/c)
procedure
(tcp-accept listener) -> input-port? output-port?
  listener : tcp-listener?
procedure
(tcp-accept/enable-break listener) -> input-port? output-port?
  listener : tcp-listener?
procedure
(tcp-accept-ready? listener) -> boolean?
  listener : tcp-listener?
procedure
(tcp-close listener) -> void?
  listener : tcp-listener?
procedure
(tcp-listener? v) -> boolean?
  v : any/c
procedure
(tcp-abandon-port tcp-port) -> void?
  tcp-port : port?
procedure
(tcp-addresses tcp-port [port-numbers?])
 -> (or/c (values string? string?)
          (values string? (integer-in 1 65535)
                  string? (integer-in 1 65535)))
  tcp-port : port?
  port-numbers? : any/c = #f
value
tcp@ : unit?
procedure
(tcp-redirect port-numbers) -> unit?
  port-numbers : (listof (integer-in 0 65535))
procedure
(make-ssl-tcp@ server-cert-file             
               server-key-file              
               server-root-cert-files       
               server-suggest-auth-file     
               client-cert-file             
               client-key-file              
               client-root-cert-files)  -> unit?
  server-cert-file : (or/c path-string? false/c)
  server-key-file : (or/c path-string? false/c)
  server-root-cert-files : (or/c (listof path-string?) false/c)
  server-suggest-auth-file : path-string?
  client-cert-file : (or/c path-string? false/c)
  client-key-file : (or/c path-string? false/c)
  client-root-cert-files : (listof path-string?)
procedure
(get-bindings)
 -> (listof (cons/c (or/c symbol? string?) string?))
procedure
(get-bindings/post)
 -> (listof (cons/c (or/c symbol? string?) string?))
procedure
(get-bindings/get)
 -> (listof (cons/c (or/c symbol? string?) string?))
procedure
(extract-bindings key? bindings) -> (listof string?)
  key? : (or/c symbol? string?)
  bindings : (listof (cons/c (or/c symbol? string?) string?))
procedure
(extract-binding/single key? bindings) -> string?
  key? : (or/c symbol? string?)
  bindings : (listof (cons/c (or/c symbol? string?) string?))
procedure
(output-http-headers) -> void?
procedure
(generate-html-output  title             
                       body              
                      [text-color        
                       bg-color          
                       link-color        
                       vlink-color       
                       alink-color]) -> void?
  title : string?
  body : (listof string?)
  text-color : string? = "#000000"
  bg-color : string? = "#ffffff"
  link-color : string? = "#cc2200"
  vlink-color : string? = "#882200"
  alink-color : string? = "#444444"
procedure
(string->html str) -> string?
  str : string?
procedure
(generate-link-text str html-str) -> string?
  str : string?
  html-str : string?
procedure
(generate-error-output strs) -> any
  strs : (listof string?)
procedure
(get-cgi-method) -> (one-of/c "GET" "POST")
procedure
(bindings-as-html listof) -> (listof string?)
  listof : (cons/c (or/c symbol? string?) string?)
value
cgi@ : unit?
signature
cgi^ : signature
procedure
(cookie? v) -> boolean?
  v : any/c
procedure
(valid-domain? v) -> boolean?
  v : any/c
procedure
(cookie-name? v) -> boolean?
  v : any/c
procedure
(cookie-value? v) -> boolean?
  v : any/c
procedure
(set-cookie name value) -> cookie?
  name : cookie-name?
  value : cookie-value?
procedure
(cookie:add-comment cookie comment) -> cookie?
  cookie : cookie?
  comment : string?
procedure
(cookie:add-domain cookie domain) -> cookie?
  cookie : cookie?
  domain : valid-domain?
procedure
(cookie:add-max-age cookie seconds) -> cookie?
  cookie : cookie?
  seconds : exact-nonnegative-integer?
procedure
(cookie:add-path cookie path) -> cookie?
  cookie : cookie?
  path : valid-path?
procedure
(cookie:add-expires cookie path) -> cookie?
  cookie : cookie?
  path : string
procedure
(cookie:secure cookie secure) -> cookie?
  cookie : cookie?
  secure : boolean?
procedure
(cookie:version cookie version) -> cookie?
  cookie : cookie?
  version : exact-nonnegative-integer?
procedure
(print-cookie cookie) -> string?
  cookie : cookie?
procedure
(get-cookie name cookies) -> (listof cookie-value?)
  name : cookie-name?
  cookies : string?
procedure
(get-cookie/single name cookies) -> (or/c cookie-value? false/c)
  name : cookie-name?
  cookies : string?
struct
(struct cookie-error exn:fail ()
    #:extra-constructor-name make-cookie-error)
value
cookie@ : unit?
signature
cookie^ : signature
procedure
(git-checkout  hostname                            
               repository                          
               #:dest-dir dest-dir                 
              [#:ref ref                           
               #:transport transport               
               #:depth depth                       
               #:status-printf status-printf       
               #:initial-error initial-error       
               #:tmp-dir given-tmp-dir             
               #:clean-tmp-dir? clean-tmp-dir?     
               #:verify-server? verify-server?     
               #:port port                         
               #:strict-links? strict-links?       
               #:username username                 
               #:password password])           -> string?
  hostname : string?
  repository : string?
  dest-dir : (or/c path-string? #f)
  ref : string? = "master"
  transport : (or/c 'git 'http 'https) = 'git
  depth : (or/c #f exact-positive-integer?) = 1
  status-printf : (string? any/c ... . -> . void?)
                = (lambda args
                    (apply printf args)
                    (flush-output))
  initial-error : (or #f (-> any)) = #f
  given-tmp-dir : (or/c #f path-string?) = #f
  clean-tmp-dir? : any/c = (not given-tmp-dir)
  verify-server? : any/c = #t
  port : (or/c #f (integer-in 1 65535)) = (case transport
                                            [(git) 9418]
                                            [(http) 80]
                                            [(https) 443])
  strict-links? : any/c = #f
  username : (or/c string? #f) = (current-git-username)
  password : (or/c string? #f) = (current-git-password)
parameter
(current-git-username) -> (or/c string? #f)
(current-git-username username) -> void?
  username : (or/c string? #f)
parameter
(current-git-password) -> (or/c string? #f)
(current-git-password password) -> void?
  password : (or/c string? #f)
struct
(struct exn:fail:git exn:fail ()
    #:extra-constructor-name make-exn:fail:git
    #:transparent)