summaryrefslogtreecommitdiffstats
path: root/gatchat/gsm0710.h
blob: a0605d19d0d10e8fb0ecfd9a97e924e1c108a504 (plain)
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
/*
 *
 *  AT chat library with GLib integration
 *
 *  Copyright (C) 2009  Intel Corporation. All rights reserved.
 *  Copyright (C) 2009  Trolltech ASA.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  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 St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef GSM0710_P_H
#define GSM0710_P_H

#ifdef __cplusplus
extern "C" {
#endif

#define GSM0710_BUFFER_SIZE		4096
#define GSM0710_DEFAULT_FRAME_SIZE	31
#define GSM0710_MAX_CHANNELS		63

/* Multiplexer modes */
#define GSM0710_MODE_BASIC		0
#define GSM0710_MODE_ADVANCED		1

/* Status flags */
#define GSM0710_FC			0x02
#define GSM0710_DTR			0x04
#define GSM0710_DSR			0x04
#define GSM0710_RTS			0x08
#define GSM0710_CTS			0x08
#define GSM0710_DCD			0x80

struct gsm0710_context
{
	/* GSM 07.10 implementation details */
	int mode;
	int frame_size;
	int port_speed;
	unsigned char buffer[GSM0710_BUFFER_SIZE];
	int buffer_used;
	unsigned long used_channels[(GSM0710_MAX_CHANNELS + 31) / 32];

	/* Hooks to other levels */
	void *user_data;
	int (*read)(struct gsm0710_context *ctx, void *data, int len);
	int (*write)(struct gsm0710_context *ctx, const void *data, int len);
	void (*deliver_data)(struct gsm0710_context *ctx, int channel,
						const void *data, int len);
	void (*deliver_status)(struct gsm0710_context *ctx,
						int channel, int status);
	void (*debug_message)(struct gsm0710_context *ctx, const char *msg);
	int (*packet_filter)(struct gsm0710_context *ctx, int channel,
				int type, const unsigned char *data, int len);
};

void gsm0710_initialize(struct gsm0710_context *ctx);
int gsm0710_startup(struct gsm0710_context *ctx);
void gsm0710_shutdown(struct gsm0710_context *ctx);
int gsm0710_open_channel(struct gsm0710_context *ctx, int channel);
void gsm0710_close_channel(struct gsm0710_context *ctx, int channel);
int gsm0710_is_channel_open(struct gsm0710_context *ctx, int channel);
void gsm0710_ready_read(struct gsm0710_context *ctx);
void gsm0710_write_data(struct gsm0710_context *ctx, int channel,
						const void *data, int len);
void gsm0710_set_status(struct gsm0710_context *ctx, int channel, int status);

#ifdef __cplusplus
};
#endif

#endif