Show
Ignore:
Timestamp:
07/04/08 14:36:58 (5 months ago)
Author:
cyrusdaboo
Message:

Parse out the user:password portion of http URLs. This will allow us to set user ids in
web calendar URLs to allow keychain based logins to work properly.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/branches/v4.1d1/Sources_Common/Mail/URLs/CURL.h

    r19 r167  
    109109        } 
    110110         
     111        const cdstring& User() const 
     112        { 
     113                return mUser; 
     114        } 
     115         
     116        const cdstring& Password() const 
     117        { 
     118                return mPassword; 
     119        } 
     120         
    111121        const cdstring& Server() const 
    112122        { 
     
    132142        EScheme         mSchemeType; 
    133143        cdstring        mScheme; 
     144        cdstring        mUser; 
     145        cdstring        mPassword; 
    134146        cdstring        mServer; 
    135147        cdstring        mPath;