X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fafb-method.h;fp=src%2Fafb-method.h;h=fde9dbfc0844b3ceaa5076bd324e68780920c936;hb=2a3fbda636c93c9f22a064e5c5f537c2232d626d;hp=0000000000000000000000000000000000000000;hpb=7aae8b046213dc7041e741b5e8b2757255701183;p=src%2Fapp-framework-binder.git 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 + * + * 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); +