Also, defines one LOG_MODULE_NAME for the simplelink WiFi driver, and uses the same name for all files in this driver (module). Signed-off-by: Gil Pitney <gil.pitney@linaro.org>
22 lines
472 B
C
22 lines
472 B
C
/*
|
|
* Copyright (c) 2018 Linaro Limited.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#define LOG_MODULE_NAME net_socket_offload
|
|
#define NET_LOG_LEVEL CONFIG_NET_SOCKETS_LOG_LEVEL
|
|
|
|
#include <net/socket_offload.h>
|
|
|
|
/* Only one provider may register socket operations upon boot. */
|
|
const struct socket_offload *socket_ops;
|
|
|
|
void socket_offload_register(const struct socket_offload *ops)
|
|
{
|
|
__ASSERT_NO_MSG(ops);
|
|
__ASSERT_NO_MSG(socket_ops == NULL);
|
|
|
|
socket_ops = ops;
|
|
}
|