summaryrefslogtreecommitdiff
path: root/ACE/protocols/ace/INet/HTTP_BasicAuthentication.inl
blob: 1b88dfc2bf78c257dd66d26802d79f2fa45235e5 (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
// -*- C++ -*-
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