- reduced binary size with AES constants, there was twice included (thanks to lpm11...
[oscam.git] / module-gbox-remm.h
blobab5ea401e1ad8b12301649d5295eb02e72510156
1 #ifndef MODULE_GBOX_REMM_H_
2 #define MODULE_GBOX_REMM_H_
4 #ifdef MODULE_GBOX
6 #define MSG_REM_EMM 0x49BF
8 #define MSGID_REMM_REQ 1
9 #define MSGID_REMM_DATA 2
10 #define MSGID_REMM_ACK 3
12 #define PEER_AU_BLOCKED 1
13 #define PEER_AU_READY 2
14 #define PEER_AU_UNREADY 3
16 void gbox_send_remm_req(struct s_client *cli, ECM_REQUEST *er);
17 void gbox_recvd_remm_cmd_switch(struct s_client *cli, uint8_t *buf, int32_t n);
18 int32_t gbox_send_remm_data(EMM_PACKET *ep);
19 uint8_t check_valid_remm_peer(uint16_t peer_id);
21 #endif
23 #endif