Newer
Older
mbed-os / connectivity / nanostack / sal-stack-nanostack / source / Security / kmp / kmp_eapol_pdu_if.h
/*
 * Copyright (c) 2016-2019, Pelion and affiliates.
 * SPDX-License-Identifier: Apache-2.0
 *
 * 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 KMP_EAPOL_PDU_IF_H_
#define KMP_EAPOL_PDU_IF_H_

/*
 * Supplicant KMP interface to/from EAPOL PDU interface (to MPX).
 */

/**
 * kmp_eapol_pdu_if_register register EAPOL PDU interface to KMP service
 *
 * \param service KMP service to register to
 * \param interface_ptr interface
 *
 * \return < 0 failure
 * \return >= 0 success
 *
 */
int8_t kmp_eapol_pdu_if_register(kmp_service_t *service, protocol_interface_info_entry_t *interface_ptr);

/**
 * kmp_eapol_pdu_if_unregister unregister EAPOL PDU interface from KMP service
 *
 * \param service KMP service to unregister from
 *
 * \return < 0 failure
 * \return >= 0 success
 *
 */
int8_t kmp_eapol_pdu_if_unregister(kmp_service_t *service);

/**
 * kmp_eapol_pdu_if_receive receive EAPOL PDU to KMP service
 *
 * \param interface_ptr interface
 * \param eui_64 source EUI-64
 * \param pdu EAPOL pdu
 * \param size EAPOL pdu size
 *
 * \return < 0 failure
 * \return >= 0 success
 *
 */
int8_t kmp_eapol_pdu_if_receive(protocol_interface_info_entry_t *interface_ptr, const uint8_t *eui_64, void *pdu, uint16_t size);

#endif /* KMP_EAPOL_PDU_IF_H_ */