Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dConnectSDK/dConnectLibStreaming/libsrt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (githubPropertiesFile.exists()) {
githubProperties.load(new FileInputStream(githubPropertiesFile))
}
def getVersionName = { ->
return "1.2.2" // Replace with version Name
return "1.2.3" // Replace with version Name
}

def getArtificatId = { ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ JNI_METHOD_NAME(getPeerName)(JNIEnv *env, jclass clazz, jlong nativeSocket) {
}

// クライアントのIPアドレス
char buf[15];
char buf[32];
sprintf(buf, "%d.%d.%d.%d", addr.sa_data[2], addr.sa_data[3], addr.sa_data[4], addr.sa_data[5]);
jstring address = env->NewStringUTF(buf);
return address;
Expand Down