2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
10 const ACE_CString& URL::get_scheme () const
16 const ACE_CString& URL::get_query () const
22 const ACE_CString& URL::get_fragment () const
24 return this->fragment_;
28 void URL::set_query (const ACE_CString& query)
34 void URL::set_fragment (const ACE_CString& fragment)
36 this->fragment_ = fragment;
40 void URL::set_proxy (const ACE_CString& proxy_host, u_short proxy_port)
42 this->proxy_host_ = proxy_host;
43 this->proxy_port_ = proxy_port;
47 const ACE_CString& URL::get_proxy_host () const
49 return this->proxy_host_;
53 u_short URL::get_proxy_port () const
55 return this->proxy_port_;
59 bool URL::has_proxy () const
61 return !this->proxy_host_.empty ();
65 u_short URL::default_port () const
73 ACE_END_VERSIONED_NAMESPACE_DECL