Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <osl/pipe.hxx>
21 : #include <osl/socket.hxx>
22 :
23 : #include <com/sun/star/connection/XConnection.hpp>
24 :
25 : namespace io_acceptor {
26 :
27 0 : class PipeAcceptor
28 : {
29 : public:
30 : PipeAcceptor( const OUString &sPipeName , const OUString &sConnectionDescription );
31 :
32 : void init();
33 : ::com::sun::star::uno::Reference < ::com::sun::star::connection::XConnection > accept( );
34 :
35 : void stopAccepting();
36 :
37 : ::osl::Mutex m_mutex;
38 : ::osl::Pipe m_pipe;
39 : OUString m_sPipeName;
40 : OUString m_sConnectionDescription;
41 : sal_Bool m_bClosed;
42 : };
43 :
44 0 : class SocketAcceptor
45 : {
46 : public:
47 : SocketAcceptor( const OUString & sSocketName ,
48 : sal_uInt16 nPort,
49 : sal_Bool bTcpNoDelay,
50 : const OUString &sConnectionDescription );
51 :
52 : void init();
53 : ::com::sun::star::uno::Reference < ::com::sun::star::connection::XConnection > accept();
54 :
55 : void stopAccepting();
56 :
57 : ::osl::SocketAddr m_addr;
58 : ::osl::AcceptorSocket m_socket;
59 : OUString m_sSocketName;
60 : OUString m_sConnectionDescription;
61 : sal_uInt16 m_nPort;
62 : sal_Bool m_bTcpNoDelay;
63 : sal_Bool m_bClosed;
64 : };
65 :
66 : }
67 :
68 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|