mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-28 06:46:42 -04:00
Use some constants for the zeroconf properties. Make the right ones are used in all places.
27 lines
581 B
C
27 lines
581 B
C
/* PipeWire */
|
|
/* SPDX-FileCopyrightText: Copyright © 2026 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef PIPEWIRE_SENDSPIN_H
|
|
#define PIPEWIRE_SENDSPIN_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <pipewire/pipewire.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define PW_SENDSPIN_SERVER_SERVICE_TYPE "_sendspin-server._tcp"
|
|
#define PW_SENDSPIN_CLIENT_SERVICE_TYPE "_sendspin._tcp"
|
|
|
|
#define PW_SENDSPIN_DEFAULT_SERVER_PORT 8927
|
|
#define PW_SENDSPIN_DEFAULT_CLIENT_PORT 8928
|
|
#define PW_SENDSPIN_DEFAULT_PATH "/sendspin"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PIPEWIRE_SENDSPIN_H */
|