소스 검색

gluon-mesh-vpn-fastd: respondd: adjust for new site.conf mesh VPN structure

Fixes #1130
Matthias Schiffer 7 년 전
부모
커밋
9dae2ebbfd
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 7 3
      package/gluon-mesh-vpn-fastd/src/respondd.c

+ 7 - 3
package/gluon-mesh-vpn-fastd/src/respondd.c

@@ -276,11 +276,15 @@ static struct json_object * get_mesh_vpn(void) {
 	if (!site)
 		goto end;
 
-	struct json_object *fastd_mesh_vpn;
-	if (!json_object_object_get_ex(site, "fastd_mesh_vpn", &fastd_mesh_vpn))
+	struct json_object *mesh_vpn;
+	if (!json_object_object_get_ex(site, "mesh_vpn", &mesh_vpn))
 		goto end;
 
-	ret = get_peer_group(fastd_mesh_vpn, peers);
+	struct json_object *mesh_vpn_fastd;
+	if (!json_object_object_get_ex(mesh_vpn, "fastd", &mesh_vpn_fastd))
+		goto end;
+
+	ret = get_peer_group(mesh_vpn_fastd, peers);
 
  end:
 	json_object_put(site);