FreeCalypso > hg > freecalypso-tools
annotate uptools/libcoding/sms_submit8.c @ 407:19e5a3e2f9c0
fcup-settime: moved time() retrieval a little closer to the output
A fundamental problem with all simple time transfer tools is that there is
always some delay between the time retrieval on the source system and that
transmitted time being set on the destination, and the resulting time
on the destination system is off by that delay amount. This delay cannot
be fully eliminated when working in a simple environment like ours,
but we should make our best effort to minimize it. In the present case,
moving the atinterf_init() call before the time() retrieval should make
a teensy-tiny improvement.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Aug 2018 21:52:17 +0000 |
parents | 759cb6dc501b |
children |
rev | line source |
---|---|
375
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 /* |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 * This library module implements the function for constructing outgoing |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 * SMS-SUBMIT PDUs, 8-bit version for raw data or UCS-2. |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 */ |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 #include <sys/types.h> |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 #include <strings.h> |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 make_sms_submit_pdu_8bit(da, pid, dcs, textsrc, textlen, udh, udhl, outbuf) |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 u_char *da, *textsrc, *udh, *outbuf; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 unsigned textlen, udhl; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 { |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 u_char *outp = outbuf; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 unsigned addr_field_len; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 unsigned udh_octets; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 unsigned udl; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 if (udh) |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 *outp++ = 0x41; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 else |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 *outp++ = 0x01; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 *outp++ = 0; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 addr_field_len = ((da[0] + 1) >> 1) + 2; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
24 bcopy(da, outp, addr_field_len); |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
25 outp += addr_field_len; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 *outp++ = pid; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
27 *outp++ = dcs; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
28 if (udh) |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
29 udh_octets = udhl + 1; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
30 else |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
31 udh_octets = 0; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
32 udl = udh_octets + textlen; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
33 *outp++ = udl; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
34 if (udh) { |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
35 *outp++ = udhl; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
36 bcopy(udh, outp, udhl); |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
37 outp += udhl; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
38 } |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
39 bcopy(textsrc, outp, textlen); |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
40 outp += textlen; |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
41 return (outp - outbuf); |
759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
42 } |