From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6D0F1C43613 for ; Sat, 15 Dec 2018 00:01:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A7EAA20896 for ; Sat, 15 Dec 2018 00:01:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729974AbeLOABw (ORCPT ); Fri, 14 Dec 2018 19:01:52 -0500 Received: from mga17.intel.com ([192.55.52.151]:20302 "EHLO mga17.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729731AbeLOABd (ORCPT ); Fri, 14 Dec 2018 19:01:33 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Dec 2018 16:01:33 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,354,1539673200"; d="scan'208";a="98882786" Received: from bgix-dell-lap.sea.intel.com ([10.251.138.67]) by orsmga007.jf.intel.com with ESMTP; 14 Dec 2018 16:01:32 -0800 From: Brian Gix To: linux-bluetooth@vger.kernel.org Cc: johan.hedberg@gmail.com, inga.stotland@intel.com, marcel@holtmann.org, brian.gix@intel.com Subject: [PATCH BlueZ v2 04/30] mesh: Internal errors Date: Fri, 14 Dec 2018 16:01:02 -0800 Message-Id: <20181215000128.928-5-brian.gix@intel.com> X-Mailer: git-send-email 2.14.5 In-Reply-To: <20181215000128.928-1-brian.gix@intel.com> References: <20181215000128.928-1-brian.gix@intel.com> Sender: linux-bluetooth-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org From: Inga Stotland --- mesh/error.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 mesh/error.h diff --git a/mesh/error.h b/mesh/error.h new file mode 100644 index 000000000..e7bac445b --- /dev/null +++ b/mesh/error.h @@ -0,0 +1,35 @@ +/* + * + * BlueZ - Bluetooth protocol stack for Linux + * + * Copyright (C) 2018 Intel Corporation. All rights reserved. + * + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * + */ + +/* + * Important: Changes in this table must be reflected in the + * the entries of error_table[] in dbus.c + */ +typedef enum { + MESH_ERROR_NONE, + MESH_ERROR_FAILED, + MESH_ERROR_NOT_AUTHORIZED, + MESH_ERROR_NOT_FOUND, + MESH_ERROR_INVALID_ARGS, + MESH_ERROR_BUSY, + MESH_ERROR_ALREADY_EXISTS, + MESH_ERROR_DOES_NOT_EXIST, + MESH_ERROR_CANCELED, +} mesh_error_t; -- 2.14.5