From 77affb11129415f971b323146de0c6b407eea853 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Tue, 14 Jun 2022 23:33:57 +0200 Subject: [PATCH] step meson options --- configs/open5gs/pcrf.yaml.in | 33 ++++++++++++++++++++++++++++++++- meson_options.txt | 1 + 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 meson_options.txt diff --git a/configs/open5gs/pcrf.yaml.in b/configs/open5gs/pcrf.yaml.in index 25da8a2ef..81e90c042 100644 --- a/configs/open5gs/pcrf.yaml.in +++ b/configs/open5gs/pcrf.yaml.in @@ -1,5 +1,36 @@ db_uri: mongodb://localhost/open5gs - +db_json: + default: + af: + ambr: + up: 10000 + down: 10000 + gmbr: + up: 1000 + down: 1000 + qci: 4 + normal: + ambr: + up: 10000 + down: 10000 + gmbr: + up: 10000 + down: 10000 + qci: 5 + charging_profiles: + af: + - 1 + - 2 + - 3 + - 4 + normal: + - 1 + - 2 + - 3 + - 4 + dir: + normal: "/tmp/profiles" + af: "/tmp/profiles_af" # # logger: # diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 000000000..c4ba8a003 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1 @@ +option('mongodb', type : 'boolean', value : 'false', description : 'build with mongo db support')