-rw-r--r-- | src/eyefi.h | 1 | ||||
-rw-r--r-- | src/eyefiservice.cc | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/eyefi.h b/src/eyefi.h index 70e918d..84a5ebd 100644 --- a/src/eyefi.h +++ b/src/eyefi.h @@ -29,2 +29,3 @@ int efs__GetPhotoStatus( std::string filename, long filesize, std::string filesignature, + int flags, struct rns__GetPhotoStatusResponse &r ); diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc index 1a21c02..5cbc396 100644 --- a/src/eyefiservice.cc +++ b/src/eyefiservice.cc @@ -75,2 +75,3 @@ int eyefiService::GetPhotoStatus( std::string filename, long filesize, std::string filesignature, + int flags, struct rns__GetPhotoStatusResponse &r ) { @@ -78,4 +79,5 @@ int eyefiService::GetPhotoStatus( syslog(LOG_DEBUG, - "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s; session nonce=%s", - macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), session_nonce.hex().c_str() ); + "GetPhotoStatus request from %s with credential=%s, filename=%s, filesize=%ld, filesignature=%s, flags=%d; session nonce=%s", + macaddress.c_str(), credential.c_str(), filename.c_str(), filesize, filesignature.c_str(), flags, + session_nonce.hex().c_str() ); #endif |