/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
namespace proxydecider_impl { class InternetProxyDecider_Impl; }
/** * This class is able to decide whether and which internet proxy server is to * be used to access a given URI. * * The implementation reads the internet proxy settings from Office * configuration. It listens for configuration changes and adapts itself * accordingly. Because configuration data can change during runtime clients * should not cache results obtained from InternetProxyDecider instances. One * instance should be kept to be queried multiple times instead.
*/ class UCBHELPER_DLLPUBLIC InternetProxyDecider
{ public: /** * Constructor. * * Note: Every instance should be held alive as long as possible because * because construction is quite expensive. * * @param rxSMgr is a Service Manager.
*/
InternetProxyDecider( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
/** * Destructor.
*/
~InternetProxyDecider();
/** * Returns the proxy server to be used. * * @param rProtocol contains the internet protocol to be used to * access the server (i.e. "ftp", "http"). The protocol string * is handled case-insensitive and must not be empty. * @param rHost contains the name of the server that should be accessed. * This parameter might be left empty. In this case the * implementation will return the proxy that is configured * for the given protocol. * @param nPort contains the port of the server that should be accessed. * If host is not empty this parameter must always contain a valid * port number, for instance the default port for the requested * protocol(i.e. 80 or http). * @return an URL, with or without scheme. * If empty no proxy server is to be used.
*/
OUString
getProxy( const OUString & rProtocol, const OUString & rHost,
sal_Int32 nPort ) const;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.