TSCH: fix indentation in tsch-packet.c

This commit is contained in:
Yasuyuki Tanaka 2016-12-15 17:06:48 +01:00
parent 38ff8e5283
commit da853386a6
2 changed files with 15 additions and 15 deletions

View file

@ -129,7 +129,7 @@ int tsch_security_mic_len(const frame802154_t *frame);
* \return The length of a generated MIC (>= 0)
*/
int tsch_security_secure_frame(uint8_t *hdr, uint8_t *outbuf,
int hdrlen, int datalen, struct asn_t *asn);
int hdrlen, int datalen, struct asn_t *asn);
/**
* \brief Parse and check a frame protected with encryption and/or MIC
@ -137,6 +137,7 @@ int tsch_security_secure_frame(uint8_t *hdr, uint8_t *outbuf,
* \retval 1 On success or no need for security check (good frame)
*/
int tsch_security_parse_frame(const uint8_t *hdr, int hdrlen, int datalen,
const frame802154_t *frame, const linkaddr_t *sender, struct asn_t *asn);
const frame802154_t *frame,
const linkaddr_t *sender, struct asn_t *asn);
#endif /* __TSCH_SECURITY_H__ */