Merge pull request #119 from ityuhui/yh-settings-version-0516

Eliminate some compiler warnings
This commit is contained in:
Kubernetes Prow Robot
2022-05-16 15:20:19 -07:00
committed by GitHub
3 changed files with 9 additions and 9 deletions

View File

@@ -40,7 +40,7 @@ apiClient_t* apiClient_create_with_base_path(const char *basePath
void apiClient_free(apiClient_t *apiClient); void apiClient_free(apiClient_t *apiClient);
void apiClient_invoke(apiClient_t *apiClient,char* operationParameter, list_t *queryParameters, list_t *headerParameters, list_t *formParameters,list_t *headerType,list_t *contentType, char *bodyParameters, char *requestType); void apiClient_invoke(apiClient_t *apiClient,const char* operationParameter, list_t *queryParameters, list_t *headerParameters, list_t *formParameters,list_t *headerType,list_t *contentType, const char *bodyParameters, const char *requestType);
sslConfig_t *sslConfig_create(const char *clientCertFile, const char *clientKeyFile, const char *CACertFile, int insecureSkipTlsVerify); sslConfig_t *sslConfig_create(const char *clientCertFile, const char *clientKeyFile, const char *CACertFile, int insecureSkipTlsVerify);

View File

@@ -119,8 +119,8 @@ void replaceSpaceWithPlus(char *stringToProcess) {
} }
} }
char *assembleTargetUrl(char *basePath, char *assembleTargetUrl(const char *basePath,
char *operationParameter, const char *operationParameter,
list_t *queryParameters) { list_t *queryParameters) {
int neededBufferSizeForQueryParameters = 0; int neededBufferSizeForQueryParameters = 0;
listEntry_t *listEntry; listEntry_t *listEntry;
@@ -182,7 +182,7 @@ char *assembleHeaderField(char *key, char *value) {
return header; return header;
} }
void postData(CURL *handle, char *bodyParameters) { void postData(CURL *handle, const char *bodyParameters) {
curl_easy_setopt(handle, CURLOPT_POSTFIELDS, bodyParameters); curl_easy_setopt(handle, CURLOPT_POSTFIELDS, bodyParameters);
curl_easy_setopt(handle, CURLOPT_POSTFIELDSIZE_LARGE, curl_easy_setopt(handle, CURLOPT_POSTFIELDSIZE_LARGE,
strlen(bodyParameters)); strlen(bodyParameters));
@@ -201,14 +201,14 @@ int lengthOfKeyPair(keyValuePair_t *keyPair) {
void apiClient_invoke(apiClient_t *apiClient, void apiClient_invoke(apiClient_t *apiClient,
char *operationParameter, const char *operationParameter,
list_t *queryParameters, list_t *queryParameters,
list_t *headerParameters, list_t *headerParameters,
list_t *formParameters, list_t *formParameters,
list_t *headerType, list_t *headerType,
list_t *contentType, list_t *contentType,
char *bodyParameters, const char *bodyParameters,
char *requestType) { const char *requestType) {
CURL *handle = curl_easy_init(); CURL *handle = curl_easy_init();
CURLcode res; CURLcode res;

View File

@@ -1,9 +1,9 @@
# Kubernetes branch/tag to get the OpenAPI spec from. # Kubernetes branch/tag to get the OpenAPI spec from.
export KUBERNETES_BRANCH="v1.22.1" export KUBERNETES_BRANCH="v1.23.5"
# client version for packaging and releasing. It can # client version for packaging and releasing. It can
# be different than SPEC_VERSION. # be different than SPEC_VERSION.
export CLIENT_VERSION="0.1.0" export CLIENT_VERSION="0.3.0"
# Name of the release package # Name of the release package
export PACKAGE_NAME="client" export PACKAGE_NAME="client"