error.h 581 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: LGPL-2.1-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2018-2019 Intel Corporation. All rights reserved.
  7. *
  8. *
  9. */
  10. /*
  11. * Important: Changes in this table must be reflected in the
  12. * the entries of error_table[] in dbus.c
  13. */
  14. enum mesh_error {
  15. MESH_ERROR_NONE,
  16. MESH_ERROR_FAILED,
  17. MESH_ERROR_NOT_AUTHORIZED,
  18. MESH_ERROR_NOT_FOUND,
  19. MESH_ERROR_INVALID_ARGS,
  20. MESH_ERROR_IN_PROGRESS,
  21. MESH_ERROR_BUSY,
  22. MESH_ERROR_ALREADY_EXISTS,
  23. MESH_ERROR_DOES_NOT_EXIST,
  24. MESH_ERROR_CANCELED,
  25. MESH_ERROR_NOT_IMPLEMENTED,
  26. };