File: irtrans_network.h

package info (click to toggle)
lcdproc 0.5.9-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,064 kB
  • sloc: ansic: 59,645; sh: 1,740; perl: 681; makefile: 417
file content (314 lines) | stat: -rw-r--r-- 7,058 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/*
 * irtrans driver
 *
 * Displays LCD screens, one after another; suitable for hard-copy
 * terminals.
 *
 * Copyright (C) 1998-2007 <info@irtrans.de>
 *
 * Copyright (C) 2007 Phant0m <phantom@netkeke.com>
 * porting the LCDproc 0.4.3 code to LCDproc 0.5.1
 *
 * Inspired by:
 *  TextMode driver (LCDproc authors)
 *  irtrans driver (Irtrans)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
 */

#define IRTRANS_PROTOCOL_VERSION	208

#define COMMAND_SEND		1
#define COMMAND_LRNREM		2
#define COMMAND_LRNTIM		3
#define COMMAND_LRNCOM		4
#define COMMAND_CLOSE		5
#define COMMAND_STATUS		6
#define COMMAND_RESEND		7
#define COMMAND_LRNRAW		8
#define COMMAND_LRNRPT		9
#define COMMAND_LRNTOG		10
#define COMMAND_SETSTAT		11
#define COMMAND_LRNLONG		12
#define COMMAND_LRNRAWRPT	13
#define COMMAND_RELOAD		14
#define COMMAND_LCD		15
#define COMMAND_LEARNSTAT	16
#define COMMAND_TEMP		17
#define COMMAND_GETREMOTES	18
#define COMMAND_GETCOMMANDS	19
#define COMMAND_STORETRANS	20
#define COMMAND_LOADTRANS	21
#define COMMAND_SAVETRANS	22
#define COMMAND_FLASHTRANS	23
#define	COMMAND_FUNCTIONS	24
#define	COMMAND_TESTCOM		25
#define	COMMAND_LONGSEND	26
#define	COMMAND_SHUTDOWN	27
#define COMMAND_SENDCCF		28
#define COMMAND_LCDINIT		29
#define COMMAND_SETSWITCH	30
#define COMMAND_STATUSEX	31
#define COMMAND_RESET		32
#define	STATUS_MESSAGE		1
#define	STATUS_TIMING		2
#define	STATUS_DEVICEMODE	3
#define	STATUS_RECEIVE		4
#define STATUS_LEARN		5
#define STATUS_REMOTELIST	6
#define STATUS_COMMANDLIST	7
#define STATUS_TRANSLATE	8
#define STATUS_FUNCTION		9
#define	STATUS_DEVICEMODEEX	10

#pragma pack(1)
typedef struct {
    uint8_t mode;
    uint8_t time_cnt;
    uint8_t ir_repeat;
    uint8_t repeat_pause;
    uint16_t pause_len[TIME_LEN];
    uint16_t pulse_len[TIME_LEN];
    uint8_t data[CODE_LEN];
} TIMINGDATA;

typedef struct {
    uint8_t netcommand;
    uint8_t mode;
    uint16_t timeout;
    int32_t adress;
    int8_t remote[80];
    int8_t command[20];
    uint8_t trasmit_freq;
} OLD_NETWORKCOMMAND;

typedef struct {
    uint8_t netcommand;
    uint8_t mode;
    uint8_t lcdcommand;
    uint8_t timeout;
    int32_t adress;
    uint8_t wid;
    uint8_t hgt;
    int8_t framebuffer[200];
} OLD_LCDCOMMAND;

typedef struct {
    uint8_t netcommand;
    uint8_t mode;
    uint16_t timeout;
    int32_t adress;
    int32_t protocol_version;
    int8_t remote[80];
    int8_t command[20];
    uint8_t trasmit_freq;
} NETWORKCOMMAND;

typedef struct {
    uint8_t netcommand;
    uint8_t mode;
    uint16_t timeout;
    int32_t adress;
    int32_t protocol_version;
    uint16_t sendmask[32];
    uint16_t pronto_data[256];
} CCFCOMMAND;

typedef struct {
    uint8_t netcommand;
    uint8_t mode;
    uint8_t lcdcommand;
    uint8_t timeout;
    int32_t adress;
    int32_t protocol_version;
    uint8_t wid;
    uint8_t hgt;
    int8_t framebuffer[200];
} LCDCOMMAND;

typedef struct {
    uint8_t netcommand;
    uint8_t mode;
    uint16_t timeout;
    int32_t adress;
    int32_t protocol_version;
    int32_t number;
    uint8_t setup;
    uint8_t type;
    uint8_t accelerator_timeout;
    uint8_t accelerator_repeat;
    uint16_t wait_timeout;
    uint8_t remote_num;
    uint8_t group_num;
    int8_t remote[80];
    int8_t command[20];
    int32_t source_mask;
    int32_t target_mask;
} TRANSLATECOMMAND;

typedef struct {
    int32_t send_mask;
    uint8_t device_mode;
    uint8_t extended_mode;
    uint16_t switch_mode;
    uint16_t features;
    int8_t version[10];
    int8_t remote[80];
    int8_t command[20];
} MODELINE;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t adress;
    uint8_t align[2];
    int8_t data[16384];
} STATUSBUFFER;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int32_t serno;
    int32_t functions;
} FUNCTIONBUFFER;

typedef struct {
    int32_t target_mask;
    int32_t source_mask;
    int8_t name[80];
} REMOTELINE;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t offset;
    int16_t count_buffer;
    int16_t count_total;
    int16_t count_remaining;
    REMOTELINE remotes[40];
} REMOTEBUFFER;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t offset;
    int16_t count_buffer;
    int16_t count_total;
    int16_t count_remaining;
    int8_t commands[200][20];
} COMMANDBUFFER;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t offset;
    int16_t count_buffer;
    int16_t count_total;
    int16_t count_remaining;
    TRANSLATECOMMAND trdata[30];
} TRANSLATEBUFFER;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t adress;
    uint8_t align[2];
    MODELINE stat[16];
} NETWORKMODE;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t adress;
    uint8_t align;
    uint8_t count;
    uint8_t dev_adr[8];
    MODELINE stat[8][16];
} NETWORKMODEEX;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t adress;
    uint16_t netstatus;
    uint16_t statuslevel;
    uint8_t align[2];
    int8_t message[256];
} NETWORKSTATUS;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t adress;
    uint8_t align[2];
    TIMINGDATA timing;
} NETWORKTIMING;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t adress;
    uint16_t command_num;
    int8_t remote[80];
    int8_t command[20];
    int8_t data[200];
} NETWORKRECV;

typedef struct {
    uint32_t clientid;
    int16_t statuslen;
    int16_t statustype;
    int16_t adress;
    int16_t learnok;
    int8_t remote[80];
    int16_t num_timings;
    int16_t num_commands;
    int8_t received[CODE_LEN];
} NETWORKLEARNSTAT;

typedef struct {
    SOCKET fd;
    int32_t type;
    uint32_t clientid;
    uint32_t callno;
    int8_t ip[20];
    WSAEVENT event;
    FILE *fp;
    int32_t timing;
    uint8_t resend_load;
    IRDATA ird;
    NETWORKLEARNSTAT learnstatus;
    int8_t restdata[sizeof(LCDCOMMAND)];
    int32_t restlen;
    int32_t restread;
}
NETWORKCLIENT;

#define TCP_PORT	21000
#define LIRC_PORT	8765
#define UDP_PORT	6510
#define WEB_PORT	80
#define ALTERNATE_WEB	8080
#define CLIENT_COUNT	64