summaryrefslogtreecommitdiffstats
path: root/src/AFC.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/AFC.c')
-rw-r--r--src/AFC.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/AFC.c b/src/AFC.c
index 826c9e5..d2761cf 100644
--- a/src/AFC.c
+++ b/src/AFC.c
@@ -468,6 +468,35 @@ afc_error_t afc_get_device_info(afc_client_t client, char ***infos)
468 return ret; 468 return ret;
469} 469}
470 470
471/** Get a specific field of the device info for a client connection to phone.
472 * Known values are: Model, FSTotalBytes, FSFreeBytes and FSBlockSize. This is
473 * a helper function for afc_get_device_info().
474 *
475 * @param client The client to get device info for.
476 * @param field The field to get the information for
477 *
478 * @return A char * or NULL if there was an error.
479 */
480char * afc_get_device_info_field(afc_client_t client, const char *field)
481{
482 char *ret = NULL;
483 char **kvps, **ptr;
484
485 if (field == NULL || afc_get_device_info(client, &kvps) != AFC_E_SUCCESS)
486 return NULL;
487
488 for (ptr = kvps; *ptr; ptr++) {
489 if (!strcmp(*ptr, field)) {
490 ret = strdup(*(ptr+1));
491 break;
492 }
493 }
494
495 g_strfreev(kvps);
496
497 return ret;
498}
499
471/** Deletes a file or directory. 500/** Deletes a file or directory.
472 * 501 *
473 * @param client The client to use. 502 * @param client The client to use.