summary refs log tree commit diff stats
path: root/data/maps/the_great/rooms/Hive Entrance.txtpb
blob: e0781c5399380bf50f5fa24b75a211c6dfb8ff6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: "Hive Entrance"
display_name: "West Side"
panels {
  name: "LOST"
  path: "Panels/Hive Room/hive_1"
  clue: "lost"
  answer: "found"
  symbols: "sun"
}
ports {
  name: "HIVE"
  path: "Meshes/Blocks/Warps/worldport19"
  orientation: "east"
}
ariable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/* Copyright 2021 The libwifi Authors
 *
 * 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.
 */

#ifndef LIBWIFI_PARSE_BEACON_H
#define LIBWIFI_PARSE_BEACON_H

#include <stdint.h>
#include <sys/types.h>

#include "../../core/frame/frame.h"
#include "../../core/frame/management/common.h"
#include "../../core/misc/security.h"

/**
 * Parse useful properties from a beacon frame into a libwifi_bss.
 *
 * @param bss A libwifi_bss
 * @param frame A libwifi_frame
 * @return 0 if successful, a negative number if not.
 */
int libwifi_parse_beacon(struct libwifi_bss *bss, struct libwifi_frame *frame);

#endif /* LIBWIFI_PARSE_BEACON_H */