Displaying 5 results from an estimated 5 matches for "42x".
Did you mean:
42
2004 Aug 24
1
Autoattend detecting same digit twice
...Has anyone ever seen a problem where the autoattend detects the first digit twice?
What I am seeing is this:
My extensions are 421-468.
When a caller calls in and dials exten 433 from the autoattendant, they get
exten 443. This is happen for any extension that is valid in the 44x range (i.e.
42x -> 442, 43x -> 443, 44x -> 444, etc.). I am seeing this problem about 1/3 of the time.
My setup is 6 PSTN (POTS) lines -> AccessBankII channel bank -> T100P card on the asterisk server -> Cisco 7940's and 7960's.
I have been through the wiki and the archives, but haven&...
2019 Sep 21
2
[PATCH nbdkit] server: public: Add nbdkit_parse_* functions for safely parsing integers.
...t;, BAD, 0);
+ PARSE (int, "%d", "++", BAD, 0);
+ PARSE (int, "%d", "++0", BAD, 0);
+ PARSE (int, "%d", "--0", BAD, 0);
+ PARSE (int, "%d", "0x", BAD, 0);
+ PARSE (int, "%d", "42x", BAD, 0);
+ PARSE (int, "%d", "42-", BAD, 0);
+ PARSE (int, "%d", "garbage", BAD, 0);
+ PARSE (int, "%d", "2147483648", BAD, 0); /* INT_MAX + 1 */
+ PARSE (int, "%d", "-2147483649", BAD, 0); /* INT_MIN...
2019 Sep 23
0
Re: [PATCH nbdkit] server: public: Add nbdkit_parse_* functions for safely parsing integers.
...;, BAD, 0);
> + PARSE (int, "%d", "++0", BAD, 0);
> + PARSE (int, "%d", "--0", BAD, 0);
> + PARSE (int, "%d", "0x", BAD, 0);
I'd also test "08" as BAD.
> + PARSE (int, "%d", "42x", BAD, 0);
> + PARSE (int, "%d", "42-", BAD, 0);
> + PARSE (int, "%d", "garbage", BAD, 0);
> + PARSE (int, "%d", "2147483648", BAD, 0); /* INT_MAX + 1 */
> + PARSE (int, "%d", "-2147483649",...
2019 Sep 23
2
Re: [PATCH nbdkit] server: public: Add nbdkit_parse_* functions for safely parsing integers.
...(int, "%d", "++0", BAD, 0);
> > + PARSE (int, "%d", "--0", BAD, 0);
> > + PARSE (int, "%d", "0x", BAD, 0);
>
> I'd also test "08" as BAD.
OK.
> > + PARSE (int, "%d", "42x", BAD, 0);
> > + PARSE (int, "%d", "42-", BAD, 0);
> > + PARSE (int, "%d", "garbage", BAD, 0);
> > + PARSE (int, "%d", "2147483648", BAD, 0); /* INT_MAX + 1 */
> > + PARSE (int, "%d", &quo...
2019 Sep 23
2
[PATCH nbdkit v2] server: public: Add nbdkit_parse_* functions for safely parsing integers.
...t;, "--0", BAD);
+ PARSE (int, "%d", "0x", BAD);
+ PARSE (int, "%d", "0xg", BAD);
+ PARSE (int, "%d", "08", BAD);
+ PARSE (int, "%d", "0x1p1", BAD);
+ PARSE (int, "%d", "42x", BAD);
+ PARSE (int, "%d", "42e42", BAD);
+ PARSE (int, "%d", "42-", BAD);
+ PARSE (int, "%d", "garbage", BAD);
+ PARSE (int, "%d", "inf", BAD);
+ PARSE (int, "%d", "nan",...