代码搜索:web 开发教程
找到约 10,000 项符合「web 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/131105/14161032
gif web_16.gif
www.eeworm.com/read/131105/14161047
gif web_16.gif
www.eeworm.com/read/131105/14161063
gif web_16.gif
www.eeworm.com/read/131105/14161082
gif web_16.gif
www.eeworm.com/read/130525/14188406
c web_egi.c
/* Web Server with Embedded Gateway Interface for 'TCP/IP Lean'
(c) Iosoft Ltd. 2000
This software is only licensed for distribution with the book 'TCP/IP Lean',
and may only be used for person
www.eeworm.com/read/130525/14188446
h web_egi.h
/* Embedded Gateway Interface definitions for 'Creating TCP/IP from scratch' */
/* HTTP and HTML text */
#define HTTP_OK "HTTP/1.0 200 OK\r\n"
#define HTTP_NOFILE "HTTP/1.0 404 Not found\r\n"
www.eeworm.com/read/129891/14218886
c web02.c
/* Doesn't work right. Main thread sucks up all the CPU time polling unless
we call thr_yield(). */
#include "unpthread.h"
#include /* Solaris threads */
#define MAXFILES 20
#define S
www.eeworm.com/read/129891/14218887
c web01.c
/* include web1 */
#include "unpthread.h"
#include /* Solaris threads */
#define MAXFILES 20
#define SERV "80" /* port number or service name */
struct file {
char *f_name; /* filen
www.eeworm.com/read/129891/14218889
c web03.c
#include "unpthread.h"
#include /* Solaris threads */
#define MAXFILES 20
#define SERV "80" /* port number or service name */
struct file {
char *f_name; /* filename */
char *f_ho
www.eeworm.com/read/129891/14219218
c web_child.c
#include "unp.h"
#define MAXN 16384 /* max #bytes that a client can request */
void
web_child(int sockfd)
{
int ntowrite;
ssize_t nread;
char line[MAXLINE], result[MAXN];
for ( ; ; ) {
i