/usr/include/kfileshare.h is in kdelibs5-dev 4:4.8.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | /* This file is part of the KDE project
Copyright (c) 2001 David Faure <faure@kde.org>
Copyright (c) 2001 Laurent Montel <lmontel@mandrakesoft.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef kfileshare_h
#define kfileshare_h
#include <kio/kio_export.h>
class QString;
/**
* Common functionality for the file sharing
* (communication with the backend)
*/
namespace KFileShare
{
/**
* Reads the file share configuration file
*/
KIO_EXPORT void readConfig();
/**
* Reads the list of shared folders
*/
KIO_EXPORT void readShareList();
/**
* Call this to know if a directory is currently shared
*/
KIO_EXPORT bool isDirectoryShared( const QString& path );
enum Authorization { NotInitialized, ErrorNotFound, Authorized, UserNotAllowed };
/**
* Call this to know if the current user is authorized to share directories
*/
KIO_EXPORT Authorization authorization();
/**
* Uses a suid perl script to share the given path
* with NFS and Samba
* @param path the path to share
* @param shared whether the path should be shared or not
* @returns whether the perl script was successful
*/
KIO_EXPORT bool setShared( const QString& path, bool shared );
/**
* The used share mode.
* Simple means that the simple sharing dialog is used and
* users can share only folders from there HOME folder.
* Advanced means that the advanced sharing dialog is used and
* users can share any folder.
*/
enum ShareMode { Simple, Advanced };
/**
* Returns whether sharing is enabled
* If this is false, file sharing is disabled and
* nobody can share files.
*/
KIO_EXPORT bool sharingEnabled();
/**
* Returns whether file sharing is restricted.
* If it is not restricted every user can shar files.
* If it is restricted only users in the configured
* file share group can share files.
*/
KIO_EXPORT bool isRestricted();
/**
* Returns the group that is used for file sharing.
* That is, all users in that group are allowed to
* share files if file sharing is restricted.
*/
KIO_EXPORT QString fileShareGroup();
/**
* Returns the configured share mode
*/
KIO_EXPORT ShareMode shareMode();
/**
* Returns whether Samba is enabled
*/
KIO_EXPORT bool sambaEnabled();
/**
* Returns whether NFS is enabled
*/
KIO_EXPORT bool nfsEnabled();
}
#endif
|