aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-method.h
diff options
context:
space:
mode:
authorjobol <jobol@nonadev.net>2016-03-22 16:35:13 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2016-03-23 13:14:09 +0100
commit2a3fbda636c93c9f22a064e5c5f537c2232d626d (patch)
tree54a30d74208ec59b6b62c18eeabec04e792471ac /src/afb-method.h
parent7aae8b046213dc7041e741b5e8b2757255701183 (diff)
afb-method: creation
also changed the licensing Change-Id: Ib50a6991b066a00363f36688dd485c7772014088 Signed-off-by: jobol <jobol@nonadev.net>
Diffstat (limited to 'src/afb-method.h')
-rw-r--r--src/afb-method.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/afb-method.h b/src/afb-method.h
new file mode 100644
index 00000000..fde9dbfc
--- /dev/null
+++ b/src/afb-method.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2016 IoT.bzh
+ * Author: José Bollo <jose.bollo@iot.bzh>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+enum afb_method {
+ afb_method_none = 0,
+ afb_method_get = 1,
+ afb_method_post = 2,
+ afb_method_head = 4,
+ afb_method_connect = 8,
+ afb_method_delete = 16,
+ afb_method_options = 32,
+ afb_method_patch = 64,
+ afb_method_put = 128,
+ afb_method_trace = 256,
+ afb_method_all = 511
+};
+
+extern enum afb_method get_method(const char *method);
+extern const char *get_method_name(enum afb_method method);
+