blob: 944c762483f35559db233c229120eb6b0b31f79b (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/* -*- C++ -*- */
// $Id$
// SPIPE_Addr.i
#include "ace/SString.h"
// Transform the current address into string format.
#if defined (UNICODE)
ACE_INLINE int
ACE_SPIPE_Addr::addr_to_string (wchar_t *s, size_t len) const
{
ACE_OS::strncpy (s, this->SPIPE_addr_.rendezvous_, len);
return 0;
}
#endif /* UNICODE */
ACE_INLINE int
ACE_SPIPE_Addr::addr_to_string (char *s, size_t len) const
{
ACE_OS::strncpy (s,
ACE_MULTIBYTE_STRING (this->SPIPE_addr_.rendezvous_),
len);
return 0;
}
// Return the address.
ACE_INLINE void *
ACE_SPIPE_Addr::get_addr (void) const
{
return (void *) &this->SPIPE_addr_;
}
// Compare two addresses for equality.
ACE_INLINE int
ACE_SPIPE_Addr::operator == (const ACE_SPIPE_Addr &sap) const
{
return ACE_OS::strcmp (this->SPIPE_addr_.rendezvous_,
sap.SPIPE_addr_.rendezvous_ ) == 0;
}
// Compare two addresses for inequality.
ACE_INLINE int
ACE_SPIPE_Addr::operator != (const ACE_SPIPE_Addr &sap) const
{
return !((*this) == sap); // This is lazy, of course... ;-)
}
// Return the path name used for the rendezvous point.
ACE_INLINE LPCTSTR
ACE_SPIPE_Addr::get_path_name (void) const
{
return this->SPIPE_addr_.rendezvous_;
}
ACE_INLINE uid_t
ACE_SPIPE_Addr::user_id (void) const
{
return this->SPIPE_addr_.uid_;
}
ACE_INLINE void
ACE_SPIPE_Addr::user_id (uid_t uid)
{
this->SPIPE_addr_.uid_ = uid;
}
ACE_INLINE gid_t
ACE_SPIPE_Addr::group_id (void) const
{
return this->SPIPE_addr_.gid_;
}
ACE_INLINE void
ACE_SPIPE_Addr::group_id (gid_t gid)
{
this->SPIPE_addr_.gid_ = gid;
}
|