mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-01-19 14:29:34 +08:00
added function from_addres_t()
This commit is contained in:
parent
6ccd056d41
commit
2dc0670266
17
common.cpp
17
common.cpp
@ -299,6 +299,23 @@ char * my_ip_t::get_str2() const
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
int my_ip_t::from_address_t(address_t tmp_addr)
|
||||
{
|
||||
if(tmp_addr.get_type()==raw_ip_version&&raw_ip_version==AF_INET)
|
||||
{
|
||||
v4=tmp_addr.inner.ipv4.sin_addr.s_addr;
|
||||
}
|
||||
else if(tmp_addr.get_type()==raw_ip_version&&raw_ip_version==AF_INET6)
|
||||
{
|
||||
v6=tmp_addr.inner.ipv6.sin6_addr;
|
||||
}
|
||||
else
|
||||
{
|
||||
assert(0==1);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
int my_ip_t::from_str(char * str)
|
||||
{
|
||||
|
2
common.h
2
common.h
@ -248,6 +248,8 @@ union my_ip_t //just a simple version of address_t,stores ip only
|
||||
char * get_str1() const;
|
||||
char * get_str2() const;
|
||||
|
||||
int from_address_t(address_t a);
|
||||
|
||||
};
|
||||
|
||||
struct not_copy_able_t
|
||||
|
26
main.cpp
26
main.cpp
@ -81,18 +81,7 @@ int client_on_timer(conn_info_t &conn_info) //for client. called when a timer is
|
||||
tmp_addr=source_addr;
|
||||
}
|
||||
|
||||
if(tmp_addr.get_type()==raw_ip_version&&raw_ip_version==AF_INET)
|
||||
{
|
||||
send_info.new_src_ip.v4=tmp_addr.inner.ipv4.sin_addr.s_addr;
|
||||
}
|
||||
else if(tmp_addr.get_type()==raw_ip_version&&raw_ip_version==AF_INET6)
|
||||
{
|
||||
send_info.new_src_ip.v6=tmp_addr.inner.ipv6.sin6_addr;
|
||||
}
|
||||
else
|
||||
{
|
||||
assert(0==1);
|
||||
}
|
||||
send_info.new_src_ip.from_address_t(tmp_addr);
|
||||
|
||||
if (force_source_port == 0)
|
||||
{
|
||||
@ -1390,18 +1379,7 @@ int client_event_loop()
|
||||
|
||||
//init_filter(source_port);
|
||||
|
||||
if(remote_addr.get_type()==raw_ip_version&&raw_ip_version==AF_INET)
|
||||
{
|
||||
send_info.new_dst_ip.v4=remote_addr.inner.ipv4.sin_addr.s_addr;
|
||||
}
|
||||
else if(remote_addr.get_type()==raw_ip_version&&raw_ip_version==AF_INET6)
|
||||
{
|
||||
send_info.new_dst_ip.v6=remote_addr.inner.ipv6.sin6_addr;
|
||||
}
|
||||
else
|
||||
{
|
||||
assert(0==1);
|
||||
}
|
||||
send_info.new_dst_ip.from_address_t(remote_addr);
|
||||
|
||||
send_info.dst_port=remote_addr.get_port();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user