• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/ez-ipupdate/

Lines Matching defs:user

29  *   curl -u user:pass http://www.ez-ip.net/members/update/?key=val&...
263 char user[256];
310 static char *EZIP_fields_used[] = { "server", "user", "address", "wildcard", "mx", "url", "host", NULL };
320 static char *DHS_fields_used[] = { "server", "user", "address", "wildcard", "mx", "url", "host", NULL };
325 static char *DYNDNS_fields_used[] = { "server", "user", "address", "wildcard", "mx", "host", NULL };
326 static char *DYNDNS_STAT_fields_used[] = { "server", "user", "address", "wildcard", "mx", "host", NULL };
336 static char *TZO_fields_used[] = { "server", "user", "address", "host", "connection-type", NULL };
340 static char *EASYDNS_fields_used[] = { "server", "user", "address", "wildcard", "mx", "host", NULL };
344 static char *EASYDNS_PARTNER_fields_used[] = { "server", "partner", "user", "address", "wildcard", "host", NULL };
349 static char *GNUDIP_fields_used[] = { "server", "user", "host", "address", NULL };
355 static char *JUSTL_fields_used[] = { "server", "user", "host", NULL };
360 static char *DYNS_fields_used[] = { "server", "user", "host", NULL };
365 static char *HN_fields_used[] = { "server", "user", "address", NULL };
370 static char *ZONEEDIT_fields_used[] = { "server", "user", "address", "mx", "host", NULL };
375 static char *HEIPV6TB_fields_used[] = { "server", "user", NULL };
663 { CMD_user, "user", CONF_NEED_ARG, 1, conf_handler, "%s=<user name>[:password]" },
664 { CMD_run_as_user, "run-as-user", CONF_NEED_ARG, 1, conf_handler, "%s=<user>" },
665 { CMD_run_as_euser, "run-as-euser", CONF_NEED_ARG, 1, conf_handler, "%s=<user> (this is not secure)" },
721 fprintf(stdout, " -R, --run-as-user <user>\tchange to <user> for running, be ware\n\t\t\t\tthat this can cause problems with handeling\n\t\t\t\tSIGHUP properly if that user can't read the\n\t\t\t\tconfig file. also it can't write it's pid file \n\t\t\t\tto a root directory\n");
722 fprintf(stdout, " -Q, --run-as-euser <user>\tchange to effective <user> for running, \n\t\t\t\tthis is NOT secure but it does solve the \n\t\t\t\tproblems with run-as-user and config files and \n\t\t\t\tpid files.\n");
735 fprintf(stdout, " -u, --user <user[:passwd]>\tuser ID and password, if either is left blank \n\t\t\t\tthey will be prompted for\n");
1182 strncpy(user, optarg, sizeof(user));
1183 user[sizeof(user)-1] = '\0';
1184 dprintf((stderr, "user: %s\n", user));
1210 show_message("error changing user id\n");
1214 show_message("option \"daemon-user\" not supported on this system\n");
1235 show_message("error changing user id\n");
1331 {"run-as-user", required_argument, 0, 'R'},
1338 {"user", required_argument, 0, 'u'},
2365 /* send user command */
3095 show_message("invalid user name(email address)\n");
4032 * 204 - Failure because account is locked (by user)
4067 show_message("Failure because account is locked (by user).\n");
4505 *user = '\0';
4512 // catch user interupts
4568 if(*user != '\0')
4570 sscanf(user, "%127[^:]:%127[^\n]", user_name, password);
4576 get_input("user name", user_name, sizeof(user_name));
4582 sprintf(user, "%s:%s", user_name, password);
4584 base64Encode(user, auth);