Редактировать пакет в Scapy

from scapy import *

def chgSend(x):
    x[IP].dst = '192.168.1.1'
    send(x)
while 1:
    sniff(prn=chgSend)
Obnoxious Oystercatcher