Skip to content

Instantly share code, notes, and snippets.

View shkwon98's full-sized avatar
💬

avikus-seonghyeon.kwon shkwon98

💬
View GitHub Profile
@gowoonsori
gowoonsori / Makefile
Last active March 26, 2024 05:56
C를 이용한 linux packet capture program (with raw socekt)
CC = gcc
CFLAGS =
CLIBS =
CMDS = captureProgram
all : $(CMDS)
captureProgram : captureProgram.c
$(CC) $(CFLAGS) $^ -o $@ $(CLIBS) -lpthread -W