[Ttssh2-commit] [3264] サンプルコードアップデート

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2009年 4月 1日 (水) 00:55:11 JST


Revision: 3264
          http://svn.sourceforge.jp/view?root=ttssh2&view=rev&rev=3264
Author:   yutakapon
Date:     2009-04-01 00:55:11 +0900 (Wed, 01 Apr 2009)

Log Message:
-----------
サンプルコードアップデート
http://logmett.com/forum/viewtopic.php?f=3&t=1052

Modified Paths:
--------------
    trunk/doc/en/html/macro/command/strscan.html
    trunk/doc/jp/html/macro/command/strscan.html


-------------- next part --------------
Modified: trunk/doc/en/html/macro/command/strscan.html
===================================================================
--- trunk/doc/en/html/macro/command/strscan.html	2009-03-31 14:13:35 UTC (rev 3263)
+++ trunk/doc/en/html/macro/command/strscan.html	2009-03-31 15:55:11 UTC (rev 3264)
@@ -81,39 +81,24 @@
 <pre class="macro-example">
 ; Network IP calculation from IP and Subnet mask
 ip='192.168.1.189'
-subnet='255.255.255.248'
- 
-bits=0          ;calculate bits
-tsub=subnet
-bitstr='128 192 224 240 248 252 254 255'
+sn='255.255.255.248'
+bits=0          ;calculate bits & first address in sn
+bitstr='000 128 192 224 240 248 252 254 255'    ;lookup table for # bits
 do
-    str2int itsub tsub
-    for i 0 7
-        strcopy bitstr i*4+1 3 stmp
-        str2int tmp stmp
-        if itsub>=tmp bits=bits+1
-    next        
-    strscan tsub '.'
-    strcopy tsub result+1 999 tsub
+    str2int isn sn
+    int2str stmp isn
+    strscan bitstr stmp     ;use lookup table to find bits
+    bits=bits+(result-1)/4  
+    str2int tmp ip      ;find net by bitwise AND of ip and mask
+    sprintf2 net '%s%d' net tmp&isn
+    strscan sn '.'
+    strcopy sn result+1 999 sn
+    strscan ip '.'
+    strcopy ip result+1 999 ip
+    if result>0 strconcat net '.'           
 loop while result>0
 messagebox bits 'bits'
- 
-oip=''          ;calculate first address in subnet
-tip=ip
-tsub=subnet
-do
-    str2int itip tip
-    str2int itsub tsub
-    ioip=itip & itsub
-    int2str soip ioip
-    strconcat oip soip
-    strscan tip '.'
-    strcopy tip result+1 999 tip
-    strscan tsub '.'
-    strcopy tsub result+1 999 tsub
-    if result>0 strconcat oip '.'
-loop while result>0
-messagebox oip 'net'
+messagebox net 'net'
 </pre>
 
 

Modified: trunk/doc/jp/html/macro/command/strscan.html
===================================================================
--- trunk/doc/jp/html/macro/command/strscan.html	2009-03-31 14:13:35 UTC (rev 3263)
+++ trunk/doc/jp/html/macro/command/strscan.html	2009-03-31 15:55:11 UTC (rev 3264)
@@ -81,39 +81,24 @@
 <pre class="macro-example">
 ; IPƒAƒhƒŒƒX‚̃lƒbƒgƒ[ƒNƒAƒhƒŒƒX‚ƃTƒuƒlƒbƒgƒ}ƒXƒN‚ð‹‚ß‚é
 ip='192.168.1.189'
-subnet='255.255.255.248'
- 
-bits=0          ;calculate bits
-tsub=subnet
-bitstr='128 192 224 240 248 252 254 255'
+sn='255.255.255.248'
+bits=0          ;calculate bits & first address in sn
+bitstr='000 128 192 224 240 248 252 254 255'    ;lookup table for # bits
 do
-    str2int itsub tsub
-    for i 0 7
-        strcopy bitstr i*4+1 3 stmp
-        str2int tmp stmp
-        if itsub>=tmp bits=bits+1
-    next        
-    strscan tsub '.'
-    strcopy tsub result+1 999 tsub
+    str2int isn sn
+    int2str stmp isn
+    strscan bitstr stmp     ;use lookup table to find bits
+    bits=bits+(result-1)/4  
+    str2int tmp ip      ;find net by bitwise AND of ip and mask
+    sprintf2 net '%s%d' net tmp&isn
+    strscan sn '.'
+    strcopy sn result+1 999 sn
+    strscan ip '.'
+    strcopy ip result+1 999 ip
+    if result>0 strconcat net '.'           
 loop while result>0
 messagebox bits 'bits'
- 
-oip=''          ;calculate first address in subnet
-tip=ip
-tsub=subnet
-do
-    str2int itip tip
-    str2int itsub tsub
-    ioip=itip & itsub
-    int2str soip ioip
-    strconcat oip soip
-    strscan tip '.'
-    strcopy tip result+1 999 tip
-    strscan tsub '.'
-    strcopy tsub result+1 999 tsub
-    if result>0 strconcat oip '.'
-loop while result>0
-messagebox oip 'net'
+messagebox net 'net'
 </pre>
 
 



Ttssh2-commit メーリングリストの案内
Back to archive index