first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
[pwner.jpg]
faces=rect64(6bca0831aaaa4ccd),ffffffffffffffff
backuphash=9443

View File

@@ -0,0 +1,4 @@
/index.html/1.1/Mon Feb 20 23:01:00 2006//
/makefile/1.1/Mon Feb 20 23:01:00 2006//
/pwner.jpg/1.1/Mon Feb 20 23:01:00 2006/-kb/
D/smallFiles////

View File

@@ -0,0 +1,4 @@
/index.html////*///
/makefile////*///
/pwner.jpg////*///
D/smallFiles///////

View File

@@ -0,0 +1,3 @@
/index.html////*///
/makefile////*///
/pwner.jpg////*///

View File

@@ -0,0 +1,4 @@
/index.html/1.1/Mon Feb 20 23:01:00 2006//
/makefile/1.1/Mon Feb 20 23:01:00 2006//
/pwner.jpg/1.1/Mon Feb 20 23:01:00 2006/-kb/
D

View File

@@ -0,0 +1 @@
CS4210/Project 1/testFiles

View File

@@ -0,0 +1 @@
:ext:asskoala@192.168.0.3:/usr/_CVS

View File

@@ -0,0 +1 @@
<a href=www.google.com>google!</a>

View File

@@ -0,0 +1,37 @@
CC = gcc
OPT = -O2 -fomit-frame-pointer
LIBS = -lpthread
TARGET = l33t_server
MISC = Makefile
INCDIR = src/include
SRCDIR = src
BINDIR = bin
all: $(TARGET)
$(TARGET): $(BINDIR)/parser.o $(BINDIR)/settings.o $(BINDIR)/sync.o $(BINDIR)/thread_pool.o $(BINDIR)/sock_lib.o $(BINDIR)/http.o $(BINDIR)/main.o $(INCDIR)/defs.h
$(CC) $(OPT) $(LIBS) -o $(BINDIR)/$(TARGET) $(BINDIR)/*.o
$(BINDIR)/parser.o: $(INCDIR)/parser.h $(SRCDIR)/parser.c
$(CC) $(OPT) -c -o $(BINDIR)/parser.o $(SRCDIR)/parser.c
$(BINDIR)/settings.o: $(SRCDIR)/settings.c $(INCDIR)/settings.h
$(CC) $(OPT) -c -o $(BINDIR)/settings.o $(SRCDIR)/settings.c
$(BINDIR)/sync.o: $(INCDIR)/sync.h $(SRCDIR)/sync.c
$(CC) $(OPT) -c -o $(BINDIR)/sync.o $(SRCDIR)/sync.c
$(BINDIR)/thread_pool.o: $(INCDIR)/thread_pool.h $(SRCDIR)/thread_pool.c
$(CC) $(OPT) -c -o $(BINDIR)/thread_pool.o $(SRCDIR)/thread_pool.c
$(BINDIR)/sock_lib.o: $(SRCDIR)/sock_lib.c $(INCDIR)/sock_lib.h
$(CC) $(OPT) -c -o $(BINDIR)/sock_lib.o $(SRCDIR)/sock_lib.c
$(BINDIR)/http.o: $(SRCDIR)/http.c $(INCDIR)/http.h
$(CC) $(OPT) -c -o $(BINDIR)/http.o $(SRCDIR)/http.c
$(BINDIR)/main.o: $(SRCDIR)/main.c $(INCDIR)/sock_lib.h $(INCDIR)/parser.h $(INCDIR)/defs.h
$(CC) $(OPT) -c -o $(BINDIR)/main.o $(SRCDIR)/main.c
clean:
rm -f $(BINDIR)/*.o $(BINDIR)/$(TARGET)

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@@ -0,0 +1,3 @@
/index0000.html/1.1/Tue Feb 21 01:09:22 2006//
/makeFiles.sh/1.1/Tue Feb 21 01:18:48 2006//
D

View File

@@ -0,0 +1,2 @@
/index0000.html////*///
/makeFiles.sh////*///

View File

@@ -0,0 +1 @@
CS4210/Project 1/testFiles/smallFiles

View File

@@ -0,0 +1 @@
:ext:asskoala@192.168.0.3:/usr/_CVS

Binary file not shown.

View File

@@ -0,0 +1,9 @@
#!/bin/bash
x=0
while [ $x -lt 1600 ]; do
cp index0000.html index$x.html
x=$(( $x + 1 ));
done