8 lines
146 B
Python
8 lines
146 B
Python
|
#! /usr/bin/python
|
||
|
import packet_processer, reporter
|
||
|
|
||
|
def main():
|
||
|
packet_processer.sniff("walfa0", 200)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|