• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

FFFTPのソースコードです。


Commit MetaInfo

Revision27179b11319a3068cbf7b1c0d0adae30eba505a0 (tree)
Zeit2015-08-10 00:40:06
Autors_kawamoto <s_kawamoto@user...>
Commiters_kawamoto

Log Message

Fix bugs of UPnP port mapping control.

Ändern Zusammenfassung

Diff

Binary files a/FFFTP_Eng_Release/FFFTP.exe and b/FFFTP_Eng_Release/FFFTP.exe differ
Binary files a/FFFTP_Eng_Release_64/FFFTP.exe and b/FFFTP_Eng_Release_64/FFFTP.exe differ
Binary files a/Release/FFFTP.exe and b/Release/FFFTP.exe differ
Binary files a/Release_64/FFFTP.exe and b/Release_64/FFFTP.exe differ
--- a/common.h
+++ b/common.h
@@ -81,7 +81,7 @@
8181 // ソフトウェア自動更新
8282 // リリースバージョンはリリース予定年(10進数4桁)+月(2桁)+日(2桁)+通し番号(0スタート2桁)とする
8383 // 2014年7月31日中の30個目のリリースは2014073129
84-#define RELEASE_VERSION_NUM 2015080901 /* リリースバージョン */
84+#define RELEASE_VERSION_NUM 2015081001 /* リリースバージョン */
8585
8686
8787 // SourceForge.JPによるフォーク
--- a/socket.c
+++ b/socket.c
@@ -1464,7 +1464,7 @@ int RemovePortMapping(int Port)
14641464 if(Data.h = CreateEvent(NULL, TRUE, FALSE, NULL))
14651465 {
14661466 Data.Port = Port;
1467- if(PostMessage(GetMainHwnd(), WM_ADDPORTMAPPING, 0, (LPARAM)&Data))
1467+ if(PostMessage(GetMainHwnd(), WM_REMOVEPORTMAPPING, 0, (LPARAM)&Data))
14681468 {
14691469 if(WaitForSingleObject(Data.h, INFINITE) == WAIT_OBJECT_0)
14701470 Sts = Data.r;