un.h 433 B

123456789101112131415161718192021
  1. /*
  2. * SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #define AF_UNIX 1 /* local to host (pipes) */
  11. struct sockaddr_un {
  12. short sun_family; /*AF_UNIX*/
  13. char sun_path[108]; /*path name */
  14. };
  15. #ifdef __cplusplus
  16. }
  17. #endif