summaryrefslogtreecommitdiffstats
path: root/drivers/stemodem/gprs-context.c
AgeCommit message (Collapse)AuthorFilesLines
2010-11-29drivers: explicitly compare pointers to NULLLucas De Marchi1-7/+7
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
2010-11-26ste: Remove stray newlines in messages sent to logRémi Denis-Courmont1-1/+1
2010-11-13stemodem: Fix for error handling, memleak and changed some definesSjur Brændeland1-23/+31
* renamed MAX_LEN to IP_ADDR_LEN * removed memory leak from unneeded strdup when parsing xml response. * better handling of AT error responses * reduced number of caif interfaces to 4
2010-10-30stemodem: Fix broken coding styleMarcel Holtmann1-1/+1
2010-08-16stemodem: Remove useless NULL checks before g_freeMarcel Holtmann1-6/+3
2010-08-12stemodem: Use g_at_chat_cloneDenis Kenzior1-1/+3
2010-08-12stemodem: Fix minor whitespace issueDenis Kenzior1-1/+1
2010-08-12stedriver: remove unsupported CAIF socket ioctlsSjur Brændeland1-46/+2
2010-02-08Refactor: Remove atutil dump_responseDenis Kenzior1-10/+0
No longer needed now that we have nice AT command tracing using OFONO_AT_DEBUG=1
2010-02-08Fix: Don't use ofono_debug directly in pluginsDenis Kenzior1-12/+12
2010-02-05Fix: Send *EIAAUW after CGDCONT for STE and MBMDenis Kenzior1-9/+14
Otherwise the EIAAUW might fail.
2010-02-05Fix: Use snprintf instead of sprintf in stemodemDenis Kenzior1-5/+6
2010-01-28Fix: Update copyright notice for 2010Denis Kenzior1-1/+1
2010-01-27Fix: Remove username/password elementsDenis Kenzior1-14/+10
The reason for this is twofold. First the current code actually leaks memory since it uses g_strdup on username/password and never frees it anywhere. Second the username/password command can just be sent inside activate_primary, no reason to do it in the callback. The fix removes the username / password structure members and moves the AT*EIAAUW handling to activate_primary. This is almost exactly like the username / password / context definition for MBM modems.
2010-01-27Style: Couple more fixesDenis Kenzior1-3/+3
2010-01-27Fix: Remove pointless error labelsDenis Kenzior1-17/+10
2010-01-27Style: Various indentation and spacing issuesDenis Kenzior1-16/+23
2010-01-27Style: No space after function nameDenis Kenzior1-4/+4
2010-01-27Style: Use proper comment formattingDenis Kenzior1-6/+6
2010-01-27Style: Don't use underscoreDenis Kenzior1-14/+14
2010-01-27Add STE modem support for GPRS PDP ContextsSjur Brændeland1-0/+610