From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0b-002e3701.pphosted.com (mx0b-002e3701.pphosted.com [148.163.143.35]) by mx.groups.io with SMTP id smtpd.web09.4428.1628665160163258752 for ; Tue, 10 Aug 2021 23:59:20 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=XtoTdKpl; spf=permerror, err=parse error for token &{10 18 %{ir}.%{v}.%{d}.spf.has.pphosted.com}: invalid domain name (domain: hpe.com, ip: 148.163.143.35, mailfrom: prvs=08571cd263=abner.chang@hpe.com) Received: from pps.filterd (m0134424.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 17B6wABb020448; Wed, 11 Aug 2021 06:59:12 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hpe.com; h=from : to : cc : subject : date : message-id; s=pps0720; bh=/bZG5R8erGQXeiEn261Z8abbr1PNI1DBfJMMg2EgZ7U=; b=XtoTdKpl3u4EIFPRnt/a8U1w5ZWBntsxvSlKWjxi/TO3CHTCbewqOHNERb/p6lMWm6xm YMSo99FG1yGVSZ/nw4z6Y4IaeD0cpcIlEmBbhgq5tFVKQkWPa77U5wo+BD4OVSf50Ex3 NVuqCCbx4rZvzxRPgXUzT11mrAagN/JemUWPg49cstNpe4PCBl7KYQmG2f8unX4xDjkP vLFtyrer7Ep/l1kF96vVAwjpCiRzH9hheUnrL7WLvnWjewBJoNGxezNv3netxv58LSzi xhtikASLLTMpP+HV8vlgkYudoDcs+T4Z7znvNuhlfp6RUvjkzCVgnrkmLw/EH14/DVPg ng== Received: from g2t2353.austin.hpe.com (g2t2353.austin.hpe.com [15.233.44.26]) by mx0b-002e3701.pphosted.com with ESMTP id 3abnsca8tg-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 11 Aug 2021 06:59:12 +0000 Received: from g2t2360.austin.hpecorp.net (g2t2360.austin.hpecorp.net [16.196.225.135]) by g2t2353.austin.hpe.com (Postfix) with ESMTP id 6F85E65; Wed, 11 Aug 2021 06:59:11 +0000 (UTC) Received: from abner-virtual-machine.asiapacific.hpqcorp.net (abner-virtual-machine.asiapacific.hpqcorp.net [15.119.210.153]) by g2t2360.austin.hpecorp.net (Postfix) with ESMTP id 3C5CA39; Wed, 11 Aug 2021 06:59:10 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Nickle Wang , Liming Gao Subject: [PATCH 0/3] Use RedfishPkg libraries Date: Wed, 11 Aug 2021 14:03:27 +0800 Message-Id: <20210811060330.15392-1-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 X-Proofpoint-ORIG-GUID: e_6zTpxOR7I_kpctKyM4QQfm50NvB0FU X-Proofpoint-GUID: e_6zTpxOR7I_kpctKyM4QQfm50NvB0FU X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391,18.0.790 definitions=2021-08-11_02:2021-08-10,2021-08-11 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 mlxscore=0 mlxlogscore=391 suspectscore=0 clxscore=1015 priorityscore=1501 bulkscore=0 lowpriorityscore=0 adultscore=0 spamscore=0 phishscore=0 impostorscore=0 malwarescore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2107140000 definitions=main-2108110045 Add private header files that are used by the drivers/libraries under RedfishClientPkg for using JsonLib and RedfishCrtLib in RedfishPkg. Currently we refer to the RedfishCrtLib under RedfishPkg/PrivateLibrary, however RedfishCrtLib would be public for other packages later. Signed-off-by: Abner Chang Cc: Nickle Wang Cc: Liming Gao Abner Chang (3): RedfishClientPkg/Crt: Add CRT header files RedfishClientPkg/PrivateInclude: Private header file of JsonLib RedfishClientPkg: Add external libraries RedfishClientPkg/RedfishClientPkg.dec | 4 +- RedfishClientPkg/RedfishClientPkg.dsc | 4 ++ RedfishClientPkg/PrivateInclude/Crt/stdarg.h | 14 ++++ RedfishClientPkg/PrivateInclude/Crt/stdio.h | 14 ++++ RedfishClientPkg/PrivateInclude/Crt/stdlib.h | 15 +++++ RedfishClientPkg/PrivateInclude/Crt/string.h | 15 +++++ RedfishClientPkg/PrivateInclude/jansson.h | 71 ++++++++++++++++++++ 7 files changed, 136 insertions(+), 1 deletion(-) create mode 100644 RedfishClientPkg/PrivateInclude/Crt/stdarg.h create mode 100644 RedfishClientPkg/PrivateInclude/Crt/stdio.h create mode 100644 RedfishClientPkg/PrivateInclude/Crt/stdlib.h create mode 100644 RedfishClientPkg/PrivateInclude/Crt/string.h create mode 100644 RedfishClientPkg/PrivateInclude/jansson.h -- 2.17.1