Overview
Comment: | Added usage information |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a67c46369bdace9f247b8f9e9b7c4242 |
User & Date: | rkeene on 2014-02-06 23:35:06 |
Other Links: | manifest | tags |
Context
2014-02-07
| ||
20:43 | Updated man page check-in: f1c59a3a0d user: rkeene tags: trunk | |
2014-02-06
| ||
23:35 | Added usage information check-in: a67c46369b user: rkeene tags: trunk | |
22:41 | Changed section to 1 for man page check-in: 20cc928425 user: rkeene tags: trunk | |
Changes
Added build/update-wiki version [6aac6de1b2].
> > > | 1 2 3 | #! /bin/bash man2html -r filed.1 | sed '0,/<BODY>/ d;/^This document was created by/,$ d;s@<A HREF="../index.html">Return to Main Contents</A>@@' | sed '$ d' | fossil wiki commit Manual |
Modified filed.c from [0d0ecd3cdc] to [2c5e817142].
︙ | ︙ | |||
21 22 23 24 25 26 27 | #define FILED_SENDFILE_MAX 16777215 #define MAX_FAILURE_COUNT 30 /* Default values */ #define PORT 80 #define THREAD_COUNT 5 #define BIND_ADDR "::" | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #define FILED_SENDFILE_MAX 16777215 #define MAX_FAILURE_COUNT 30 /* Default values */ #define PORT 80 #define THREAD_COUNT 5 #define BIND_ADDR "::" #define CACHE_SIZE 8209 /* Arguments for worker threads */ struct filed_worker_thread_args { int fd; }; /* File information */ |
︙ | ︙ | |||
676 677 678 679 680 681 682 | } } return(0); } /* Display help */ | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | } } return(0); } /* Display help */ static void filed_print_help(FILE *output, int long_help, const char *extra) { if (extra) { fprintf(output, "%s\n", extra); } fprintf(output, "Usage: filed [<options>]\n"); fprintf(output, " Options:\n"); fprintf(output, " -h, --help\n"); fprintf(output, " -b <address>, --bind <address>\n"); fprintf(output, " -p <port>, --port <port>\n"); fprintf(output, " -t <count>, --threads <count>\n"); fprintf(output, " -c <entries>, --cache <entries>\n"); fprintf(output, " -u <user>, --user <user>\n"); fprintf(output, " -r <directory>, --root <directory>\n"); if (long_help) { fprintf(output, "\n"); fprintf(output, " Usage:\n"); fprintf(output, " -h (or --help) prints this usage information\n"); fprintf(output, "\n"); fprintf(output, " -b (or --bind) specifies the address to listen for incoming HTTP\n"); fprintf(output, " requests on. The default value is \"%s\".\n", BIND_ADDR); fprintf(output, "\n"); fprintf(output, " -p (or --port) specifies the TCP port number to listen for incoming HTTP\n"); fprintf(output, " requests on. The default is %u.\n", (unsigned int) PORT); fprintf(output, "\n"); fprintf(output, " -t (or --threads) specifies the number of worker threads to create. Each\n"); fprintf(output, " worker thread can service one concurrent HTTP session.\n"); fprintf(output, " Thus the number of threads created will determine how\n"); fprintf(output, " many simultaneous transfers will be possible. The\n"); fprintf(output, " default is %lu.\n", (unsigned long) THREAD_COUNT); fprintf(output, "\n"); fprintf(output, " -c (or --cache) specifies the number of file information cache entries\n"); fprintf(output, " to allocate. Each cache entry holds file information as\n"); fprintf(output, " well as an open file descriptor to the file, so resource\n"); fprintf(output, " limits (i.e., ulimit) should be considered. This should\n"); fprintf(output, " be a prime number for ideal use with the lookup method.\n"); fprintf(output, " The default is %lu.\n", (unsigned long) CACHE_SIZE); fprintf(output, "\n"); fprintf(output, " -u (or --user) specifies the user to switch user IDs to before servicing\n"); fprintf(output, " requests. The default is not change user IDs.\n"); fprintf(output, "\n"); fprintf(output, " -r (or --root) specifies the directory to act as the root directory for\n"); fprintf(output, " the file server. If this option is specified, chroot(2)\n"); fprintf(output, " is called. The default is not change root directories,\n"); fprintf(output, " that is, the \"/\" directory is shared out. This will\n"); fprintf(output, " likely be a security issue, so this option should always\n"); fprintf(output, " be used.\n"); } return; } /* Add a getopt option */ static void filed_getopt_long_setopt(struct option *opt, const char *name, int has_arg, int val) { opt->name = name; |
︙ | ︙ | |||
749 750 751 752 753 754 755 | case 'b': bind_addr = strdup(optarg); break; case 'u': setuid_enabled = 1; lookup_ret = filed_user_lookup(optarg, &user); if (lookup_ret != 0) { | | | | | 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 | case 'b': bind_addr = strdup(optarg); break; case 'u': setuid_enabled = 1; lookup_ret = filed_user_lookup(optarg, &user); if (lookup_ret != 0) { filed_print_help(stderr, 0, "Invalid username specified"); return(1); } break; case 'r': newroot = strdup(optarg); break; case '?': case ':': filed_print_help(stderr, 0, NULL); return(1); case 'h': filed_print_help(stdout, 1, NULL); return(0); } } /* Create listening socket */ fd = filed_listen(bind_addr, port); |
︙ | ︙ |