mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-21 04:18:23 -04:00
Expose /rsFiles/requestDirDetails via JSON API
This method is useful to browse own shared directries, or directries shared by friends whith browseable permission
This commit is contained in:
parent
2139090f5d
commit
c05c376351
6 changed files with 89 additions and 29 deletions
|
@ -23,7 +23,7 @@
|
|||
template<int n> class t_RsFlags32
|
||||
{
|
||||
public:
|
||||
inline t_RsFlags32() { _bits=0; }
|
||||
inline t_RsFlags32() : _bits(0) {}
|
||||
inline explicit t_RsFlags32(uint32_t N) : _bits(N) {} // allows initialization from a set of uint32_t
|
||||
|
||||
inline t_RsFlags32<n> operator| (const t_RsFlags32<n>& f) const { return t_RsFlags32<n>(_bits | f._bits) ; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue