milan-avb: cmd-get-as-path: add command handler stub

This commit is contained in:
hackerman-kl 2026-04-25 11:22:22 +02:00 committed by Wim Taymans
parent 2f4dbe3ca7
commit 8bcdc2896c
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,15 @@
/* SPDX-FileCopyrightText: Copyright © 2025 Alexandre Malki */
/* SPDX-License-Identifier: MIT */
#include "../aecp.h"
#include "../aecp-aem.h"
#include "cmd-get-as-path.h"
#include "cmd-resp-helpers.h"
int handle_cmd_get_as_path_milan_v12(struct aecp *aecp, int64_t now,
const void *m, int len)
{
pw_log_warn("%s: not yet implemented", __func__);
return reply_not_implemented(aecp, m, len);
}

View file

@ -0,0 +1,12 @@
/* SPDX-FileCopyrightText: Copyright © 2025 Alexandre Malki */
/* SPDX-License-Identifier: MIT */
#ifndef __AVB_AECP_AEM_CMD_GET_AS_PATH_H__
#define __AVB_AECP_AEM_CMD_GET_AS_PATH_H__
#include "../aecp-aem.h"
int handle_cmd_get_as_path_milan_v12(struct aecp *aecp, int64_t now,
const void *m, int len);
#endif /* __AVB_AECP_AEM_CMD_GET_AS_PATH_H__ */