Show
Ignore:
Timestamp:
04/02/07 09:44:50 (22 months ago)
Author:
aturner
Message:

optionally use libtcpedit with tcpreplay by specifying --enable-tcpreplay-edit
refs #61

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/common/sendpacket.c

    r1781 r1786  
    261261 
    262262sendpacket_t * 
    263 sendpacket_open(const char *device, char *errbuf) 
     263sendpacket_open(const char *device, char *errbuf, tcpr_dir_t direction) 
    264264{ 
    265265    sendpacket_t *sp; 
     
    279279    if (sp != NULL) 
    280280        sp->open = 1; 
     281    sp->cache_dir = direction; 
    281282    return sp; 
    282283}