about summary refs log tree commit diff stats
path: root/data/maps/the_orb/metadata.txtpb
blob: 0b25353aa3face89e0f81515e4758f0ba6ef6d96 (plain) (blame)
1
2
3
4
5
display_name: "The Orb"
# These are inaccessible, and were probably just copy pasted from the other
# rooms.
excluded_nodes: "Components/Warps/worldport2"
excluded_nodes: "Components/Warps/worldport3"
021 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_ASSOCREQ_H #define LIBWIFI_PARSE_ASSOCREQ_H #include "../../core/frame/frame.h" #include "../../core/frame/management/assoc_request.h" #include "../../core/frame/management/common.h" /** * Parse a association request into a libwifi_sta. * * @param sta A libwifi_sta * @param frame A libwifi_frame * @return 0 if successful, a negative number if not */ int libwifi_parse_assoc_req(struct libwifi_sta *sta, struct libwifi_frame *frame); #endif /* LIBWIFI_PARSE_ASSOCREQ_H */