-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKconfig
43 lines (38 loc) · 1.03 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Copyright (c) 2021 SAKURA internet Inc.
#
# SPDX-License-Identifier: MIT
#
menuconfig SIPF
bool "SIPF client library"
default n
#SIPF AUTH Protocol
config SIPF_AUTH_HOST
string "SIPF AUTH host name."
default "auth.sipf.iot.sakura.ad.jp"
config SIPF_AUTH_PATH
string "SIPF AUTH endpoint."
default "/v0/session_key"
config SIPF_AUTH_DISABLE_SSL
bool "Disable SSL for SIPF AUTH endpoint."
default n
#SIPF OBJECT Protocol
config SIPF_CONNECTOR_HTTP_HOST
string "SIPF CONNECTOR HTTP host name."
default "connector.sipf.iot.sakura.ad.jp"
config SIPF_CONNECTOR_PATH
string "SIPF CONNECTOR HTTP endpoint."
default "/v0"
config SIPF_CONNECTOR_DISABLE_SSL
bool "Disable SSL for SIPF CONNECTOR HTTP endpoint."
default n
#SIPF FILE Protocol
config SIPF_FILE_REQ_URL_HOST
string "Host name of SIPF FILE: Request URL."
default "file.sipf.iot.sakura.ad.jp"
config SIPF_FILE_REQ_URL_PATH
string "Endpoint of SIPF FILE: Request URL."
default "/v1/files/%s/"
module = SIPF
module-str = SIPF
source "subsys/logging/Kconfig.template.log_config"