Lines Matching refs:errstr
138 const char *errstr, *proxyhost = "", *proxyport = NULL; in main() local
179 iflag = strtonum(optarg, 0, UINT_MAX, &errstr); in main()
180 if (errstr) in main()
181 errx(1, "interval %s: %s", errstr, optarg); in main()
214 timeout = strtonum(optarg, 0, INT_MAX / 1000, &errstr); in main()
215 if (errstr) in main()
216 errx(1, "timeout %s: %s", errstr, optarg); in main()
335 &errstr) == 0) in main()
337 uport, errstr); in main()
776 const char *errstr; in build_ports() local
799 lo = strtonum(token, PORT_MIN, PORT_MAX, &errstr); in build_ports()
800 if (errstr) in build_ports()
801 errx(1, "port number %s: %s", errstr, token); in build_ports()
806 hi = strtonum(n, PORT_MIN, PORT_MAX, &errstr); in build_ports()
807 if (errstr) in build_ports()
808 errx(1, "port number %s: %s", errstr, n); in build_ports()