From 378f3c61e3540c737cd0d45c5c946ddcf40c471a Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 28 Apr 2010 17:15:07 -0500 Subject: gathdlc: Add accessor for GAtIO --- gatchat/gathdlc.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gatchat/gathdlc.c') diff --git a/gatchat/gathdlc.c b/gatchat/gathdlc.c index a5e8ed41..48426674 100644 --- a/gatchat/gathdlc.c +++ b/gatchat/gathdlc.c @@ -313,6 +313,14 @@ guint32 g_at_hdlc_get_xmit_accm(GAtHDLC *hdlc) return hdlc->xmit_accm[0]; } +GAtIO *g_at_hdlc_get_io(GAtHDLC *hdlc) +{ + if (hdlc == NULL) + return NULL; + + return hdlc->io; +} + #define NEED_ESCAPE(xmit_accm, c) xmit_accm[c >> 5] & (1 << (c & 0x1f)) gboolean g_at_hdlc_send(GAtHDLC *hdlc, const unsigned char *data, gsize size) -- cgit v1.2.3