Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
c4603374
Commit
c4603374
authored
6 years ago
by
Sergey Linev
Committed by
Axel Naumann
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
http: add depricated methods to release notes
parent
11f40f28
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README/ReleaseNotes/v618/index.md
+24
-0
24 additions, 0 deletions
README/ReleaseNotes/v618/index.md
with
24 additions
and
0 deletions
README/ReleaseNotes/v618/index.md
+
24
−
0
View file @
c4603374
...
...
@@ -29,6 +29,30 @@ The following people have contributed to this new version:
Vassil Vassilev, Princeton/CMS,
\
Wouter Verkerke, NIKHEF/Atlas,
## Deprecation and Removal
### THttpServer classes
Following deprecated methods were removed:
*
Bool_t THttpServer::SubmitHttp(THttpCallArg
*
arg, Bool_t can_run_immediately = kFALSE, Bool_t ownership = kFALSE);
*
Bool_t THttpServer::ExecuteHttp(THttpCallArg
*
arg)
*
Bool_t TRootSniffer::Produce(const char
*path, const char *
file, const char
*options, void *
&ptr, Long_t &length, TString
&str);
*
TString THttpCallArg::GetPostDataAsString();
*
void THttpCallArg::FillHttpHeader(TString &buf, const char
*
header = nullptr);
*
void THttpCallArg::SetBinData(void
*
data, Long_t length);
Methods should be replaced by equivalent methods with other signature:
*
Bool_t THttpServer::SubmitHttp(std::shared_ptr
<THttpCallArg>
arg, Bool_t can_run_immediately = kFALSE);
*
Bool_t THttpServer::ExecuteHttp(std::shared_ptr
<THttpCallArg>
arg);
*
Bool_t TRootSniffer::Produce(const std::string &path, const std::string &file, const std::string &options, std::string
&res);
*
const void
*
THttpCallArg::GetPostData() const;
*
Long_t THttpCallArg::GetPostDataLength() const;
*
std::string THttpCallArg::FillHttpHeader(const char
*
header = nullptr);
*
void THttpCallArg::SetContent(std::string
&&cont);
## Core Libraries
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment