A simple application that allows you to use net-shell to configure network packet capturing. The captured packets are sent to external systems for processing. This can be used for debugging network protocols. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
16 lines
259 B
C
16 lines
259 B
C
/*
|
|
* Copyright (c) 2021 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <logging/log.h>
|
|
LOG_MODULE_REGISTER(net_capture_sample, LOG_LEVEL_DBG);
|
|
|
|
#include <zephyr.h>
|
|
|
|
void main(void)
|
|
{
|
|
LOG_INF("Starting network capture sample");
|
|
}
|