Removed const qualifier to conform with the rest of the Rime interface.
This commit is contained in:
parent
84105f4e47
commit
942ba1f7bd
@ -149,7 +149,7 @@ multihop_send(struct multihop_conn *c, const rimeaddr_t *to)
|
|||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
multihop_resend(const struct multihop_conn *const c, const rimeaddr_t *const nexthop)
|
multihop_resend(struct multihop_conn *c, const rimeaddr_t *nexthop)
|
||||||
{
|
{
|
||||||
unicast_send(&c->c, nexthop);
|
unicast_send(&c->c, nexthop);
|
||||||
}
|
}
|
||||||
|
@ -104,7 +104,7 @@ void multihop_open(struct multihop_conn *c, uint16_t channel,
|
|||||||
const struct multihop_callbacks *u);
|
const struct multihop_callbacks *u);
|
||||||
void multihop_close(struct multihop_conn *c);
|
void multihop_close(struct multihop_conn *c);
|
||||||
int multihop_send(struct multihop_conn *c, const rimeaddr_t *to);
|
int multihop_send(struct multihop_conn *c, const rimeaddr_t *to);
|
||||||
void multihop_resend(const struct multihop_conn *const c, const rimeaddr_t *const nexthop);
|
void multihop_resend(struct multihop_conn *c, const rimeaddr_t *nexthop);
|
||||||
|
|
||||||
#endif /* __MULTIHOP_H__ */
|
#endif /* __MULTIHOP_H__ */
|
||||||
/** @} */
|
/** @} */
|
||||||
|
Loading…
Reference in New Issue
Block a user