* FD of the connection is always the index of the connection structure
* in `conns' array + FCS
*/
-struct {
+static struct {
char buf[20];
int len;
time_t lasttime;
} conns[MAXCONNS];
/* When using global variables, bind those at least to a structure. */
-struct {
+static struct {
const char *identuser;
fd_set readfds;
int conncnt;
FD_SET(0, &G.readfds);
/* handle -b <ip> parameter */
- while ((flag = getopt(argc, argv, "b:")) != EOF) {
- switch (flag) {
- case 'b':
- bind_ip_address = optarg;
- break;
- default:
- bb_show_usage();
- }
- }
+ bb_getopt_ulflags(argc, argv, "b:", &bind_ip_address);
/* handle optional REPLY STRING */
if (optind < argc)
G.identuser = argv[optind];
if (godaemon() == 0)
return 0;
+ /* main loop where we process all events and never exit */
while (1) {
fd_set rfds = G.readfds;
struct timeval tv = { 15, 0 };