update to work with libnet-1.0
This commit is contained in:
parent
b191575395
commit
e701ab0bc3
29
net/tcpreplay/patches/patch-ac
Normal file
29
net/tcpreplay/patches/patch-ac
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
--- tcpreplay.c.orig Mon Feb 28 10:51:48 2000
|
||||||
|
+++ tcpreplay.c Mon Feb 28 10:53:18 2000
|
||||||
|
@@ -229,7 +229,7 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
while (write_status < 0) {
|
||||||
|
- write_status = write_link_layer((struct link_int *)user, interface,
|
||||||
|
+ write_status = libnet_write_link_layer((struct libnet_link_int *)user, interface,
|
||||||
|
data,pcap_hdr->caplen);
|
||||||
|
#ifdef DEBUG
|
||||||
|
if (debug > 1) {
|
||||||
|
@@ -255,7 +255,7 @@
|
||||||
|
int main(int argc, char * argv[])
|
||||||
|
{
|
||||||
|
pcap_t * in_file;
|
||||||
|
- struct link_int * write_if;
|
||||||
|
+ struct libnet_link_int * write_if;
|
||||||
|
float Mrate = 0;
|
||||||
|
double starttime_local, startusec;
|
||||||
|
char ebuf[256];
|
||||||
|
@@ -327,7 +327,7 @@
|
||||||
|
failed_writes = 0;
|
||||||
|
pkts_sent = 0;
|
||||||
|
bytes_sent = 0;
|
||||||
|
- write_if = open_link_interface(interface,ebuf);
|
||||||
|
+ write_if = libnet_open_link_interface(interface,ebuf);
|
||||||
|
if (write_if <= 0) {
|
||||||
|
fprintf(stderr, "output i/f: %s\n",ebuf);
|
||||||
|
exit(1);
|
Loading…
Reference in New Issue
Block a user