Changed the name of the rimeaddr module to linkaddr

This commit is contained in:
Adam Dunkels 2013-12-12 23:58:52 +01:00
parent 765e9acded
commit 45265249fc
180 changed files with 930 additions and 930 deletions

View file

@ -70,7 +70,7 @@ struct unicast_conn;
BROADCAST_ATTRIBUTES
struct unicast_callbacks {
void (* recv)(struct unicast_conn *c, const rimeaddr_t *from);
void (* recv)(struct unicast_conn *c, const linkaddr_t *from);
void (* sent)(struct unicast_conn *ptr, int status, int num_tx);
};
@ -83,7 +83,7 @@ void unicast_open(struct unicast_conn *c, uint16_t channel,
const struct unicast_callbacks *u);
void unicast_close(struct unicast_conn *c);
int unicast_send(struct unicast_conn *c, const rimeaddr_t *receiver);
int unicast_send(struct unicast_conn *c, const linkaddr_t *receiver);
#endif /* UNICAST_H_ */
/** @} */