Skip to content

Commit fb08f7f

Browse files
committed
[+] init
0 parents  commit fb08f7f

File tree

158 files changed

+4952
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+4952
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ft_nmap
2+
*.o
3+
.objs

Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM debian:8
2+
3+
MAINTAINER <[email protected]>
4+
5+
RUN apt-get update
6+
RUN apt-get install -y build-essential
7+
RUN apt-get install -y traceroute
8+
9+
ADD . /app
10+
WORKDIR /app
11+
12+
RUN cd /app && make fclean && make
13+
14+
ENTRYPOINT ["/app/ft_nmap"]

Dockerfile.dev

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM debian:8
2+
3+
MAINTAINER <[email protected]>
4+
5+
RUN apt-get update
6+
RUN apt-get install -y build-essential
7+
RUN apt-get install -y traceroute
8+
9+
#ADD . /app
10+
#ADD libft /app
11+
#ADD libnetwork /app
12+
WORKDIR /app
13+
14+
VOLUME /app

Makefile

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# **************************************************************************** #
2+
# #
3+
# ::: :::::::: #
4+
# Makefile :+: :+: :+: #
5+
# +:+ +:+ +:+ #
6+
# By: World 42 <[email protected]> +#+ +:+ +#+ #
7+
# +#+#+#+#+#+ +#+ #
8+
# Created: 2014/11/03 14:55:19 by ale-batt #+# #+# #
9+
#* Updated: 2017/03/14 17:55:28 by ale-batt ### ########.fr *#
10+
# #
11+
# **************************************************************************** #
12+
13+
NAME = ft_nmap
14+
15+
C_DIR = sources
16+
O_DIR = .objs/
17+
H_DIRS = includes
18+
19+
LIBFT = ./libft
20+
LIBNETWORK = ./libnetwork
21+
22+
CC = gcc
23+
FLAGS = -Wall -Werror -Wextra
24+
FLAGS += -Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-parameter -Wno-unused-function
25+
26+
C_DIRS = $(shell find $(C_DIR) -type d -follow -print)
27+
C_FILES = $(shell find $(C_DIR) -type f -follow -print | grep ".*\.c$$")
28+
H_FILES = $(shell find includes -type f -follow -print | grep ".*\.h$$")
29+
O_DIRS = $(C_DIRS:$(C_DIR)%=$(O_DIR)%)
30+
O_FILES = $(C_FILES:$(C_DIR)%.c=$(O_DIR)%.o)
31+
32+
# Verbose mode
33+
V = 0
34+
# debug mode
35+
G = 0
36+
37+
LIB += -L$(LIBNETWORK) -lnetwork
38+
LIB += -L$(LIBFT) -lft
39+
40+
INCLUDES = -I./$(H_DIRS) -I$(LIBFT)/includes
41+
INCLUDES += -I$(LIBNETWORK)/includes
42+
43+
C = \033[1;33m
44+
U = $(C)[$(NAME)]----->\033[0m
45+
SKIP = $(SKIP_$(V))
46+
SKIP_1 :=
47+
SKIP_0 := \033[A
48+
W := o
49+
BART := $(shell echo '$(O_FILES)'|wc -w|tr -d ' ')
50+
BARC = $(words $W)$(eval W := o $W)
51+
BAR = $(shell printf "%`expr $(BARC) '*' 100 / $(BART)`s" | tr ' ' '=')
52+
53+
#--------------------------------------------------------------------#
54+
55+
all : $(LIBFT)/libft.a $(LIBNETWORK)/libnetwork.a $(O_DIRS) $(NAME)
56+
57+
$(LIBFT)/libft.a:
58+
@make -C $(LIBFT)
59+
60+
$(LIBNETWORK)/libnetwork.a:
61+
@make -C $(LIBNETWORK)
62+
63+
$(O_DIRS):
64+
@mkdir -p $(O_DIR) $(O_DIRS)
65+
66+
$(NAME) : $(O_FILES)
67+
@echo "$(U)$(C)[COMPILE:\033[1;32m DONE$(C)]"
68+
@echo "$(U)$(C)[BUILD]\033[0;32m"
69+
@$(CC) $(FLAGS) -o $(NAME) $(O_FILES) $(LIB)
70+
@echo "$(SKIP)$(U)$(C)[BUILD :\033[1;32m DONE$(C)]\033[0m\033[K"
71+
72+
$(O_DIR)%.o: $(C_DIR)%.c $(H_FILES)
73+
@echo "$(U)$(C)[COMPILE: \033[1;31m$<\033[A\033[0m"
74+
@echo "\033[0;32m"
75+
@$(CC) $(FLAGS) $(INCLUDES) -c $< -o $@
76+
@printf "\033[1;31m[%-100s] %s%%\n" $(BAR) `echo $W|wc -w|tr -d ' '`
77+
@echo "$(SKIP)\033[A\033[2K$(SKIP)"
78+
79+
clean :
80+
@rm -rf $(O_FILES)
81+
@echo "$(U)$(C)[CLEAN]\033[0;32m"
82+
@echo "$(SKIP)$(U)$(C)[CLEAN:\033[1;32m DONE$(C)]\033[0m"
83+
# @make -C $(LIBFT) clean
84+
@make -C $(LIBNETWORK) clean
85+
86+
fclean : clean
87+
@echo "$(U)$(C)[F-CLEAN]\033[0;32m"
88+
@rm -rf $(NAME)
89+
@echo "$(SKIP)$(U)$(C)[F-CLEAN:\033[1;32m DONE$(C)]\033[0m"
90+
# @make -C $(LIBFT) fclean
91+
@make -C $(LIBNETWORK) fclean
92+
93+
lib :
94+
@make -C $(LIBFT) re
95+
@make -C $(LIBNETWORK) re
96+
97+
re : fclean all
98+
99+
#------------------MY RULES ---------------------------------#
100+
101+
exe : all
102+
@./$(NAME)
103+
norme :
104+
norminette $(SRCS) $(HEADER)
105+
gdb : all
106+
gdb $(NAME)
107+
108+
correc :
109+
cat -e auteur
110+
norminette **/*.[ch]

auteur

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ale-batt

libft/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
libft.a
2+
TAGS
3+
.objs
4+
5+
test/cmocka

libft/.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "test/cmocka"]
2+
path = test/cmocka
3+
url = git://git.cryptomilk.org/projects/cmocka.git

libft/.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: c
2+
3+
compiler: gcc
4+
5+
script:
6+
- make

libft/Makefile

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
# **************************************************************************** #
2+
# #
3+
# ::: :::::::: #
4+
# Makefile :+: :+: :+: #
5+
# +:+ +:+ +:+ #
6+
# By: world42 <[email protected]> +#+ +:+ +#+ #
7+
# +#+#+#+#+#+ +#+ #
8+
# Created: 2013/11/19 13:57:53 by world42 #+# #+# #
9+
#* Updated: 2017/02/21 14:20:46 by ale-batt ### ########.fr *#
10+
# #
11+
# **************************************************************************** #
12+
13+
NNAME = ft
14+
15+
INCLUDE = ./includes
16+
SOURCES = ./sources
17+
OBJECT = ./.objs
18+
19+
TAGS = etags --declarations
20+
CFLAGS = -Wall -Werror -Wextra
21+
# -ansi -pedantic
22+
C = \033[1;34m
23+
24+
# make [[OPT]] [[MODE]=1] ...]
25+
# ex: make re V=1
26+
# Verbose mode
27+
V = 0
28+
# debug mode
29+
G = 0
30+
# create emacs TAGS file
31+
T = 0
32+
# N = 0
33+
34+
SILENCE_1 :=
35+
SILENCE_0 :=@
36+
SKIP_1 :=
37+
SKIP_0 := \033[A
38+
STAT_1 := displaystat
39+
STAT_0 :=
40+
NORC_1 := norme
41+
NORC_0 :=
42+
DEBUG_1 := -g
43+
DEBUG_0 :=
44+
TAG_1 := tag
45+
TAG_0 :=
46+
TAG = $(TAG_$(T))
47+
STAT = $(STAT_$(S))
48+
SKIP = $(SKIP_$(V))
49+
DEBUG = $(DEBUG_$(G))
50+
SILENCE = $(SILENCE_$(V))
51+
NAME = lib$(NNAME).a
52+
CLNAME = l$(NNAME)
53+
CC = $(SILENCE)gcc
54+
LIB = $(SILENCE)ar rc
55+
RM = $(SILENCE)rm -rf
56+
57+
FILES = $(shell find $(SOURCES) -type f -follow | sed "s/.\/[^\/]*//")
58+
59+
OF=$(FILES:%.c=%.o)
60+
O_FILES = $(addprefix $(OBJECT), $(OF))
61+
C_FILES = $(addprefix $(SOURCES), $(FILES))
62+
63+
DIRS = $(shell find $(SOURCES) -type d -follow -print | sed "s/.\/[^\/]*//" | cut -d'/' -f2)
64+
O_DIRS= $(addprefix $(OBJECT)/, $(DIRS))
65+
66+
SRCS = $(shell find $(SOURCES) -type f -follow -exec basename {} \;)
67+
68+
H_FILES = $(shell find $(INCLUDE) -type f -follow -print | grep ".*\.h$$")
69+
70+
W := o
71+
BART := $(shell echo '$(O_FILES)'|wc -w|tr -d ' ')
72+
BARC = $(words $W)$(eval W := o $W)
73+
BAR = $(shell printf "%`expr $(BARC) '*' 100 / $(BART)`s" | tr ' ' '=')
74+
75+
U = $(C)[$(NAME)]----->\033[0m
76+
77+
.PHONY: all clean fclean re tag norme
78+
79+
all: $(O_DIRS) $(NORC) $(NAME) $(STAT) $(TAG)
80+
81+
$(O_DIRS):
82+
@mkdir -p $(OBJECT) $(O_DIRS)
83+
84+
$(NAME): $(O_FILES) $(H_FILES)
85+
@echo "$(U)$(C)[COMPILE:\033[1;32m DONE$(C)]"
86+
@echo "$(U)$(C)[BUILD LIB]\033[0;32m"
87+
@$(LIB) $(NAME) $(O_FILES)
88+
@ranlib $(NAME)
89+
@echo "$(SKIP)$(U)$(C)[BUILD :\033[1;32m DONE$(C)]\033[0m\033[K"
90+
91+
$(OBJECT)/%.o: $(SOURCES)/%.c
92+
@echo "$(U)$(C)[COMPILE: \033[1;31m$<\033[A\033[0m"
93+
@echo "\033[0;32m"
94+
@$(CC) $(DEBUG) $(CFLAGS) -c $< -o $@ -I$(INCLUDE)
95+
@printf "\033[1;31m[%-100s] %s%%\n" $(BAR) `echo $W|wc -w|tr -d ' '`
96+
@echo "$(SKIP)\033[A\033[2K$(SKIP)"
97+
98+
clean:
99+
@echo "$(U)$(C)[CLEAN]\033[0;32m"
100+
$(RM) $(OBJECT)
101+
@echo "$(SKIP)$(U)$(C)[CLEAN:\033[1;32m DONE$(C)]\033[0m"
102+
103+
fclean: clean
104+
@echo "$(U)$(C)[F-CLEAN]\033[0;32m"
105+
$(RM) $(NAME)
106+
@echo "$(SKIP)$(U)$(C)[F-CLEAN:\033[1;32m DONE$(C)]\033[0m"
107+
108+
re: fclean all
109+
110+
tag:
111+
@echo "$(U)$(C)[TAGING]\033[0;32m"
112+
$(SILENCE)$(TAGS) $(C_FILES)
113+
@echo "$(SKIP)$(U)$(C)[TAGING:\033[1;32m DONE$(C)]\033[0m"
114+
115+
norme:
116+
@norminette $(C_FILES) $(H_FILES)

libft/includes/array.h

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* ************************************************************************** */
2+
/* */
3+
/* ::: :::::::: */
4+
/* array.h :+: :+: :+: */
5+
/* +:+ +:+ +:+ */
6+
/* By: world42 <[email protected]> +#+ +:+ +#+ */
7+
/* +#+#+#+#+#+ +#+ */
8+
/* Created: 2016/08/26 13:58:54 by world42 #+# #+# */
9+
/* Updated: 2017/02/07 16:51:05 by ale-batt ### ########.fr */
10+
/* */
11+
/* ************************************************************************** */
12+
13+
#ifndef ARRAY_H
14+
# define ARRAY_H
15+
16+
char **ft_tabcpy(char **src);
17+
char *ft_tabjoin(char **tab);
18+
void ft_tabdel(char ***tab);
19+
int ft_tablen(char **tab);
20+
void ft_freetab(char **tab);
21+
22+
#endif

libft/includes/convert.h

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/* ************************************************************************** */
2+
/* */
3+
/* ::: :::::::: */
4+
/* convert.h :+: :+: :+: */
5+
/* +:+ +:+ +:+ */
6+
/* By: world42 <[email protected]> +#+ +:+ +#+ */
7+
/* +#+#+#+#+#+ +#+ */
8+
/* Created: 2016/08/26 13:58:54 by world42 #+# #+# */
9+
/* Updated: 2016/10/31 18:48:09 by ale-batt ### ########.fr */
10+
/* */
11+
/* ************************************************************************** */
12+
13+
#ifndef CONVERT_H
14+
# define CONVERT_H
15+
16+
int ft_atoi(const char *str);
17+
float ft_atof(const char *str);
18+
char *ft_itoa(int n);
19+
char *ft_tohexa(unsigned long n);
20+
21+
#endif

libft/includes/ctype.h

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/* ************************************************************************** */
2+
/* */
3+
/* ::: :::::::: */
4+
/* ctype.h :+: :+: :+: */
5+
/* +:+ +:+ +:+ */
6+
/* By: world42 <[email protected]> +#+ +:+ +#+ */
7+
/* +#+#+#+#+#+ +#+ */
8+
/* Created: 2016/08/26 13:53:59 by world42 #+# #+# */
9+
/* Updated: 2016/08/26 14:46:32 by ale-batt ### ########.fr */
10+
/* */
11+
/* ************************************************************************** */
12+
13+
#ifndef CTYPE_H
14+
# define CTYPE_H
15+
16+
# define ISLOWER(c) (c >= 'a' && c <= 'z')
17+
# define ISUPPER(c) (c >= 'A' && c <= 'Z')
18+
# define ISDIGIT(c) (c >= '0' && c <= '9')
19+
# define ISALPHA(c) (ISLOWER(c) || ISUPPER(c))
20+
# define SPECIAL_SPACE (c == '\v' || c == '\f' || c == '\r')
21+
22+
int ft_isalnum(int c);
23+
int ft_isalpha(int c);
24+
int ft_isascii(int c);
25+
int ft_isdigit(int c);
26+
int ft_isprint(int c);
27+
int ft_isspace(int c);
28+
int ft_tolower(int c);
29+
int ft_toupper(int c);
30+
31+
#endif

libft/includes/debug.h

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* ************************************************************************** */
2+
/* */
3+
/* ::: :::::::: */
4+
/* ft_debug.h :+: :+: :+: */
5+
/* +:+ +:+ +:+ */
6+
/* By: ale-batt <[email protected]> +#+ +:+ +#+ */
7+
/* +#+#+#+#+#+ +#+ */
8+
/* Created: 2016/01/25 15:49:06 by ale-batt #+# #+# */
9+
/* Updated: 2016/10/26 18:36:08 by ale-batt ### ########.fr */
10+
/* */
11+
/* ************************************************************************** */
12+
13+
#ifndef DEBUG_H
14+
# define DEBUG_H
15+
16+
# define ON 1
17+
# define OFF 0
18+
19+
# define DGB(mode) set_debug_mode(mode);
20+
21+
FILE *g_dbg;
22+
23+
void set_debug_mode(int mode);
24+
void dbg_print(char *str);
25+
26+
#endif

0 commit comments

Comments
 (0)