Re: bug report: "too many SRV records" becomes "no SRV records"

2010-06-10 Thread Richard Silverman
On Thu, 10 Jun 2010, Tom Yu wrote: > "Richard E. Silverman" writes: > >> In 1.8.1, there is the following code in src/lib/krb5/os/dnsglue.c: >> >>krb5int_dns_init(struct krb5int_dns_state **dsp, >> char *host, int nclass, int ntype) >>{ >>... >> nextincr = 204

Re: bug report: "too many SRV records" becomes "no SRV records"

2010-06-10 Thread Richard Silverman
On Thu, 10 Jun 2010, Tom Yu wrote: > "Richard E. Silverman" writes: > >> In 1.8.1, there is the following code in src/lib/krb5/os/dnsglue.c: >> >>krb5int_dns_init(struct krb5int_dns_state **dsp, >> char *host, int nclass, int ntype) >>{ >>... >> nextincr = 204

Re: bug report: "too many SRV records" becomes "no SRV records"

2010-06-10 Thread Will Fiveash
On Thu, Jun 10, 2010 at 04:49:23PM -0400, Richard Silverman wrote: > On Thu, 10 Jun 2010, Tom Yu wrote: > > > "Richard E. Silverman" writes: > > > >> In 1.8.1, there is the following code in src/lib/krb5/os/dnsglue.c: > >> > >>krb5int_dns_init(struct krb5int_dns_state **dsp, > >>

Re: bug report: "too many SRV records" becomes "no SRV records"

2010-06-10 Thread Tom Yu
"Richard E. Silverman" writes: > In 1.8.1, there is the following code in src/lib/krb5/os/dnsglue.c: > >krb5int_dns_init(struct krb5int_dns_state **dsp, > char *host, int nclass, int ntype) >{ >... > nextincr = 2048; > maxincr = INT_MAX; >... > > One

Re: bug report: "too many SRV records" becomes "no SRV records"

2010-06-09 Thread Ken Raeburn
On Jun 9, 2010, at 17:36, Richard E. Silverman wrote: >> "res" == Richard E Silverman writes: > >res> One day, due to an error, the number of KDC SRV records for one >res> of our realms doubled from 27 to 54... and KDC lookups via DNS >res> prompty broke. I bumped up the nextincr

bug report: "too many SRV records" becomes "no SRV records"

2010-06-09 Thread Richard E. Silverman
In 1.8.1, there is the following code in src/lib/krb5/os/dnsglue.c: krb5int_dns_init(struct krb5int_dns_state **dsp, char *host, int nclass, int ntype) { ... nextincr = 2048; maxincr = INT_MAX; ... One day, due to an error, the number of KDC SRV records

Re: bug report: "too many SRV records" becomes "no SRV records"

2010-06-09 Thread Richard E. Silverman
> "res" == Richard E Silverman writes: res> In 1.8.1, there is the following code in res> src/lib/krb5/os/dnsglue.c: res>krb5int_dns_init(struct krb5int_dns_state **dsp, char *host, res> int nclass, int ntype) { ... nextincr = 2048; maxincr = INT_MAX; res> ... r