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 /
NetWare /
Delete
Unzip
Name
Size
Permission
Date
Action
bat
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
testnlm
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
CLIBsdio.h
5.53
KB
-r--r--r--
2014-12-27 11:48
CLIBstr.h
3.45
KB
-r--r--r--
2014-12-27 11:48
CLIBstuf.c
6.1
KB
-r--r--r--
2014-12-27 11:48
CLIBstuf.h
810
B
-r--r--r--
2014-12-27 11:48
MP.imp
141
B
-r--r--r--
2014-12-27 11:48
Main.c
6.79
KB
-r--r--r--
2014-12-27 11:48
Makefile
39.24
KB
-rw-r--r--
2015-01-28 21:08
NWTInfo.c
13.66
KB
-r--r--r--
2014-12-27 11:48
NWUtil.c
21.45
KB
-r--r--r--
2014-12-27 11:48
Nwmain.c
34.43
KB
-r--r--r--
2014-12-27 11:48
Nwpipe.c
15.59
KB
-r--r--r--
2014-12-27 11:48
config.wc
21.06
KB
-r--r--r--
2014-12-27 11:49
config_H.wc
104.08
KB
-rw-r--r--
2015-01-28 21:08
config_h.PL
2.35
KB
-r--r--r--
2014-12-27 11:48
config_sh.PL
2.04
KB
-r--r--r--
2014-12-27 11:48
deb.h
916
B
-r--r--r--
2014-12-27 11:48
dl_netware.xs
4.48
KB
-r--r--r--
2014-12-27 11:48
intdef.h
2.15
KB
-r--r--r--
2014-12-27 11:48
interface.c
4.01
KB
-r--r--r--
2014-12-27 11:48
interface.cpp
4.47
KB
-r--r--r--
2014-12-27 11:48
interface.h
957
B
-r--r--r--
2014-12-27 11:48
iperlhost.h
1.04
KB
-r--r--r--
2014-12-27 11:48
netware.h
2.32
KB
-r--r--r--
2014-12-27 11:48
nw5.c
18.5
KB
-r--r--r--
2014-12-27 11:48
nw5iop.h
4.54
KB
-r--r--r--
2014-12-27 11:48
nw5sck.c
5.02
KB
-r--r--r--
2014-12-27 11:48
nw5sck.h
4.29
KB
-r--r--r--
2014-12-27 11:48
nw5thread.c
1.45
KB
-r--r--r--
2014-12-27 11:48
nw5thread.h
4.88
KB
-r--r--r--
2014-12-27 11:48
nwhashcls.cpp
5.09
KB
-r--r--r--
2014-12-27 11:48
nwhashcls.h
1.35
KB
-r--r--r--
2014-12-27 11:48
nwperlhost.h
35.25
KB
-r--r--r--
2014-12-27 11:48
nwperlsys.c
4.87
KB
-r--r--r--
2014-12-27 11:48
nwperlsys.h
25.81
KB
-r--r--r--
2014-12-27 11:48
nwpipe.h
1.11
KB
-r--r--r--
2014-12-27 11:48
nwplglob.c
2.19
KB
-r--r--r--
2014-12-27 11:48
nwplglob.h
468
B
-r--r--r--
2014-12-27 11:48
nwstdio.h
4.22
KB
-r--r--r--
2014-12-27 11:48
nwtinfo.h
1.81
KB
-r--r--r--
2014-12-27 11:48
nwutil.h
2.06
KB
-r--r--r--
2014-12-27 11:48
nwvmem.h
6.71
KB
-r--r--r--
2014-12-27 11:48
perllib.cpp
6.2
KB
-r--r--r--
2014-12-27 11:48
splittree.pl
527
B
-r--r--r--
2014-12-27 11:48
sv_nw.c
572
B
-r--r--r--
2014-12-27 11:48
win32ish.h
666
B
-r--r--r--
2014-12-27 11:48
Save
Rename
/* * Copyright © 2001 Novell, Inc. All Rights Reserved. * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. * */ /* * FILENAME : nwstdio.h * DESCRIPTION : Making stdio calls go thro' the * NetWare specific implementation. * This gets included if PERLIO_IS_STDIO. Instead * of directly calling stdio functions this goes * thro' IPerlStdIO, this ensures that cgi2perl * can call CGI functions and send the o/p to * browser or console. * Author : SGP * Date Created : June 29th 2001. * Date Modified: June 30th 2001. */ #ifndef ___NWStdio_H___ #define ___NWStdio_H___ #define PerlIO FILE #define PerlIO_putc(f,c) (*PL_StdIO->pPutc)(PL_StdIO, (f),(c)) #define PerlIO_fileno(f) (*PL_StdIO->pFileno)(PL_StdIO, (f)) #define PerlIO_close(f) (*PL_StdIO->pClose)(PL_StdIO, (f)) #define PerlIO_stderr() (*PL_StdIO->pStderr)(PL_StdIO) #define PerlIO_printf Perl_fprintf_nocontext #define PerlIO_vprintf(f,fmt,a) (*PL_StdIO->pVprintf)(PL_StdIO, (f),(fmt),a) #define PerlIO_flush(f) (*PL_StdIO->pFlush)(PL_StdIO, (f)) #define PerlIO_stdout() (*PL_StdIO->pStdout)(PL_StdIO) #define PerlIO_stdin() (*PL_StdIO->pStdin)(PL_StdIO) #define PerlIO_clearerr(f) (*PL_StdIO->pClearerr)(PL_StdIO, (f)) #define PerlIO_fdopen(f,s) (*PL_StdIO->pFdopen)(PL_StdIO, (f),(s)) #define PerlIO_getc(f) (*PL_StdIO->pGetc)(PL_StdIO, (f)) #define PerlIO_ungetc(f,c) (*PL_StdIO->pUngetc)(PL_StdIO, (c),(f)) #define PerlIO_tell(f) (*PL_StdIO->pTell)(PL_StdIO, (f)) #define PerlIO_seek(f,o,w) (*PL_StdIO->pSeek)(PL_StdIO, (f),(o),(w)) #define PerlIO_error(f) (*PL_StdIO->pError)(PL_StdIO, (f)) #define PerlIO_write(f,buf,size) (*PL_StdIO->pWrite)(PL_StdIO, (buf), (size),1, (f)) #define PerlIO_puts(f,s) (*PL_StdIO->pPuts)(PL_StdIO, (f),(s)) #define PerlIO_read(f,buf,size) (*PL_StdIO->pRead)(PL_StdIO, (buf), (size), 1, (f)) #define PerlIO_eof(f) (*PL_StdIO->pEof)(PL_StdIO, (f)) //#define PerlIO_fdupopen(f) (*PL_StdIO->pFdupopen)(PL_StdIO, (f)) #define PerlIO_reopen(p,m,f) (*PL_StdIO->pReopen)(PL_StdIO, (p), (m), (f)) #define PerlIO_open(x,y) (*PL_StdIO->pOpen)(PL_StdIO, (x),(y)) #ifdef HAS_SETLINEBUF #define PerlIO_setlinebuf(f) (*PL_StdIO->pSetlinebuf)(PL_StdIO, (f)) #else #define PerlIO_setlinebuf(f) setvbuf(f, NULL, _IOLBF, 0) #endif #define PerlIO_isutf8(f) 0 #ifdef USE_STDIO_PTR #define PerlIO_has_cntptr(f) 1 #define PerlIO_get_ptr(f) FILE_ptr(f) #define PerlIO_get_cnt(f) FILE_cnt(f) #ifdef STDIO_CNT_LVALUE #define PerlIO_canset_cnt(f) 1 #define PerlIO_set_cnt(f,c) (FILE_cnt(f) = (c)) #ifdef STDIO_PTR_LVALUE #ifdef STDIO_PTR_LVAL_NOCHANGE_CNT #define PerlIO_fast_gets(f) 1 #endif #endif /* STDIO_PTR_LVALUE */ #else /* STDIO_CNT_LVALUE */ #define PerlIO_canset_cnt(f) 0 #define PerlIO_set_cnt(f,c) abort() #endif #ifdef STDIO_PTR_LVALUE #ifdef STDIO_PTR_LVAL_NOCHANGE_CNT #define PerlIO_set_ptrcnt(f,p,c) STMT_START {FILE_ptr(f) = (p), PerlIO_set_cnt(f,c);} STMT_END #else #ifdef STDIO_PTR_LVAL_SETS_CNT /* assert() may pre-process to ""; potential syntax error (FILE_ptr(), ) */ #define PerlIO_set_ptrcnt(f,p,c) STMT_START {FILE_ptr(f) = (p); assert(FILE_cnt(f) == (c));} STMT_END #define PerlIO_fast_gets(f) 1 #else #define PerlIO_set_ptrcnt(f,p,c) abort() #endif #endif #endif #else /* USE_STDIO_PTR */ #define PerlIO_has_cntptr(f) 0 #define PerlIO_canset_cnt(f) 0 #define PerlIO_get_cnt(f) (abort(),0) #define PerlIO_get_ptr(f) (abort(),(void *)0) #define PerlIO_set_cnt(f,c) abort() #define PerlIO_set_ptrcnt(f,p,c) abort() #endif /* USE_STDIO_PTR */ #ifndef PerlIO_fast_gets #define PerlIO_fast_gets(f) 0 #endif #ifdef FILE_base #define PerlIO_has_base(f) 1 #define PerlIO_get_bufsiz(f) (*PL_StdIO->pGetBufsiz)(PL_StdIO, (f)) #define PerlIO_get_base(f) (*PL_StdIO->pGetBase)(PL_StdIO, (f)) #else #define PerlIO_has_base(f) 0 #define PerlIO_get_base(f) (abort(),(void *)0) #define PerlIO_get_bufsiz(f) (abort(),0) #endif #define PerlIO_importFILE(f,fl) (f) #define PerlIO_exportFILE(f,fl) (f) #define PerlIO_findFILE(f) (f) #define PerlIO_releaseFILE(p,f) ((void) 0) #endif /* ___NWStdio_H___ */