2022-06-17 10:59:56 -04:00
|
|
|
/*
|
2024-02-26 21:00:06 -05:00
|
|
|
* SPDX-FileCopyrightText: 2018-2024 Espressif Systems (Shanghai) CO LTD
|
2022-06-17 10:59:56 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2022-07-04 05:53:42 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2018-05-29 05:25:24 -04:00
|
|
|
|
2024-02-26 21:00:06 -05:00
|
|
|
#define AF_UNIX 1 /* local to host (pipes) */
|
2018-05-29 05:25:24 -04:00
|
|
|
|
|
|
|
struct sockaddr_un {
|
2024-02-26 21:00:06 -05:00
|
|
|
short sun_family; /*AF_UNIX*/
|
|
|
|
char sun_path[108]; /*path name */
|
2018-05-29 05:25:24 -04:00
|
|
|
};
|
|
|
|
|
2022-07-04 05:53:42 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|