mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-30 06:46:49 -04:00
milan-avb: cmd-get-as-path: add command handler stub
This commit is contained in:
parent
2f4dbe3ca7
commit
8bcdc2896c
2 changed files with 27 additions and 0 deletions
15
src/modules/module-avb/aecp-aem-cmds-resps/cmd-get-as-path.c
Normal file
15
src/modules/module-avb/aecp-aem-cmds-resps/cmd-get-as-path.c
Normal 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);
|
||||
}
|
||||
12
src/modules/module-avb/aecp-aem-cmds-resps/cmd-get-as-path.h
Normal file
12
src/modules/module-avb/aecp-aem-cmds-resps/cmd-get-as-path.h
Normal 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__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue