Lines Matching +full:0 +full:- +full:127
10 https://www.3gpp.org/ftp/Specs/archive/07_series/07.10/0710-720.zip
19 ----------------
32 #. Configure DLCs using ``GSMIOC_GETCONF_DLCI``/``GSMIOC_SETCONF_DLCI`` ioctl for non-defaults.
37 (a good starting point is util-linux-ng/sys-utils/ldattach.c)::
61 write(fd, "AT+CMUX=0\r", 10);
73 /* use keep-alive once every 5s for modem connection supervision */
79 /* we are initiator and need encoding 0 (basic) */
81 c.encapsulation = 0;
82 /* our modem defaults to a maximum size of 127 bytes */
83 c.mru = 127;
84 c.mtu = 127;
99 daemon(0,0);
106 - to use *gnokii* to send / receive SMS on ``ttygsm1``
107 - to use *ppp* to establish a datalink on ``ttygsm2``
112 mode. This may prevent a successful re-opening of the port later. To avoid
117 0xf9, 0x03, 0xef, 0x03, 0xc3, 0x16, 0xf9
120 ----------------
133 #. Configure DLCs using ``GSMIOC_GETCONF_DLCI``/``GSMIOC_SETCONF_DLCI`` ioctl for non-defaults.
163 /* use keep-alive once every 5s for peer connection supervision */
169 /* we are requester and need encoding 0 (basic) */
170 c.initiator = 0;
171 c.encapsulation = 0;
172 /* our modem defaults to a maximum size of 127 bytes */
173 c.mru = 127;
174 c.mtu = 127;
189 daemon(0,0);
192 11-03-08 - Eric Bénard - <eric@eukrea.com>