fengbojiang
21cfeb4372
Support extra tcp stacks, rack and bbr.
2021-09-23 15:16:09 +08:00
fengbojiang
a08a136a15
modify licence.
2021-09-18 16:48:25 +08:00
fengbojiang
4093ffd426
Update LICENCE.
2021-09-18 16:05:45 +08:00
fengbojiang
9dcb6a7622
Add lib/ff_subr_epoch.c.
2021-09-18 15:10:42 +08:00
fengbojiang
8fe2bf87f3
FreeBSD13 can simply work.
2021-09-18 14:50:06 +08:00
fengbojiang
63f0426fdf
fix some issues.
2021-09-16 15:30:22 +08:00
orange30
072d103880
lo port is added 127.0.0.1 when freebsd init.
...
Sometimes the application need 127.0.0.1 on lo0 after freebsd inited!
2021-09-09 14:30:13 +08:00
orange30
e3cd75fdea
lo port is added 127.0.0.1 when freebsd init.
...
Sometimes the application need 127.0.0.1 on lo0 after freebsd inited!
2021-09-09 14:30:13 +08:00
fengbojiang
81dd6c7a24
If process_dispatch_ring() has data packet to be processed and it is considered non-idle state.
2021-09-02 12:09:09 +08:00
fengbojiang
0508c8b8ec
The CPU usage of packet_dispatcher() is modified to usr.
2021-09-02 12:04:32 +08:00
fengbojiang
0b4a084c8a
fix a plurality of packets may not statistics in ff_traffic.rx_packets and ff_traffic.rx_bytes.
2021-09-02 11:47:13 +08:00
fengbojiang
e7b7fb6cc9
FreeBSD: Upgrade to FreeBSD-releng-13.0 compiled, to be tested.
2021-08-31 19:00:09 +08:00
fengbojiang
4e3599d820
Support set multi virtual IPv4/IPv6 net addrs in `config.ini`, instead of use `ff_ifconfig`.
...
Close #421 .
2021-06-16 19:26:52 +08:00
fengbojiang
2ea8dd153c
modify pcap config.
2021-06-16 19:06:45 +08:00
Hawker
51108f9c2e
support `IPV6_RECVPKTINFO`
2021-03-06 19:19:03 +08:00
Hawker
d428f7900c
Support IPPROTO_IPV6
...
f-stack中缺乏对`IPPROTO_IPV6`协议相关选项`IPV6_V6ONLY`的支持;无法在ipv6兼容ipv4场景进行网络通信。调用setsockopt时会出现失败。
2021-03-06 19:19:03 +08:00
fengbojiang
7b8cf09355
Support DPDK 20.11.0(LTS).
2021-03-06 19:18:57 +08:00
fengbojiang
4c0b1abdf1
upgrade F-STACK_VERSION to 1.21.
2021-03-06 19:18:57 +08:00
fengbojiang
d96a9d10f4
modify `struct linux_sockaddr` same to `struct sockaddr` in linux.
2021-03-06 19:18:56 +08:00
fengbojiang
527e34d48a
Fix some issues of ff msg.
2021-03-06 19:18:53 +08:00
fengbojiang(姜凤波)
cddb7cd030
Add `ff_regist_pcblddr_fun` to regist a pcb lddr function in F-Stack.
...
If There are multiple ips, and F-Stack client application can choose a source ip by yourself, instead always use the first ip.
2021-03-06 19:18:52 +08:00
zengyi1001
d53ebd8f3c
Add IPv6 net addr parameters in config
...
Co-authored-by: fengbojiang <fengbojiang@tencent.com>
2021-03-06 19:18:52 +08:00
fengbojiang
8fb48d649e
Fix #560 , Wrong msg_flags in struct msghdr after calling ff_recvmsg in a Linux application.
2021-03-06 19:18:52 +08:00
freak82
0816b9cb45
Fix #568 , Insufficient condition in ff_rte_frm_extcl function.
2021-03-06 19:18:52 +08:00
Jianfeng Tan
06c3e57024
fix use after free issue in mbuf free
...
Two kinds of mbuf are used in f-stack: freebsd mbuf and dpdk mbuf.
freebsd mbufs are metadata used in freebsd stack, and their data
pointers (m_data) point to dpdk mbuf's data (buf_addr). And they have
their own chain, like this:
bsd_mbuf1 -> bsd_mbuf2 -> bsd_mbuf3
\ \ \
dpdk_mbuf1 -> dpdk_mbuf2 -> dpdk_mbuf3
Considering the map relationship,
- m_freem() is corresponding to rte_pktmbuf_free(), is to free the whole
chain of mbufs.
- m_free() is corresponding to rte_pktmbuf_free_seg(), is to free the
specified mbuf segment.
The current implementation in f-stack uses rte_pktmbuf_free() for
m_free(). This leads to mbufs, which are still in use, be freed
unexpectedly. For example, if the bsd_mbuf1 is trimed into zero length,
bsd will invoke m_free() to free the specified segment, however, the
whole mbuf chain is freed by calling rte_pktmbuf_free().
#0 rte_pktmbuf_free (m=0x22006fb480)
#1 in ff_dpdk_pktmbuf_free (m=0x22006fb480)
#2 in ff_mbuf_ext_free (m=0x7ffff7f82800, arg1=0x22006fb480, arg2=0x0)
#3 in mb_free_ext (m=0x7ffff7f82800)
#4 in m_free (m=0x7ffff7f82800)
#5 in sbcompress (sb=, m=0x7ffff7f82800, n=)
#6 in sbappendstream_locked (sb=, m=0x7ffff7f82800, flags=0)
The fix is straightforward. Use the correct API for segment free.
Reported-by: Yong-Hao Zou <yonghaoz1994@gmail.com>
Signed-off-by: Jianfeng Tan <henry.tjf@antgroup.com>
2021-03-06 19:18:52 +08:00
Hawker
c0c877b54c
update comments
2021-03-06 19:18:52 +08:00
Hawker
6fb0694d16
update comments
2021-03-06 19:18:52 +08:00
Hawker
dc643060d1
update comments
2021-03-06 19:18:52 +08:00
Hawker
8155960f54
update create_tcp_flow parameter
2021-03-06 19:18:51 +08:00
Hawker
170b9c333f
update init_flow
2021-03-06 19:18:50 +08:00
Hawker
d5f823fe01
Replace deprecated filter api with generic flowapi
2021-03-06 19:18:50 +08:00
fengbojiang
4b7cdbfe03
Fix some issues of ff msg.
2021-03-06 19:04:47 +08:00
fengbojiang
81612f2676
Fix some issues of ff msg.
2021-03-06 19:04:47 +08:00
fengbojiang(姜凤波)
9fc26dbf88
Add `ff_regist_pcblddr_fun` to regist a pcb lddr function in F-Stack.
...
If There are multiple ips, and F-Stack client application can choose a source ip by yourself, instead always use the first ip.
2021-03-06 19:04:46 +08:00
fengbojiang(姜凤波)
1ddd0f0898
Add `ff_regist_pcblddr_fun` to regist a pcb lddr function in F-Stack.
...
If There are multiple ips, and F-Stack client application can choose a source ip by yourself, instead always use the first ip.
2021-03-06 19:04:46 +08:00
zengyi1001
25867c09cb
Add IPv6 net addr parameters in config
...
Co-authored-by: fengbojiang <fengbojiang@tencent.com>
2021-03-06 19:04:46 +08:00
zengyi1001
0f2a196b68
Add IPv6 net addr parameters in config
...
Co-authored-by: fengbojiang <fengbojiang@tencent.com>
2021-03-06 19:04:46 +08:00
fengbojiang
f69aa4778c
Fix #560 , Wrong msg_flags in struct msghdr after calling ff_recvmsg in a Linux application.
2021-03-06 19:04:46 +08:00
fengbojiang
6798bf3e3d
Fix #560 , Wrong msg_flags in struct msghdr after calling ff_recvmsg in a Linux application.
2021-03-06 19:04:46 +08:00
freak82
f39eac0056
Fix #568 , Insufficient condition in ff_rte_frm_extcl function.
2021-03-06 19:04:46 +08:00
freak82
7817f2be74
Fix #568 , Insufficient condition in ff_rte_frm_extcl function.
2021-03-06 19:04:46 +08:00
Jianfeng Tan
e6161e2b0f
fix use after free issue in mbuf free
...
Two kinds of mbuf are used in f-stack: freebsd mbuf and dpdk mbuf.
freebsd mbufs are metadata used in freebsd stack, and their data
pointers (m_data) point to dpdk mbuf's data (buf_addr). And they have
their own chain, like this:
bsd_mbuf1 -> bsd_mbuf2 -> bsd_mbuf3
\ \ \
dpdk_mbuf1 -> dpdk_mbuf2 -> dpdk_mbuf3
Considering the map relationship,
- m_freem() is corresponding to rte_pktmbuf_free(), is to free the whole
chain of mbufs.
- m_free() is corresponding to rte_pktmbuf_free_seg(), is to free the
specified mbuf segment.
The current implementation in f-stack uses rte_pktmbuf_free() for
m_free(). This leads to mbufs, which are still in use, be freed
unexpectedly. For example, if the bsd_mbuf1 is trimed into zero length,
bsd will invoke m_free() to free the specified segment, however, the
whole mbuf chain is freed by calling rte_pktmbuf_free().
#0 rte_pktmbuf_free (m=0x22006fb480)
#1 in ff_dpdk_pktmbuf_free (m=0x22006fb480)
#2 in ff_mbuf_ext_free (m=0x7ffff7f82800, arg1=0x22006fb480, arg2=0x0)
#3 in mb_free_ext (m=0x7ffff7f82800)
#4 in m_free (m=0x7ffff7f82800)
#5 in sbcompress (sb=, m=0x7ffff7f82800, n=)
#6 in sbappendstream_locked (sb=, m=0x7ffff7f82800, flags=0)
The fix is straightforward. Use the correct API for segment free.
Reported-by: Yong-Hao Zou <yonghaoz1994@gmail.com>
Signed-off-by: Jianfeng Tan <henry.tjf@antgroup.com>
2021-03-06 19:04:46 +08:00
Jianfeng Tan
84456118c7
fix use after free issue in mbuf free
...
Two kinds of mbuf are used in f-stack: freebsd mbuf and dpdk mbuf.
freebsd mbufs are metadata used in freebsd stack, and their data
pointers (m_data) point to dpdk mbuf's data (buf_addr). And they have
their own chain, like this:
bsd_mbuf1 -> bsd_mbuf2 -> bsd_mbuf3
\ \ \
dpdk_mbuf1 -> dpdk_mbuf2 -> dpdk_mbuf3
Considering the map relationship,
- m_freem() is corresponding to rte_pktmbuf_free(), is to free the whole
chain of mbufs.
- m_free() is corresponding to rte_pktmbuf_free_seg(), is to free the
specified mbuf segment.
The current implementation in f-stack uses rte_pktmbuf_free() for
m_free(). This leads to mbufs, which are still in use, be freed
unexpectedly. For example, if the bsd_mbuf1 is trimed into zero length,
bsd will invoke m_free() to free the specified segment, however, the
whole mbuf chain is freed by calling rte_pktmbuf_free().
#0 rte_pktmbuf_free (m=0x22006fb480)
#1 in ff_dpdk_pktmbuf_free (m=0x22006fb480)
#2 in ff_mbuf_ext_free (m=0x7ffff7f82800, arg1=0x22006fb480, arg2=0x0)
#3 in mb_free_ext (m=0x7ffff7f82800)
#4 in m_free (m=0x7ffff7f82800)
#5 in sbcompress (sb=, m=0x7ffff7f82800, n=)
#6 in sbappendstream_locked (sb=, m=0x7ffff7f82800, flags=0)
The fix is straightforward. Use the correct API for segment free.
Reported-by: Yong-Hao Zou <yonghaoz1994@gmail.com>
Signed-off-by: Jianfeng Tan <henry.tjf@antgroup.com>
2021-03-06 19:04:46 +08:00
Hawker
fc7cff57bb
update comments
2021-03-06 19:04:46 +08:00
Hawker
76f39db167
update comments
2021-03-06 19:04:46 +08:00
Hawker
663e85b1d7
update comments
2021-03-06 19:04:46 +08:00
Hawker
c2cb022c64
update comments
2021-03-06 19:04:46 +08:00
Hawker
cb0cb8ee1f
update comments
2021-03-06 19:04:45 +08:00
Hawker
d957b83157
update comments
2021-03-06 19:04:45 +08:00
Hawker
c0e965e941
update create_tcp_flow parameter
2021-03-06 19:04:45 +08:00
Hawker
cd0965ba8a
update init_flow
2021-03-06 19:04:45 +08:00
Hawker
900256fd7d
update create_tcp_flow parameter
2021-03-06 19:04:45 +08:00
Hawker
be1c8e2e75
Replace deprecated filter api with generic flowapi
2021-03-06 19:04:45 +08:00
Hawker
fc73e3a9a4
update init_flow
2021-03-06 19:04:45 +08:00
Hawker
6c89f403ee
Replace deprecated filter api with generic flowapi
2021-03-06 19:04:45 +08:00
Hawker
55151ab9d2
Bugfix: support rte_flow_isolate for multi lcore ( #562 )
...
* Bugfix: support rte_flow_isolate
init flow isolate mode only run once
2020-11-25 11:31:04 +08:00
Hawker
2474e16370
Bugfix: support rte_flow_isolate for multi lcore ( #562 )
...
* Bugfix: support rte_flow_isolate
init flow isolate mode only run once
2020-11-25 11:31:04 +08:00
fengbojiang
62653ab1a5
Fix bug of `sysctl` in tools/compat/sysctl.c.
...
The ff msg shouldn't to free while `ff_ipc_send` success but `ff_ipc_recv` failed (such as F-Stack app are breaking by gdb).
2020-11-21 21:27:55 +08:00
fengbojiang
32ff8fda83
Fix bug of `sysctl` in tools/compat/sysctl.c.
...
The ff msg shouldn't to free while `ff_ipc_send` success but `ff_ipc_recv` failed (such as F-Stack app are breaking by gdb).
2020-11-21 21:27:55 +08:00
zhangxiang10
eff1a060f0
解析file_prefix&pci-whitelist配置
2020-11-17 19:19:19 +08:00
zhangxiang10
199154d90d
解析file_prefix&pci-whitelist配置
2020-11-17 19:19:19 +08:00
zhangxiang10
c661338e72
解析file_prefix&pci-whitelist配置
2020-11-17 19:04:23 +08:00
zhangxiang10
838bd0fa9c
解析file_prefix&pci-whitelist配置
2020-11-17 19:04:23 +08:00
fengbojiang
3a84cd1fec
User APP can use AF_INET6/PF_INET6 directly whether call ff socket or linux API, such as inet_ntoa/inet_aton.
2020-09-03 01:35:22 +08:00
fengbojiang
8d21adc4b7
User APP can use AF_INET6/PF_INET6 directly whether call ff socket or linux API, such as inet_ntoa/inet_aton.
2020-09-03 01:35:22 +08:00
fengbojiang
1b5649a396
Add configuration options `symmetric_rss` to set whether to use symmetric RSS.
2020-08-30 00:55:08 +08:00
fengbojiang
f41205e9f3
Add configuration options `symmetric_rss` to set whether to use symmetric RSS.
2020-08-30 00:55:08 +08:00
fengbojiang(姜凤波)
56101252f6
upgrade F-STACK_VERSION to 1.21.
2020-06-19 10:54:34 +08:00
fengbojiang(姜凤波)
591a17d568
upgrade F-STACK_VERSION to 1.21.
2020-06-19 10:54:34 +08:00
johnjiang
37a7c72f09
DPDK: upgrade to DPDK 19.11.2(LTS).
2020-06-18 16:55:50 +00:00
johnjiang
4418919fe2
DPDK: upgrade to DPDK 19.11.2(LTS).
2020-06-18 16:55:50 +00:00
johnjiang
e27c5f4e3a
Merge branch 'dev' into feature-knictl
2020-05-21 10:56:12 +08:00
johnjiang
632c79327e
Merge branch 'dev' into feature-knictl
2020-05-21 10:56:12 +08:00
pengtian
0b1e7c031e
#add knictl support
2020-05-14 18:30:34 +08:00
pengtian
47507c1510
#add knictl support
2020-05-14 18:30:34 +08:00
johnjiang
53638472c1
Merge pull request #475 from jinhao2/dev
...
modify dump codes.
2020-01-10 14:36:47 +08:00
johnjiang
4ad0b6400b
Merge pull request #475 from jinhao2/dev
...
modify dump codes.
2020-01-10 14:36:47 +08:00
rolfliu
37720803e1
Fix #43 #434 for Nginx transparent proxy
2020-01-10 14:26:02 +08:00
rolfliu
851ac5c081
Fix #43 #434 for Nginx transparent proxy
2020-01-10 14:26:02 +08:00
jinhao2
cd5b4948de
update ff_dump_packets
2020-01-08 21:23:33 +08:00
jinhao2
e18b415d94
update ff_dump_packets
2020-01-08 21:23:33 +08:00
jinhao2
80d23aa1da
update indent size
2020-01-08 21:13:12 +08:00
jinhao2
4dfcdbcc8d
update indent size
2020-01-08 21:13:12 +08:00
jin.hao1
a2728d1e67
Update ff_config.h
...
use 4 spaces indent.
2020-01-07 21:10:08 +08:00
jin.hao1
4b75b83d36
Update ff_config.h
...
use 4 spaces indent.
2020-01-07 21:10:08 +08:00
jin.hao1
6d051c0454
update config.c
...
use 4 space other than tab.
2020-01-07 21:04:17 +08:00
jinhao2
ce40395e0c
dump packets by core, instead of by ports;without fopen/fclose while dumping
2020-01-08 12:09:40 +08:00
jin.hao1
bb6dcc1c33
update config.c
...
use 4 space other than tab.
2020-01-07 21:04:17 +08:00
jinhao2
819aafb684
dump packets by core, instead of by ports;without fopen/fclose while dumping
2020-01-08 12:09:40 +08:00
fengbojiang
f67a26a199
Add `ip6_fastfwd.c` in `Makefile`.
2019-11-23 11:40:18 +08:00
fengbojiang
7b0de5a004
Add `ip6_fastfwd.c` in `Makefile`.
2019-11-23 11:40:18 +08:00
Jayath Sathyanarayana
316f2a31b4
Merge patch of Configuration param to skip "TX checksum offload", refer #448 .
2019-11-04 13:10:27 +08:00
Jayath Sathyanarayana
3a3642c7f7
Merge patch of Configuration param to skip "TX checksum offload", refer #448 .
2019-11-04 13:10:27 +08:00
fengbojiang
86cd82dc87
SOCKET: support `SO_REUSEPORT`.
2019-11-04 10:44:07 +08:00
fengbojiang
7f7be099b6
SOCKET: support `SO_REUSEPORT`.
2019-11-04 10:44:07 +08:00
fengbojiang(姜凤波)
b99e7124e8
Fixed #426 , F-stack compile error in Red Hat 8.0 with gcc 8.2.1.
2019-10-31 15:58:26 +08:00
fengbojiang(姜凤波)
b8b4b7b9d7
Fixed #426 , F-stack compile error in Red Hat 8.0 with gcc 8.2.1.
2019-10-31 15:58:26 +08:00
fengbojiang(姜凤波)
7abbdf7aa5
Fix crash of `netstat -n`, refer #438 .
2019-10-29 15:31:14 +08:00
fengbojiang(姜凤波)
73e135b80c
Fix crash of `netstat -n`, refer #438 .
2019-10-29 15:31:14 +08:00
johnjiang
a36df1e44e
Merge pull request #441 from open-estuary/dev
...
lib/ff_config.c : Fix data overflow in more than 64 cores
2019-10-24 20:58:16 +08:00
johnjiang
59e841c5a2
Merge pull request #441 from open-estuary/dev
...
lib/ff_config.c : Fix data overflow in more than 64 cores
2019-10-24 20:58:16 +08:00
beard-627
868cca5674
lib/ff_config.c
2019-09-18 17:01:54 +08:00
beard-627
813e23e238
lib/ff_config.c
2019-09-18 17:01:54 +08:00
fengbojiang(姜凤波)
d39775a93b
Fix mac set bug.
2019-09-04 21:37:56 +08:00
fengbojiang(姜凤波)
c9b3c75a23
Fix mac set bug.
2019-09-04 21:37:56 +08:00
fengbojiang(姜凤波)
5fbf4a15eb
Bonding: supported. but it can't work in multi-processes, to be fix.
2019-09-04 21:17:10 +08:00
fengbojiang(姜凤波)
c0f666848d
Bonding: supported. but it can't work in multi-processes, to be fix.
2019-09-04 21:17:10 +08:00
fengbojiang(姜凤波)
1e14958312
packet_dispatcher support vlan.
2019-08-06 22:19:12 +08:00
fengbojiang(姜凤波)
aa18b738d4
packet_dispatcher support vlan.
2019-08-06 22:19:12 +08:00
fengbojiang(姜凤波)
19dac219c8
Merge branch 'master' into dev
...
Fix bug of kni while set `vlan_strip=0`.
2019-08-06 22:11:54 +08:00
fengbojiang(姜凤波)
67c27ffe02
Merge branch 'master' into dev
...
Fix bug of kni while set `vlan_strip=0`.
2019-08-06 22:11:54 +08:00
fengbojiang(姜凤波)
a20fd2ae31
Fix bug of kni while set `vlan_strip=0`.
2019-08-06 22:05:27 +08:00
fengbojiang(姜凤波)
3bb4314f74
Fix bug of kni while set `vlan_strip=0`.
2019-08-06 22:05:27 +08:00
root
7a9cdd23b7
KNI: remove the feature of monitor port's link status.
...
And if you want to use kni, you should do one of two action:
1. `insmod rte_kni.ko carrier=on` while init dpdk running environment.
2. or run `echo 1 > /sys/class/net/veth0/carrier` after enable veth0 up.
Refer #401 , but this is not the real reason of #401 , it is the DPDK's ENA driver can't work correctly in multi-processes.
2019-07-29 13:38:10 +00:00
root
3f18f1a26a
KNI: remove the feature of monitor port's link status.
...
And if you want to use kni, you should do one of two action:
1. `insmod rte_kni.ko carrier=on` while init dpdk running environment.
2. or run `echo 1 > /sys/class/net/veth0/carrier` after enable veth0 up.
Refer #401 , but this is not the real reason of #401 , it is the DPDK's ENA driver can't work correctly in multi-processes.
2019-07-29 13:38:10 +00:00
fengbojiang(姜凤波)
1068dedc41
Modified vlan code.
2019-07-29 15:29:24 +08:00
fengbojiang(姜凤波)
a08b952138
Modified vlan code.
2019-07-29 15:29:24 +08:00
HongBo Long
86d95e99f0
set freebsd mbuf vlan information when the vlan_strip is enable && get ether_type error when the vlan_strip is disabled
2019-07-29 15:27:40 +08:00
HongBo Long
f66f945850
set freebsd mbuf vlan information when the vlan_strip is enable && get ether_type error when the vlan_strip is disabled
2019-07-29 15:27:40 +08:00
fengbojiang(姜凤波)
c6dae7f8fe
Merge branch 'master' into dev
...
vlan bug fix
2019-07-29 15:08:46 +08:00
fengbojiang(姜凤波)
faeec574ca
Merge branch 'master' into dev
...
vlan bug fix
2019-07-29 15:08:46 +08:00
fengbojiang(姜凤波)
ab2d620de6
Modified vlan code.
2019-07-29 14:47:11 +08:00
fengbojiang(姜凤波)
00c65d220e
Modified vlan code.
2019-07-29 14:47:11 +08:00
johnjiang
8eb6d4d5ae
Merge pull request #403 from dragonorloong/master
...
vlan buf fix
2019-07-29 14:31:51 +08:00
johnjiang
bae15df596
Merge pull request #403 from dragonorloong/master
...
vlan buf fix
2019-07-29 14:31:51 +08:00
johnjiang
185c857ebb
Merge pull request #414 from jinhao2/dev
...
support more than 32 processes; support 52bytes rsskey; compile failed.
2019-07-29 13:58:21 +08:00
johnjiang
2479a83f3c
Merge pull request #414 from jinhao2/dev
...
support more than 32 processes; support 52bytes rsskey; compile failed.
2019-07-29 13:58:21 +08:00
jin.hao1
fd7b974f08
Update ff_dpdk_if.c
...
update codes.
2019-07-29 08:43:45 +08:00
jin.hao1
b467d9c428
Update ff_dpdk_if.c
...
update codes.
2019-07-29 08:43:45 +08:00
jin.hao1
a6e2dd0ebd
Update ff_dpdk_if.c
...
code aligned.
2019-07-29 08:42:28 +08:00
jin.hao1
fa32b23ec3
Update ff_dpdk_if.c
...
code aligned.
2019-07-29 08:42:28 +08:00
fengbojiang(姜凤波)
7e4b7a1537
Merge branch 'master' into dev
2019-07-26 17:37:02 +08:00
fengbojiang(姜凤波)
86a4dcb0fe
Merge branch 'master' into dev
2019-07-26 17:37:02 +08:00
10077240
58f65b59d5
fix bug: Can not support more than 32 processes
2019-07-26 16:52:57 +08:00
10077240
78415de5a0
fix bug: Can not support more than 32 processes
2019-07-26 16:52:57 +08:00
fengbojiang
cea0be3c81
Tools: update top.
2019-07-25 22:33:42 +08:00
fengbojiang
0f5432bb05
Tools: update top.
2019-07-25 22:33:42 +08:00
fengbojiang(姜凤波)
a8ea1bed90
Tools: All tools can work in parallel now.
2019-07-25 17:19:28 +08:00
fengbojiang(姜凤波)
6194fcd20a
Tools: All tools can work in parallel now.
2019-07-25 17:19:28 +08:00
10077240
c005dd8b8e
support more than 32 processes; support 52bytes rsskey; compile failed.
2019-07-25 11:27:30 +08:00
10077240
34e766d2b6
support more than 32 processes; support 52bytes rsskey; compile failed.
2019-07-25 11:27:30 +08:00
fengbojiang(姜凤波)
7cb21a2b2b
IPv6: support multi-processes, deep copy NDP packet and dispatch.
2019-07-17 17:31:47 +08:00
fengbojiang(姜凤波)
10b909a1b3
IPv6: support multi-processes, deep copy NDP packet and dispatch.
2019-07-17 17:31:47 +08:00
root
c84854ee3b
IPv6: `netstat` tool support ipv6.
2019-07-15 21:04:09 +08:00
root
ca915d33ee
IPv6: `netstat` tool support ipv6.
2019-07-15 21:04:09 +08:00
root
3f2c0f7483
Always define FF_IOCTL6, because `top` and other tools not distinguish between inet or inet6
2019-07-15 20:02:58 +08:00
root
5f5ff92287
Always define FF_IOCTL6, because `top` and other tools not distinguish between inet or inet6
2019-07-15 20:02:58 +08:00
root
e49450aae1
Fix define PF_INET6_LINUX
2019-07-15 17:22:15 +08:00
root
9e60a85fe5
Fix define PF_INET6_LINUX
2019-07-15 17:22:15 +08:00
fengbojiang(姜凤波)
e499fe2b2a
Merge branch 'dev' of https://github.com/F-Stack/f-stack into dev
2019-07-12 20:58:31 +08:00