• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/bind9-45.100/bind9/bin/nsupdate/

Lines Matching defs:word

1120 	char *word;
1124 word = nsu_strsep(cmdlinep, " \t\r\n");
1125 if (*word == 0) {
1137 isc_buffer_init(&source, word, strlen(word));
1138 isc_buffer_add(&source, strlen(word));
1199 char *word;
1222 word = nsu_strsep(&cmdline, " \t\r\n");
1223 if (*word == 0) {
1227 region.base = word;
1228 region.length = strlen(word);
1232 fprintf(stderr, "class mismatch: %s\n", word);
1238 word = nsu_strsep(&cmdline, " \t\r\n");
1239 if (*word == 0) {
1243 region.base = word;
1244 region.length = strlen(word);
1247 fprintf(stderr, "invalid type: %s\n", word);
1254 fprintf(stderr, "invalid type: %s\n", word);
1308 char *word;
1312 word = nsu_strsep(&cmdline, " \t\r\n");
1313 if (*word == 0) {
1317 if (strcasecmp(word, "nxdomain") == 0) {
1320 } else if (strcasecmp(word, "yxdomain") == 0) {
1323 } else if (strcasecmp(word, "nxrrset") == 0) {
1326 } else if (strcasecmp(word, "yxrrset") == 0) {
1330 fprintf(stderr, "incorrect operation code: %s\n", word);
1338 char *word, *server;
1346 word = nsu_strsep(&cmdline, " \t\r\n");
1347 if (*word == 0) {
1351 server = word;
1353 word = nsu_strsep(&cmdline, " \t\r\n");
1354 if (*word == 0)
1358 port = strtol(word, &endp, 10);
1360 fprintf(stderr, "port '%s' is not numeric\n", word);
1364 "(1 to 65535)\n", word);
1382 char *word, *local;
1387 word = nsu_strsep(&cmdline, " \t\r\n");
1388 if (*word == 0) {
1392 local = word;
1394 word = nsu_strsep(&cmdline, " \t\r\n");
1395 if (*word == 0)
1399 port = strtol(word, &endp, 10);
1401 fprintf(stderr, "port '%s' is not numeric\n", word);
1405 "(1 to 65535)\n", word);
1504 char *word;
1508 word = nsu_strsep(&cmdline, " \t\r\n");
1509 if (*word == 0) {
1516 isc_buffer_init(&b, word, strlen(word));
1517 isc_buffer_add(&b, strlen(word));
1531 char *word;
1534 word = nsu_strsep(&cmdline, " \t\r\n");
1535 if (*word == 0) {
1542 snprintf(buf, sizeof(buf), "@%s", word);
1555 char *word;
1559 word = nsu_strsep(&cmdline, " \t\r\n");
1560 if (*word == 0) {
1565 if (!strcasecmp(word, "none")) {
1571 result = isc_parse_uint32(&ttl, word, 10);
1577 word, TTL_MAX);
1588 char *word;
1593 word = nsu_strsep(&cmdline, " \t\r\n");
1594 if (*word == 0) {
1599 r.base = word;
1600 r.length = strlen(word);
1603 fprintf(stderr, "could not parse class name: %s\n", word);
1610 fprintf(stderr, "bad default class: %s\n", word);
1624 char *word;
1651 word = nsu_strsep(&cmdline, " \t\r\n");
1652 if (*word == 0) {
1665 result = isc_parse_uint32(&ttl, word, 10);
1674 fprintf(stderr, "ttl '%s': %s\n", word,
1684 word, TTL_MAX);
1691 word = nsu_strsep(&cmdline, " \t\r\n");
1693 if (*word == 0) {
1704 region.base = word;
1705 region.length = strlen(word);
1710 fprintf(stderr, "class mismatch: %s\n", word);
1716 word = nsu_strsep(&cmdline, " \t\r\n");
1717 if (*word == 0) {
1728 region.base = word;
1729 region.length = strlen(word);
1733 word, isc_result_totext(result));
1741 "%s\n", word, isc_result_totext(result));
1792 char *word;
1796 word = nsu_strsep(&cmdline, " \t\r\n");
1797 if (*word == 0) {
1801 if (strcasecmp(word, "delete") == 0)
1803 else if (strcasecmp(word, "add") == 0)
1806 fprintf(stderr, "incorrect operation code: %s\n", word);
1886 char *word;
1898 word = nsu_strsep(&cmdline, " \t\r\n");
1902 if (*word == 0)
1904 if (word[0] == ';')
1906 if (strcasecmp(word, "quit") == 0)
1908 if (strcasecmp(word, "prereq") == 0)
1910 if (strcasecmp(word, "update") == 0)
1912 if (strcasecmp(word, "server") == 0)
1914 if (strcasecmp(word, "local") == 0)
1916 if (strcasecmp(word, "zone") == 0)
1918 if (strcasecmp(word, "class") == 0)
1920 if (strcasecmp(word, "send") == 0)
1922 if (strcasecmp(word, "debug") == 0) {
1929 if (strcasecmp(word, "ttl") == 0)
1931 if (strcasecmp(word, "show") == 0) {
1935 if (strcasecmp(word, "answer") == 0) {
1940 if (strcasecmp(word, "key") == 0) {
1944 if (strcasecmp(word, "realm") == 0)
1946 if (strcasecmp(word, "gsstsig") == 0) {
1955 if (strcasecmp(word, "oldgsstsig") == 0) {
1964 if (strcasecmp(word, "help") == 0) {
1986 fprintf(stderr, "incorrect section name: %s\n", word);