Index: branches/dev/data/downloads/module/mdl_remise/mdl_remise.php
===================================================================
--- branches/dev/data/downloads/module/mdl_remise/mdl_remise.php	(revision 361)
+++ branches/dev/data/downloads/module/mdl_remise/mdl_remise.php	(revision 372)
@@ -303,4 +303,14 @@
 		gfPrintLog("remise credit result end  ----------", $log_path);
 
+		// IP¥¢¥É¥ì¥¹À©¸æ¤¹¤ë¾ì¹ç
+		if (REMISE_IP_ADDRESS_DENY == 1) {
+			gfPrintLog("remise remoto ip address : ".$_SERVER["REMOTE_ADDR"], $log_path);
+			if (ip2long(REMISE_IP_ADDRESS_S) > ip2long($_SERVER["REMOTE_ADDR"]) || 
+				ip2long(REMISE_IP_ADDRESS_E) < ip2long($_SERVER["REMOTE_ADDR"])) {
+				print("NOT REMISE SERVER");
+				exit;
+			}
+		}
+		
 		// ÀÁµáÈÖ¹æ¤È¶â³Û¤Î¼èÆÀ
 		$order_id = 0;
@@ -359,4 +369,14 @@
 			gfPrintLog("remise conveni charge end  ----------", $log_path);
 
+			// IP¥¢¥É¥ì¥¹À©¸æ¤¹¤ë¾ì¹ç
+			if (REMISE_IP_ADDRESS_DENY == 1) {
+				gfPrintLog("remise remoto ip address : ".$_SERVER["REMOTE_ADDR"], $log_path);
+				if (ip2long(REMISE_IP_ADDRESS_S) > ip2long($_SERVER["REMOTE_ADDR"]) || 
+					ip2long(REMISE_IP_ADDRESS_E) < ip2long($_SERVER["REMOTE_ADDR"])) {
+					print("NOT REMISE SERVER");
+					exit;
+				}
+			}
+			
 			// ÀÁµáÈÖ¹æ¤È¶â³Û¤Î¼èÆÀ
 			$order_id = 0;
Index: branches/dev/data/downloads/module/mdl_remise/mdl_remise.inc
===================================================================
--- branches/dev/data/downloads/module/mdl_remise/mdl_remise.inc	(revision 361)
+++ branches/dev/data/downloads/module/mdl_remise/mdl_remise.inc	(revision 372)
@@ -45,4 +45,11 @@
 	'OK' => '0:0000'
 );
+
+// ¥ë¥ß¡¼¥º¤«¤é¤ÎÄÌ¿®¤ÎIPÀ©¸æ(0:¤·¤Ê¤¤ 1:¤¹¤ë)
+define("REMISE_IP_ADDRESS_DENY", 1);
+
+// ¥ë¥ß¡¼¥º¥µ¡¼¥Ð¤ÎIP¥¢¥É¥ì¥¹
+define("REMISE_IP_ADDRESS_S", "211.0.149.169");
+define("REMISE_IP_ADDRESS_E", "211.0.149.169");
 
 // ·èºÑÊýË¡
