Skip to content

Commit 36d4b79

Browse files
Merge branch 'main' into feature_host_plugin_update
2 parents b061477 + f9e7447 commit 36d4b79

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dConnectSDK/dConnectLibStreaming/libsrt/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if (githubPropertiesFile.exists()) {
66
githubProperties.load(new FileInputStream(githubPropertiesFile))
77
}
88
def getVersionName = { ->
9-
return "1.2.2" // Replace with version Name
9+
return "1.2.3" // Replace with version Name
1010
}
1111

1212
def getArtificatId = { ->

dConnectSDK/dConnectLibStreaming/libsrt/src/main/cpp/srt-native-interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ JNI_METHOD_NAME(getPeerName)(JNIEnv *env, jclass clazz, jlong nativeSocket) {
290290
}
291291

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

0 commit comments

Comments
 (0)