- 论坛徽章:
- 0
|
this is a simple web server code wrote by me.. it may has some incorrect.
hope boss can tell me how to improve.
char in array or pointer problem confused me..
had tested in os x 10.5.2
:wink:
:wink: :wink:
- #ifndef _SERVER_C_
- #define _SERVER_C_
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/socket.h>
- #include <arpa/inet.h>
- int port = 8080;
- int backlog = 10;
- struct request
- {
- char *fullpath;
- char *last_modified;
- char *content_type;
- };
- int main( void )
- {
- int sockfd;
- if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
- {
- printf("Error create main socket!\n");
- return -1;
- }
-
- struct sockaddr_in addr;
- memset(&addr, 0, sizeof(struct sockaddr_in));
- addr.sin_family = AF_INET;
- addr.sin_port = htons(port);
- addr.sin_addr.s_addr = INADDR_ANY;
- if (bind(sockfd, (struct sockaddr *)&addr, (socklen_t)sizeof(addr)) == -1)
- {
- printf("Error to bind address!\n");
- return -1;
- }
-
- if (listen(sockfd, backlog) == -1)
- {
- printf("Error to listen on port %d\n", port);
- return -1;
- }
-
-
- int newfd;
- struct sockaddr_in remote_addr;
- socklen_t remote_sinsize;
- while (1)
- {
- if ((newfd = accept(sockfd, (struct sockaddr *)&remote_addr, &remote_sinsize)) == -1)
- {
- printf("Error to accept new connection.\n");
- continue;
- }
-
- int rv;
- char buf[2048];
- char *request = NULL;
- if ((rv = recv(newfd, buf, sizeof(buf), 0)) < 0)
- {
- printf("recv error!\n");
- }
-
- int c;
- for (c=0; c < rv; c++)
- {
- if (buf[c] == '\n')
- {
- buf[c] = '\0';
- }
-
- if (c > 1 && buf[c-1] == '\r')
- {
- buf[c-1] = '\0';
- request = buf;
- break;
- }
- }
-
- //printf("%s\n", request);
-
- char uri[1024];
- char fullpath[2048] = "/Users/jimmyfan/Sites";
-
- sscanf(buf, "%*s %s %*s", uri);
- for (c=0; c < sizeof(uri); c++)
- {
- if (uri[c] == '/' && uri[c+1] == '\0')
- {
- strncat(uri, "index.html", sizeof(uri));
- }
- }
- //printf("%s\n", uri);
- strncat(fullpath, uri, sizeof(fullpath));
- //printf("%s\n", fullpath);
-
- char *out;
- struct stat filebuf;
-
- if (lstat(fullpath, &filebuf) < 0)
- {
- printf("lstat error\n");
- out = "HTTP/1.0 404 File Not Found\r\n";
- send(newfd, out, strlen(out), 0);
- close(newfd);
- continue;
- }
- else if (!S_ISREG(filebuf.st_mode))
- {
- out = "HTTP/1.0 404 File Not Found\r\n";
- send(newfd, out, strlen(out), 0);
- close(newfd);
- continue;
- }
-
- out = "HTTP/1.0 200 OK\r\n";
- send(newfd, out, strlen(out), 0);
- out = "Server: J/1.23\r\n";
- send(newfd, out, strlen(out), 0);
- printf("%s\n", fullpath);
- for (c=strlen(fullpath); c > 0; c--)
- {
- if (fullpath[c] == ".")
- {
- fullpath++;
- if (strcasecmp(fullpath, "html") == 0)
- {
- out = "Content-Type: text/html\r\n\r\n";
- break;
- }
- if (strcasecmp(fullpath, "jpg") == 0)
- {
- out = "Content-Type: image/jpeg\r\n\r\n";
- break;
- }
- }
- }
- printf("%s\n", out);
- send(newfd, out, strlen(out), 0);
-
- char outb[2048];
- FILE *fp;
- fp = open(fullpath, O_RDONLY);
-
- while ((rv = read(fp, outb, sizeof(outb))) > 0)
- {
- send(newfd, outb, rv, 0);
- }
- close(fp);
-
- close(newfd);
- }
- return 0;
- }
- #endif /* _SERVER_C_ */
复制代码 |
|