Browse code

이더넷 프레임 출력 함수 구현

Kang IkSeon authored on22/03/2018 09:02:09
Showing1 changed files
... ...
@@ -10,6 +10,8 @@
10 10
 #ifndef SRC_ETHERNET_H_
11 11
 #define SRC_ETHERNET_H_
12 12
 
13
+#include <sys/types.h>
13 14
 
15
+void dump_ethernet_header(const u_char *pkt_data);
14 16
 
15 17
 #endif  // SRC_ETHERNET_H_
Browse code

추가 파일 등록

Kang IkSeon authored on22/03/2018 08:44:41
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,15 @@
1
+/*!
2
+ *  @file    ethernet.h
3
+ *  @author  HiSEON (ikseon@nepirity.com)
4
+ *
5
+ *  @internal
6
+ *       Created:  2018년 03월 22일
7
+ *     Copyright:  Copyright (c) 2018, HiSEON
8
+ */
9
+
10
+#ifndef SRC_ETHERNET_H_
11
+#define SRC_ETHERNET_H_
12
+
13
+
14
+
15
+#endif  // SRC_ETHERNET_H_