Re: [Perlgssapi-developer] Patches for perl-GSSAPI
Brought to you by:
achimgrolms
From: Simon W. <sx...@in...> - 2006-04-21 10:11:12
|
On Fri, 21 Apr 2006, Achim Grolms wrote: > +require AutoLoader; This probably isn't required anymore. > - SvCUR_set($arg, $var.length-1); > + SvCUR_set($arg, $var.length); > > Is there a way to write a test that shows the buggy bahaviour? > I want to add that test to the testsuite to see that the changes fix the bug. I'll try and dig something out. It's a long time since I wrote this code, and since then it has 'just worked' for us. > #-------------------------------------------------------- > 3. > gss_krb5_copy_ccache > > Is this function exported by all the GSSAPI implementations? > (Heimdal, MIT, VAS)? It's certainly in Heimdal and MIT. Not sure about VAS. You only really need it if you're writing something that accepts incoming GSSAPI connections - we use it for a couple of servers which carry out delegated actions on behalf of the user. > I am worried to add code the makes the module implementation-dependend, > My idea was to rely only to things defined in RFC2744. Nico Williams has an Internet-Draft which defines a different means of doing this, which hopefully will become part of some future revison of RFC2744 - it's a fairly widely accepted limitation of the current GSSAPI. Cheers, Simon. |