Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
symbian /
ext /
Moped /
Msg /
Delete
Unzip
Name
Size
Permission
Date
Action
Msg.mmp
30
B
-r--r--r--
2014-12-27 11:49
Msg.pkg
406
B
-r--r--r--
2014-12-27 11:49
Msg.pm
148
B
-r--r--r--
2014-12-27 11:49
Msg.xs
1.35
KB
-r--r--r--
2014-12-27 11:49
README
1.7
KB
-r--r--r--
2014-12-27 11:49
bld.inf
50
B
-r--r--r--
2014-12-27 11:49
location.pl
179
B
-r--r--r--
2014-12-27 11:49
Save
Rename
NOTE: this is just a sample of how building Symbian specific extensions COULD work. This is most probably far from the best or final way of doing things. The Moped::Msg currently defines just a single static method, get_gsm_network_info(), which returns the GSM network and cell id. The extension code is in Msg.xs (which gets translated by xsubpp into Msg.cpp), the Perl glue code is in Msg.pm. To understand the .xs syntax studying perlxstut and perlxs is recommended. The prerequisites for compiling this extension are: (1) The Perl for Symbian SDK installed (either done "make sdkinstall", or separately installed the perlXYZsdk.zip). (2) The etelbgsm.h header, which is available for example from the Symbian 6.1 SDK (the Communicator SDK). This must be copied to ...\epoc32\include. (3) The etel.lib and the gsmbas.lib, they should come both with the 6.1 and 7.0s SDK. The WINS udeb and THUMB urel versions of these must be copied to the directories ...\epoc32\release\wins\udeb and ...\epoc32\release\thumb\urel, respectively. To compile (assuming Perl 5.9.3 and Series 60 SDK 2.6 for Visual C): perl \symbian\perl\5.9.3\bin\xsbuild.pl --cpp --extversion=0.1 ext\symbian\Moped\Msg The --symbian indicates the Symbian and SDK version, the --cplusplus indicates that one should generate a .cpp file instead of a .c file. The xsbuild.pl both configures and builds the extension. To clean do "make clean" or "make distclean". The location.pl demonstrates using the extension. To create a SIS: makesis -d%EPOCROOT% ext\Moped\Msg\Msg.pkg TODO: automate the determination of the EXTVERSION (from .pkg?) and of creation of .pkg (the location of the .dll in the build and in the target).