repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git]
/
ACE
/
protocols
/
ace
/
INet
/
FTP_URL.inl
blob
f04d4724bfa5abd3239b852730c9e382feee603d
1
// -*- C++ -*-
2
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
3
4
namespace ACE
5
{
6
namespace FTP
7
{
8
9
ACE_INLINE
10
const ACE_CString& URL::get_scheme () const
11
{
12
return protocol ();
13
}
14
15
ACE_INLINE
16
u_short URL::default_port () const
17
{
18
return FTP_PORT;
19
}
20
21
}
22
}
23
24
ACE_END_VERSIONED_NAMESPACE_DECL