summaryrefslogtreecommitdiff
path: root/ACE/protocols/ace/INet/HTTP_BasicAuthentication.inl
blob: 56b7a2fbcbaac3f0d563d1c7ce9240e984d3ed32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// -*- C++ -*-
//
// $Id$

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

namespace ACE
{
  namespace HTTP
  {

    ACE_INLINE
    void BasicAuthentication::user (const ACE_CString& usr)
      {
        this->user_ = usr;
      }

    ACE_INLINE
    const ACE_CString& BasicAuthentication::user () const
      {
        return this->user_;
      }

    ACE_INLINE
    void BasicAuthentication::password (const ACE_CString& passwd)
      {
        this->passwd_ = passwd;
      }

    ACE_INLINE
    const ACE_CString& BasicAuthentication::password () const
      {
        return this->passwd_;
      }

  }
}

ACE_END_VERSIONED_NAMESPACE_DECL