blob: 8a2da33eafc2e937eb6cc345eb2ccdbc8b055324 [file] [log] [blame]
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FUSEBOX_UTIL_H_
#define FUSEBOX_UTIL_H_
#include <string>
#include <dbus/message.h>
// Returns errno from |reader| containing the |response| message.
int GetResponseErrno(dbus::MessageReader* reader,
dbus::Response* response,
const char* operation = nullptr);
// Returns fuse open flags string: eg., "O_RDWR|O_CREAT|O_TRUNC".
std::string OpenFlagsToString(int flags);
// Returns fuse `to_set` flags string.
std::string ToSetFlagsToString(int flags);
#endif // FUSEBOX_UTIL_H_