42 lines
913 B
C
42 lines
913 B
C
#ifndef _DATA_H_
|
|
#define _DATA_H_
|
|
|
|
#define TERMREQ_FBK 0x01
|
|
#define TERMREQ_CAP 0x02
|
|
#define TERMREQ_SPD 0x04
|
|
#define TERMREQ_ALT 0x08
|
|
|
|
#define PLANE_LEN ( sizeof(char)*6+sizeof(int)*5 )
|
|
struct plane{
|
|
char code[6];
|
|
int x;
|
|
int y;
|
|
int z;
|
|
int cap;
|
|
int spd;
|
|
};
|
|
|
|
struct term_req{
|
|
char flags;
|
|
struct plane udpate;
|
|
};
|
|
|
|
struct term_res{
|
|
char flags;
|
|
char n;
|
|
struct plane* data;
|
|
};
|
|
|
|
|
|
#define BINDHDR_LEN ( sizeof(char)*16+sizeof(unsigned short) )
|
|
#define BINDHEAD_CTL 0x01 // is command terminal (else: view terminal)
|
|
#define BINDHEAD_SCK 0x02 // ask for com socket
|
|
#define BINDHEAD_TCP 0x04 // ask TCP instead of UDP
|
|
|
|
struct bind_header{
|
|
char flags;
|
|
char addr[15];
|
|
unsigned short port;
|
|
};
|
|
|
|
#endif |