-
Notifications
You must be signed in to change notification settings - Fork 11
First draft of Mkdir in HTTPFileSystem #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
36adbff
0fbb9d6
1e3a761
90a1b94
388adf7
53b8931
211e14c
aef824b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -18,6 +18,7 @@ | |||||||
|
|
||||||||
| #include "HTTPFileSystem.hh" | ||||||||
| #include "HTTPDirectory.hh" | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [lint] reported by reviewdog 🐶
Suggested change
|
||||||||
| #include "HTTPCommands.hh" | ||||||||
| #include "HTTPFile.hh" | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [lint] reported by reviewdog 🐶
Suggested change
|
||||||||
| #include "logging.hh" | ||||||||
|
|
||||||||
|
|
@@ -173,3 +174,10 @@ int HTTPFileSystem::Create(const char *tid, const char *path, mode_t mode, | |||||||
|
|
||||||||
| return 0; | ||||||||
| } | ||||||||
|
|
||||||||
| int HTTPFileSystem::Mkdir(const char *path, mode_t mode, int mkpath, | ||||||||
| XrdOucEnv *env) { | ||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [lint] reported by reviewdog 🐶
Suggested change
|
||||||||
| HTTPMkcol mkcol(m_url_base, path, m_log, getToken()); | ||||||||
| mkcol.SendRequest(); | ||||||||
| return 0; | ||||||||
| } | ||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -161,7 +161,7 @@ EOF | |
|
|
||
| cat > $XROOTD_CONFIGDIR/authdb <<EOF | ||
|
|
||
| u * / lr | ||
| u * / lri | ||
|
|
||
| EOF | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[lint] reported by reviewdog 🐶