summaryrefslogtreecommitdiffstats
path: root/src/stkutil.c
AgeCommit message (Collapse)AuthorFilesLines
2010-05-25stk: Add parser for language notification commandsYang Gu1-0/+26
2010-05-25stk: Add parser for send dtmf commandsYang Gu1-0/+42
2010-05-25stk: Add parser for run at command commandsYang Gu1-0/+42
2010-05-25stk: Add parser for setup idle mode text commandsYang Gu1-0/+40
2010-05-25stkutil: Fix warningDenis Kenzior1-2/+1
2010-05-25stkutil: More style issuesDenis Kenzior1-52/+54
- Make stk_tlv_builder usage consistent (builder was missing) - Various style issues
2010-05-25stkutil: small style issueDenis Kenzior1-5/+3
2010-05-25stkutil: Add Select Item response builderAndrzej Zaborowski1-0/+21
2010-05-25stkutil: Add Set Up Menu response builderAndrzej Zaborowski1-0/+1
2010-05-25test-stkutil: Add Refresh response testsAndrzej Zaborowski1-1/+1
2010-05-25stkutil: Add Refresh response builderAndrzej Zaborowski1-0/+2
2010-05-25stkutil: Add Poll Interval response builderAndrzej Zaborowski1-0/+6
2010-05-25stkutil: Add Play Tone response builder supportAndrzej Zaborowski1-0/+1
2010-05-25stkutil: Add Send SMS response builderAndrzej Zaborowski1-0/+2
2010-05-25stkutil: Add Get Input response builderAndrzej Zaborowski1-0/+6
2010-05-25stkutil: Various code style issuesDenis Kenzior1-15/+17
2010-05-25stkutil: Add Get Inkey response builderAndrzej Zaborowski1-1/+86
2010-05-25stkutil: Make the code more readableDenis Kenzior1-20/+40
2010-05-25stkutil: Add Display Text response builderAndrzej Zaborowski1-0/+70
2010-05-25stkutil: Simplify append_textDenis Kenzior1-77/+77
2010-05-25Add STK-specific CTLV encoding utilitiesAndrzej Zaborowski1-0/+185
2010-05-13stkutil: Add timer management command parserYang Gu1-0/+28
2010-05-13stkutil: Add get reader status command parserYang Gu1-0/+27
2010-05-13stkutil: Add power on card command parserYang Gu1-0/+16
2010-05-13stkutil: Add power off card command parserYang Gu1-0/+16
2010-05-13stkutil: Add perform card apdu command parserYang Gu1-0/+27
2010-05-13stkutil: Add event list command parserYang Gu1-1/+30
2010-05-13style: Whitespace errorsDenis Kenzior1-3/+3
2010-05-13stkutil: Add provide local info command parserYang Gu1-0/+15
2010-05-13stkutil: Add polling off proactive command parserYang Gu1-0/+15
2010-05-13stkutil: file_list instead of fl is betterDenis Kenzior1-3/+3
2010-05-13stkutil: Add refresh proactive command parserYang Gu1-0/+44
2010-05-13stkutil: Add setup call proactive command parserYang Gu1-0/+55
2010-05-13stkutil: Refactor parse_list into parse_item_listDenis Kenzior1-52/+19
Makes the code much easier to follow
2010-05-13stkutil: Add select item proactive command parserYang Gu1-0/+67
2010-05-13stkutil: Add setup menu proactive command parseYang Gu1-0/+127
2010-05-13style: remove extra whitespaceYang Gu1-1/+0
2010-05-13stkutil: item objects can be NULLYang Gu1-1/+5
ETSI 102.223 doesn't mention that alpha id objects can be NULL, however such objects exist in the 102.384 test specification.
2010-05-13stkutil: alpha id objects can be NULLYang Gu1-2/+2
ETSI 102.223 doesn't mention that alpha id objects can be NULL, however such objects exist in the 102.384 test specification.
2010-05-13stk: Add poll interval proactive command parserYang Gu1-0/+28
2010-05-11stkutil: Parse cdma tpdu in send sms parserYang Gu1-4/+12
2010-05-11stkutil: Refactor parser for tone objectsYang Gu1-11/+2
2010-05-11stkutil: Add play tone proactive command parserYang Gu1-0/+42
2010-05-11stk: Unify variable names to use abbreviationYang Gu1-4/+4
2010-05-11stkutil: Free default text for get input parserYang Gu1-0/+1
2010-04-27stkutil: Make get inkey parser use its own structYang Gu1-4/+2
2010-04-27stkutil: Use char* instead of char**Yang Gu1-14/+14
char ** should only be used for character arrays that are allocated by the parser. Static buffers should be passed as char*
2010-04-27stkutil: Add 'more time' proactive command parserYang Gu1-0/+15
2010-04-27stkutil: Use struct to represent frame idYang Gu1-10/+3
Use a field has_id to indicate if we have frame id or not. Originally we use 0xFF to indicate we don't have frame id. But in that way, we have to initialize each test case of proactive command when it doesn't have this comprehension tlv to be 0xFF. To use has_id will save this effort, and keep consistency with other implementations.
2010-04-27stkutil: Move advance of ctlv to parse_dataobjYang Gu1-3/+5
Not all the proactive commands have comprehension tlv other than command details and device identities. So the appropriate code should be moved to parse_dataobj() from stk_command_new_from_pdu().