canonicalize more method names to proper interCaps style. a=r=(not built)

git-svn-id: svn://10.0.0.236/trunk@72017 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dmose%mozilla.org 2000-06-12 01:42:08 +00:00
parent 5ce269935c
commit bbfdcdf5bb
4 changed files with 7 additions and 7 deletions

View File

@ -48,10 +48,10 @@ interface nsILDAPConnection : nsISupports
readonly attribute string errorString;
// wrapper for ldap_init()
void Init(in string defhost, in short defport);
void init(in string defhost, in short defport);
// wrapper for ldap_get_lderrno()
long GetLdErrno(out string matched, out string s);
long getLdErrno(out string matched, out string s);
// really only for the internal use of nsLDAPOperation and friends
//

View File

@ -46,15 +46,15 @@ interface nsILDAPOperation : nsISupports
// wrapper for ldap_simple_bind()
//
void SimpleBind(in string binddn, in string passwd);
void simpleBind(in string binddn, in string passwd);
// wrapper for ldap_search_url()
//
void URLSearch(in string url, in boolean attrsonly);
void urlSearch(in string url, in boolean attrsonly);
// wrapper for ldap_result()
// XXX - timeout currently ignored
// XXX - should add consts for all param
//
long Result(in long all, in PRTime timeout, out nsILDAPMessage message);
long result(in long all, in PRTime timeout, out nsILDAPMessage message);
};

View File

@ -136,7 +136,7 @@ lds(class nsLDAPChannel *chan, const char *url)
// XXX what about timeouts?
// XXX failure is a reasonable thing; don't assert
//
rv = myOperation->URLSearch(url, PR_FALSE);
rv = myOperation->UrlSearch(url, PR_FALSE);
NS_ENSURE_SUCCESS(rv,rv);
// poll for results

View File

@ -176,7 +176,7 @@ nsLDAPOperation::SearchExt(const char *base, // base DN to search
// wrapper for ldap_url_search
//
NS_IMETHODIMP
nsLDAPOperation::URLSearch(const char *aURL, // the search URL
nsLDAPOperation::UrlSearch(const char *aURL, // the search URL
PRBool aAttrsOnly) // skip attribute names?
{
NS_ENSURE_ARG(aURL);