zephyr/include/net/http.h
Jukka Rissanen 2486694eb9 net: http: Create HTTP library that uses net-app
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>
2017-11-06 09:33:00 -05:00

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__ */