How to real time convert wireless packet(802.11) to Ethernet packet(802.3) in windows?
I'm receive wireless packet with Wireless Lan.
I w开发者_如何学编程ant forward this packet to Ethernet.
Can i do this work?
You're trying to do network bridging. Windows has this support built in starting with XP. This will make your computer into a very expensive two port Ethernet switch (where the wireless link is a port).
If you want to do some more fancy filtering, I suggest using a TUN/TAP driver or pcap
/WinPCAP, which will allow you to receive raw frames.
精彩评论