summaryrefslogtreecommitdiff
path: root/ACE/ace/LSOCK.inl
blob: 7e7d9d1d6bfe2542021fe17ffdb09048803490f6 (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
40
// -*- C++ -*-
ACE_BEGIN_VERSIONED_NAMESPACE_DECL

// Simple-minded constructor.

ACE_INLINE
ACE_LSOCK::ACE_LSOCK (void)
  : aux_handle_ (ACE_INVALID_HANDLE)
{
  ACE_TRACE ("ACE_LSOCK::ACE_LSOCK");
}

// Sets the underlying file descriptor.

ACE_INLINE void
ACE_LSOCK::set_handle (ACE_HANDLE handle)
{
  ACE_TRACE ("ACE_LSOCK::set_handle");
  this->aux_handle_ = handle;
}

// Gets the underlying file descriptor.

ACE_INLINE ACE_HANDLE
ACE_LSOCK::get_handle () const
{
  ACE_TRACE ("ACE_LSOCK::get_handle");
  return this->aux_handle_;
}

// Sets the underlying file descriptor.

ACE_INLINE
ACE_LSOCK::ACE_LSOCK (ACE_HANDLE handle)
  : aux_handle_ (handle)
{
  ACE_TRACE ("ACE_LSOCK::ACE_LSOCK");
}

ACE_END_VERSIONED_NAMESPACE_DECL