Cisco Cisco WET200 Wireless-G Business Ethernet Bridge 릴리즈 노트

다운로드
페이지 153
78-21101-01             Open Source Used In WET200 2.0.8.x                                                                                                                                    92
 len = ntohl(len);
 
#ifndef CONFIG_USER_INIT_EXPAND_NOZEROES
 memset(buf, 0, 2048);
 while(len>0) {
 write(fdo, buf, (len > 2048) ? 2048 : len);
 len -= 2048;
 }
#endif
 
 lseek(fdo, 0, SEEK_SET);
 
 /* ZRLE */
 while (read(fdi,&pos,4) == 4) {
   if (read(fdi,&len,4) != 4) break;
   pos = ntohl(pos);
   len = ntohl(len);
  
   lseek(fdo,pos,SEEK_SET);
   read(fdi,buf,len);
   write(fdo,buf,len);
 }
 
 close(fdi);
 close(fdo);
 free(buf);
 
 exit(0);
}
 
1.12 libmatrixssl 1.2.5 
1.12.1 Available under license : 
PeerSec Networks MatrixSSL Open Source License Agreement
 
 This software is open source; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
 
 This General Public License does NOT permit incorporating this
software into proprietary programs.  If you are unable to comply
with the GPL, a commercial license for this software may be
purchased from PeerSec Networks at http://www.peersec.com
 
=================================================================