mirror of
https://github.com/dndx/phantun.git
synced 2025-04-04 02:59:29 +08:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
869c79422f | ||
|
201da45ee8 | ||
|
333c6dd059 | ||
|
62f0278c1a | ||
|
f436325d23 | ||
|
028a32d197 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
||||
/target
|
||||
Cargo.lock
|
||||
|
1101
Cargo.lock
generated
Normal file
1101
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -35,7 +35,7 @@ Table of Contents
|
||||
|
||||
# Latest release
|
||||
|
||||
[v0.6.0](https://github.com/dndx/phantun/releases/tag/v0.6.0)
|
||||
[v0.7.0](https://github.com/dndx/phantun/releases/tag/v0.7.0)
|
||||
|
||||
# Overview
|
||||
|
||||
@ -262,7 +262,7 @@ is the following (using IPv4 below as an example):
|
||||
Note that Phantun does not add any additional header other than IP and TCP headers in order to pass through
|
||||
stateful packet inspection!
|
||||
|
||||
Phantun's additional overhead: `12 bytes`. I other words, when using Phantun, the usable payload for
|
||||
Phantun's additional overhead: `12 bytes`. In other words, when using Phantun, the usable payload for
|
||||
UDP packet is reduced by 12 bytes. This is the minimum overhead possible when doing such kind
|
||||
of obfuscation.
|
||||
|
||||
|
@ -402,8 +402,8 @@ impl Stack {
|
||||
/// Connects to the remote end. `None` returned means
|
||||
/// the connection attempt failed.
|
||||
pub async fn connect(&mut self, addr: SocketAddr) -> Option<Socket> {
|
||||
let mut rng = SmallRng::from_entropy();
|
||||
for local_port in rng.gen_range(32768..=60999)..=60999 {
|
||||
let mut rng = SmallRng::from_os_rng();
|
||||
for local_port in rng.random_range(32768..=60999)..=60999 {
|
||||
let local_addr = SocketAddr::new(
|
||||
if addr.is_ipv4() {
|
||||
IpAddr::V4(self.local_ip)
|
||||
|
@ -15,7 +15,7 @@ pub enum IPPacket<'p> {
|
||||
V6(ipv6::Ipv6Packet<'p>),
|
||||
}
|
||||
|
||||
impl<'a> IPPacket<'a> {
|
||||
impl IPPacket<'_> {
|
||||
pub fn get_source(&self) -> IpAddr {
|
||||
match self {
|
||||
IPPacket::V4(p) => IpAddr::V4(p.get_source()),
|
||||
|
@ -156,7 +156,8 @@ async fn main() -> io::Result<()> {
|
||||
.up() // or set it up manually using `sudo ip link set <tun-name> up`.
|
||||
.address(tun_local)
|
||||
.destination(tun_peer)
|
||||
.try_build_mq(num_cpus)
|
||||
.queues(num_cpus)
|
||||
.build()
|
||||
.unwrap();
|
||||
|
||||
if remote_addr.is_ipv6() {
|
||||
|
@ -155,7 +155,8 @@ async fn main() -> io::Result<()> {
|
||||
.up() // or set it up manually using `sudo ip link set <tun-name> up`.
|
||||
.address(tun_local)
|
||||
.destination(tun_peer)
|
||||
.try_build_mq(num_cpus)
|
||||
.queues(num_cpus)
|
||||
.build()
|
||||
.unwrap();
|
||||
|
||||
if let (Some(tun_local6), Some(tun_peer6)) = (tun_local6, tun_peer6) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user