Create http library that uses net-app instead of net_context directly. The old HTTP API is deprecated. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
17 lines
251 B
C
17 lines
251 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __HTTP_H__
|
|
#define __HTTP_H__
|
|
|
|
#if defined(CONFIG_HTTP_APP)
|
|
#include <net/http_app.h>
|
|
#else
|
|
#include <net/http_legacy.h>
|
|
#endif
|
|
|
|
#endif /* __HTTP_H__ */
|