代码搜索:httpd

找到约 3,603 项符合「httpd」的源代码

代码结果 3,603
www.eeworm.com/read/113479/15455250

h apache_gsoap.h

/** Interface between the apache http - server (http://httpd.apache.org) and the gsoap SOAP stack (http://www.cs.fsu.edu/~engelen/soap.html) * @file apache_gsoap.h */ #ifndef _APACHE_GSOAP_H_INC
www.eeworm.com/read/113479/15455251

c mod_gsoap.c

/** Apache SOAP module for Foto Upload * @file mod_gsoap.c * @author Christian Aberger (http://www.aberger.at) */ #include #include #include #include "httpd.h" #inclu
www.eeworm.com/read/113479/15455268

h apache_gsoap.h

/** Interface between the apache http - server (http://httpd.apache.org) and the gsoap SOAP stack (http://www.cs.fsu.edu/~engelen/soap.html) * @file apache_gsoap.h */ #ifndef _APACHE_GSOAP_H_INC
www.eeworm.com/read/372395/9511543

c openfuckv2.c

/* * OF version r00t VERY PRIV8 spabam * Compile with: gcc -o OpenFuck OpenFuck.c -lcrypto * objdump -R /usr/sbin/httpd|grep free to get more targets * #hackarena irc.brasnet.org */ #include
www.eeworm.com/read/137311/5825844

makefile

include $(APPS)/Rules.elinux INSTDIR = $(prefix)/etc/httpd/conf OWN = -o root -g root install: $(INSTALL) $(OWN) -m 0644 boa.conf $(INSTDIR)/boa.conf $(INSTALL) $(OWN) -m 0644 mime.types $(INSTDI
www.eeworm.com/read/346656/11733894

cgi shadow_text.cgi

#!/usr/bin/perl -w use strict; use CGI; use Image::Magick; use constant FONTS_DIR => "/usr/local/httpd/fonts"; my $q = new CGI; my $font = $q->param( "font" ) || 'cetus'; my $size = $q->
www.eeworm.com/read/209211/4981622

c emem.c

#include #include #include "httpd.h" void* ezalloc(ulong n) { void *p; p = malloc(n); if(p == nil) sysfatal("out of memory"); memset(p, 0, n); return p; } char* estrdup(char *
www.eeworm.com/read/209211/4981627

c hints.c

#include #include #include #include "httpd.h" #include "httpsrv.h" enum{ URLmax = 65536, HINTmax = 20 }; #define RECIPLOG2 1.44269504089 char **urlname; /* array of url str
www.eeworm.com/read/209211/4981630

c authorize.c

#include #include #include #include "httpd.h" #include "httpsrv.h" static char* readfile(char*); /* * these should be done better; see the reponse codes in /lib/rfc/rfc2616
www.eeworm.com/read/209211/4981636

c redirect.c

#include #include #include #include "httpd.h" #include "httpsrv.h" enum { HASHSIZE = 1019, }; typedef struct Redir Redir; struct Redir { Redir *next; char *pat; char *repl