summaryrefslogtreecommitdiffstats
path: root/src/cdma-connman.c
AgeCommit message (Collapse)AuthorFilesLines
2015-07-28cdma-connman: Make static analysis tools happyDenis Kenzior1-1/+1
The kernel simply puts a null terminator at index 15 prior to ifr_name processing. So we do the same. Original report by: Sabas Rosales, Blanca E <blanca.e.sabas.rosales@intel.com> Buffer not null terminated (BUFFER_SIZE_WARNING) buffer_size_warning: Calling strncpy with a maximum size argument of 16 bytes on destination array ifr.ifr_ifrn.ifrn_name of size 16 bytes might leave the destination string unterminated. 92 strncpy(ifr.ifr_name, interface, IFNAMSIZ);
2012-05-20Do not set signature and reply in GDBus tablesLucas De Marchi1-7/+7
Use GDBUS_* macros, so signature and reply fields are not set in each method/signal.
2012-05-20Convert GDBus methods to use macro helpersLucas De Marchi1-5/+8
With these macro helpers we can separate in/out arguments and use their own vector.
2012-05-20Constify GDBus signal tablesHenrique Dante de Almeida1-1/+1
Constify signal tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusSignalTable .* =\)/const \1/g' {} \;
2012-05-20Constify GDBus method tablesHenrique Dante de Almeida1-1/+1
Constify method tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusMethodTable .* =\)/const \1/g' {} \;
2012-01-18cdma-connman: Use __ofono_atom_findDenis Kenzior1-4/+2
2011-12-08cdma-connman: Add dormant_notify implementationGuillaume Zajac1-0/+17
2011-11-04cdma-connman: Add public api definitionGuillaume Zajac1-0/+19
2011-11-04cdma-connman: Refactor previous commitDenis Kenzior1-6/+11
2011-11-04cdma-connman: Check netreg when changing PoweredGuillaume Zajac1-3/+23
2011-10-15core: Some more copyright fixesMarcel Holtmann1-1/+1
2011-10-10core: Update copyright informationMarcel Holtmann1-1/+1
2011-07-24cdma-connman: fix the set_property Activate replyBertrand Aygon1-1/+1
2011-07-21cdma-connman: emit PropertyChanged signalDenis Kenzior1-2/+20
When Username / Password are changed, we should emit the PropertyChanged signal
2011-07-21cdma-connman: Add Username and Password propertiesGuillaume Zajac1-1/+47
2011-03-17src: add initial CDMA Connection Manager supportChristian Lam1-0/+570