mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-02 02:11:11 +02:00
convert most char[...] configuration values to std::string
Signed-off-by: Jacek Jendrzej <crashdvb@googlemail.com>
This commit is contained in:
@@ -91,10 +91,10 @@ class CFSMounter
|
||||
*/
|
||||
public:
|
||||
CFSMounter();
|
||||
static bool isMounted(const char * const local_dir);
|
||||
static CFSMounter::MountRes mount(const char * const ip, const char * const dir, const char * const local_dir,
|
||||
const FSType fstype, const char * const username, const char * const password,
|
||||
char * options1, char * options2);
|
||||
static bool isMounted(const std::string &local_dir);
|
||||
static CFSMounter::MountRes mount(const std::string &ip, const std::string &dir, const std::string &local_dir,
|
||||
const FSType fstype, const std::string &username, const std::string &password,
|
||||
std::string options1, std::string options2);
|
||||
static bool automount();
|
||||
static CFSMounter::UMountRes umount(const char * const dir = NULL);
|
||||
static void getMountedFS(MountInfos& fs);
|
||||
|
Reference in New Issue
Block a user