summaryrefslogtreecommitdiffstats
path: root/gatchat/gathdlc.c
diff options
context:
space:
mode:
authorGuillaume Zajac <guillaume.zajac@linux.intel.com>2011-05-04 17:38:59 +0200
committerDenis Kenzior <denkenz@gmail.com>2011-05-08 22:58:41 -0500
commit8a56acd549ef29c51bf38d5741c3c64e41a58774 (patch)
tree888dcfe48f2bc43a70d8ef6df639e9e40f4c560a /gatchat/gathdlc.c
parent6d426a19a6e91444aafa9302e72e4d8f1510509d (diff)
downloadofono-8a56acd549ef29c51bf38d5741c3c64e41a58774.tar.bz2
gathdlc: Add public suspend function
Diffstat (limited to 'gatchat/gathdlc.c')
-rw-r--r--gatchat/gathdlc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gatchat/gathdlc.c b/gatchat/gathdlc.c
index e3ab7ec9..6b1f3432 100644
--- a/gatchat/gathdlc.c
+++ b/gatchat/gathdlc.c
@@ -610,3 +610,12 @@ void g_at_hdlc_set_no_carrier_detect(GAtHDLC *hdlc, gboolean detect)
hdlc->no_carrier_detect = detect;
}
+
+void g_at_hdlc_suspend(GAtHDLC *hdlc)
+{
+ if (hdlc == NULL)
+ return;
+
+ g_at_io_set_write_handler(hdlc->io, NULL, NULL);
+ g_at_io_set_read_handler(hdlc->io, NULL, NULL);
+}