Searched refs:pszUserAgent (Results 1 - 2 of 2) sorted by relevance

/vbox/include/iprt/
H A Ds3.h128 * @param pszUserAgent An optional user agent string used in the HTTP
131 RTR3DECL(int) RTS3Create(PRTS3 phS3, const char *pszAccessKey, const char *pszSecretKey, const char *pszBaseUrl, const char *pszUserAgent);
/vbox/src/VBox/Runtime/common/misc/
H A Ds3.cpp58 char *pszUserAgent; member in struct:RTS3INTERNAL
349 if (pS3Int->pszUserAgent)
350 curl_easy_setopt(pS3Int->pCurl, CURLOPT_USERAGENT, pS3Int->pszUserAgent);
503 RTR3DECL(int) RTS3Create(PRTS3 ppS3, const char* pszAccessKey, const char* pszSecretKey, const char* pszBaseUrl, const char* pszUserAgent /* = NULL */)
529 if (pszUserAgent)
530 pS3Int->pszUserAgent = RTStrDup(pszUserAgent);
549 if (pS3Int->pszUserAgent)
550 RTStrFree(pS3Int->pszUserAgent);

Completed in 45 milliseconds