Change-Id: I5e2a41365cab8bea7efda6a22cf4c15fec474a89
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/4110
Reviewed-by: Sharath George
Tested-by: Sharath George
| ... | ... |
@@ -1,7 +1,7 @@ |
| 1 | 1 |
Name: c-rest-engine |
| 2 | 2 |
Summary: minimal http(s) server library |
| 3 |
-Version: 1.0.4 |
|
| 4 |
-Release: 2%{?dist}
|
|
| 3 |
+Version: 1.0.5 |
|
| 4 |
+Release: 1%{?dist}
|
|
| 5 | 5 |
Group: Applications/System |
| 6 | 6 |
Vendor: VMware, Inc. |
| 7 | 7 |
License: Apache 2.0 |
| ... | ... |
@@ -12,8 +12,7 @@ Requires: openssl >= 1.0.1 |
| 12 | 12 |
BuildRequires: coreutils >= 8.22 |
| 13 | 13 |
BuildRequires: openssl-devel >= 1.0.1 |
| 14 | 14 |
Source0: %{name}-%{version}.tar.gz
|
| 15 |
-%define sha1 c-rest-engine=3b2e8e421f1d3d2a3932502f24c5064c993e0ad0 |
|
| 16 |
-Patch0: logLevelError.patch |
|
| 15 |
+%define sha1 c-rest-engine=f846acf51e5d8b31d73d78c3d55c14e887208064 |
|
| 17 | 16 |
|
| 18 | 17 |
%description |
| 19 | 18 |
c-rest-engine is a minimal embedded http(s) server written in C. |
| ... | ... |
@@ -31,7 +30,6 @@ development libs and header files for c-rest-engine |
| 31 | 31 |
|
| 32 | 32 |
%prep |
| 33 | 33 |
%setup -q |
| 34 |
-%patch0 -p1 |
|
| 35 | 34 |
|
| 36 | 35 |
%build |
| 37 | 36 |
cd build |
| ... | ... |
@@ -64,6 +62,8 @@ find %{buildroot} -name '*.la' -delete
|
| 64 | 64 |
# %doc ChangeLog README COPYING |
| 65 | 65 |
|
| 66 | 66 |
%changelog |
| 67 |
+* Fri Oct 20 2017 Kumar Kaushik <kaushikk@vmware.com> 1.0.5-1 |
|
| 68 |
+- New API for peer info. |
|
| 67 | 69 |
* Tue Sep 12 2017 Kumar Kaushik <kaushikk@vmware.com> 1.0.4-2 |
| 68 | 70 |
- Making default log level as ERROR. |
| 69 | 71 |
* Mon Sep 11 2017 Kumar Kaushik <kaushikk@vmware.com> 1.0.4-1 |
| 70 | 72 |
deleted file mode 100644 |
| ... | ... |
@@ -1,47 +0,0 @@ |
| 1 |
-From 02458173e2f9eb7e931e5503f165ff59336cd3da Mon Sep 17 00:00:00 2001 |
|
| 2 |
-From: Kumar Kaushik <kaushikk@vmware.com> |
|
| 3 |
-Date: Tue, 12 Sep 2017 14:18:25 -0700 |
|
| 4 |
-Subject: [PATCH] Making log level to ERROR |
|
| 5 |
- |
|
| 6 |
-Change-Id: Icbcff058e0b6fce14c2e36e72f589414e1af27b7 |
|
| 7 |
- build/package/rpm/c-rest-engine.spec | 6 ++++-- |
|
| 8 |
- server/restengine/httpMain.c | 2 +- |
|
| 9 |
- 2 files changed, 5 insertions(+), 3 deletions(-) |
|
| 10 |
- |
|
| 11 |
-diff --git a/build/package/rpm/c-rest-engine.spec b/build/package/rpm/c-rest-engine.spec |
|
| 12 |
-index 34e85b5..3ab6aff 100644 |
|
| 13 |
-+++ b/build/package/rpm/c-rest-engine.spec |
|
| 14 |
-@@ -1,7 +1,7 @@ |
|
| 15 |
- Name: c-rest-engine |
|
| 16 |
- Summary: Minimal http(s) server library |
|
| 17 |
--Version: 1.0.3 |
|
| 18 |
--Release: 5%{?dist}
|
|
| 19 |
-+Version: 1.0.4 |
|
| 20 |
-+Release: 1%{?dist}
|
|
| 21 |
- Group: Applications/System |
|
| 22 |
- Vendor: VMware, Inc. |
|
| 23 |
- License: Apache 2.0 |
|
| 24 |
-@@ -65,6 +65,8 @@ find %{buildroot} -name '*.la' -delete
|
|
| 25 |
- %{_lib64dir}/*.so
|
|
| 26 |
- |
|
| 27 |
- %changelog |
|
| 28 |
-+* Tue Sep 12 2017 Kumar Kaushik <kaushikk@vmware.com> 1.0.4-1 |
|
| 29 |
-+- Making log level to ERROR. |
|
| 30 |
- * Thu Aug 17 2017 Kumar Kaushik <kaushikk@vmware.com> 1.0.3-5 |
|
| 31 |
- - Adding new and cleaner parsing for all packets. |
|
| 32 |
- * Mon Aug 14 2017 Kumar Kaushik <kaushikk@vmware.com> 1.0.3-4 |
|
| 33 |
-diff --git a/server/restengine/httpMain.c b/server/restengine/httpMain.c |
|
| 34 |
-index 5c1b15a..7075e5d 100644 |
|
| 35 |
-+++ b/server/restengine/httpMain.c |
|
| 36 |
-@@ -29,7 +29,7 @@ VmHTTPInit( |
|
| 37 |
- } |
|
| 38 |
- BAIL_ON_VMREST_ERROR(dwError); |
|
| 39 |
- |
|
| 40 |
-- pRESTHandle->debugLogLevel = VMREST_LOG_LEVEL_DEBUG; |
|
| 41 |
-+ pRESTHandle->debugLogLevel = VMREST_LOG_LEVEL_ERROR; |
|
| 42 |
- |
|
| 43 |
- if (pConfig != NULL) |
|
| 44 |
- {
|