create structure of project

This commit is contained in:
2025-09-05 01:33:25 +09:00
parent 4671487a3d
commit 80937b301a
6 changed files with 6 additions and 1 deletions

View File

@@ -4,3 +4,5 @@
pub mod http; pub mod http;
pub mod utils; pub mod utils;
pub mod tcp;
pub mod udp;

0
ubw-sward/src/tcp/ack.rs Normal file
View File

2
ubw-sward/src/tcp/mod.rs Normal file
View File

@@ -0,0 +1,2 @@
pub mod ack;
pub mod syn;

0
ubw-sward/src/tcp/syn.rs Normal file
View File

1
ubw-sward/src/udp/mod.rs Normal file
View File

@@ -0,0 +1 @@
pub mod random_flood;

View File