You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
341 B
C
15 lines
341 B
C
#ifndef __SNTLL_INTERNAL_H__
|
|
#define __SNTLL_INTERNAL_H__
|
|
|
|
/* link related */
|
|
int _sntll_writemsg(conn_t *co, sxmsg_t *msg);
|
|
|
|
/* channel operations */
|
|
uint8_t _channel_open(conn_t *co, uint16_t *chid);
|
|
uint8_t _channel_close(conn_t *co, uint16_t chid);
|
|
|
|
/* messages */
|
|
void _message_process(sxmsg_t *msg);
|
|
|
|
#endif /* __SNTLL_INTERNAL_H__ */
|