Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-07-14 | Fix stupid false positive warnings about uninitialized variables | Marcel Holtmann | 1 | -9/+14 | |
The GCC check for uninitialized variables is so useful that dealing with the false positives is just a minor inconvenience. The following GCC trick helps to silence them: #define uninitialized_var(x) x = x This way no code obfuscation is needed to compile smoothly and the code stays readable. And the author has to actually think about it. | |||||
2009-07-13 | Fix signedness warnings | Denis Kenzior | 1 | -3/+4 | |
2009-07-13 | Fix unused variables | Denis Kenzior | 1 | -2/+0 | |
2009-07-02 | Add Cell Broadcast assembly utilities | Denis Kenzior | 1 | -0/+259 | |
2009-07-02 | Fix memory leak | Denis Kenzior | 1 | -0/+1 | |
2009-07-02 | Don't hardcode | Denis Kenzior | 1 | -4/+6 | |
2009-07-02 | Add CBS Text converter utility | Denis Kenzior | 1 | -0/+149 | |
2009-07-02 | Add cbs lang to ISO 639 conversion utility | Denis Kenzior | 1 | -0/+111 | |
2009-07-02 | Add app-port extraction utility for CBS | Denis Kenzior | 1 | -13/+31 | |
2009-07-02 | Make sms_udh_iter work for Cell Broadcast messages | Denis Kenzior | 1 | -23/+61 | |
2009-07-02 | Add Cell Broadcast encoding / decoding utilities | Denis Kenzior | 1 | -0/+45 | |
2009-07-02 | Add DCS decoder for Cell Broadcast | Denis Kenzior | 1 | -0/+108 | |
2009-06-22 | Make compiler happy | Denis Kenzior | 1 | -2/+6 | |
2009-06-19 | Some fixes to sms_text_prepare | Denis Kenzior | 1 | -6/+6 | |
2009-06-19 | Add address from string utility for SMS | Denis Kenzior | 1 | -0/+12 | |
2009-06-19 | Update unit tests | Denis Kenzior | 1 | -1/+17 | |
2009-06-19 | Utility to create SMS, both fragmented and not | Denis Kenzior | 1 | -0/+160 | |
2009-06-19 | Add utility function | Denis Kenzior | 1 | -1/+6 | |
2009-06-19 | Minor style issue | Denis Kenzior | 1 | -2/+0 | |
2009-06-18 | Add a new extract_bcd_number utility | Denis Kenzior | 1 | -20/+13 | |
2009-06-17 | Return slist elements back to the allocator | Denis Kenzior | 1 | -0/+4 | |
2009-06-16 | SMS 8-Bit and 16-Bit ports are not the same | Denis Kenzior | 1 | -1/+8 | |
2009-06-14 | Add utilities for SMS re-assembly | Denis Kenzior | 1 | -0/+148 | |
2009-06-14 | Fix SMS Concatenation header parsing | Denis Kenzior | 1 | -2/+2 | |
2009-06-14 | Change function signature | Denis Kenzior | 1 | -3/+4 | |
2009-06-12 | Add utility to extract text SMS | Denis Kenzior | 1 | -0/+97 | |
2009-06-12 | Add utility to extract datagrams | Denis Kenzior | 1 | -0/+70 | |
2009-06-12 | Add utility to extract SMS concatenation info | Denis Kenzior | 1 | -0/+86 | |
2009-06-12 | Add utility to extract application port address | Denis Kenzior | 1 | -0/+73 | |
2009-06-12 | Add a couple new sms_udh_iter utilities | Denis Kenzior | 1 | -0/+10 | |
2009-06-12 | Add pretty print function for SMS addresses | Denis Kenzior | 1 | -0/+15 | |
2009-06-12 | Add sms_extract_common function | Denis Kenzior | 1 | -15/+57 | |
Extract common attributes from the various SMS types | |||||
2009-06-12 | Make SCTS to time function const-correct | Denis Kenzior | 1 | -1/+1 | |
2009-06-11 | Add additional sanity check | Denis Kenzior | 1 | -0/+3 | |
2009-06-11 | Make SMS UDH iterators const-correct | Denis Kenzior | 1 | -2/+2 | |
2009-06-05 | Add utility for parsing MWI SMS DCS types | Denis Kenzior | 1 | -0/+44 | |
2009-06-05 | Rename ud_len_in_octets to sms_udl_in_bytes | Denis Kenzior | 1 | -14/+14 | |
2009-06-05 | Rename sms utilities properly | Denis Kenzior | 1 | -2/+2 | |
Rename encode_sms to sms_encode Rename decode_sms to sms_decode | |||||
2009-06-05 | Add SMS specific DCS decoding function | Denis Kenzior | 1 | -0/+67 | |
2009-06-05 | Add utility to convert SCTS to local/remote time | Denis Kenzior | 1 | -0/+37 | |
2009-06-05 | SMS-Command is also submitted with sc address | Denis Kenzior | 1 | -1/+2 | |
2009-06-03 | Add User-Data-Header iterator utilities | Denis Kenzior | 1 | -0/+158 | |
2009-06-03 | Calculation for UCS2 cases was wrong | Denis Kenzior | 1 | -3/+2 | |
2009-06-01 | Squash another uninitialized warning | Denis Kenzior | 1 | -1/+1 | |
GCC detects that next_octet only sets oct if successful. However, we've already checked the length, so it should always succeed. | |||||
2009-06-01 | Squash another uninitialized warning | Denis Kenzior | 1 | -1/+2 | |
GCC is smart enough to detect that oct is only set if the next_octet function succeeds. However, we've already checked that buf is big enough, so it should always succeed. Still, lets keep gcc happy | |||||
2009-05-12 | Add a set of utility functions for parsing the fundamental SMS PDU/TPDUs. | Denis Kenzior | 1 | -0/+1327 | |