~ubuntu-branches/ubuntu/natty/iptraf/natty-proposed

« back to all changes in this revision

Viewing changes to src/fltedit.h

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2006-10-15 13:34:14 UTC
  • mfrom: (1.1.2 upstream) (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20061015133414-77itbhydih1z3amr
* Sync with Ubuntu fixes (by Oliver Grawert and Michael Vogt)
  * added fix for /var/run detection (since it is a tmpfs by default on
    Ubuntu) [and fixed ubuntu fix]
  * added support for ath devices
  * fixed FTBFS by changing linux/if_tr.h to netinet/if_tr.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
void definefilter(int protocol, int *aborted);
2
 
int loadfilter(int protocol, char *filename, struct filterlist *fl, int resolve);
3
 
void savefilter(unsigned int protocol, char *filename, struct filterlist *fl);
 
1
void definefilter(int *aborted);
 
2
int loadfilter(char *filename, struct filterlist *fl, int resolve);
 
3
void savefilter(char *filename, struct filterlist *fl);
4
4
void destroyfilter(struct filterlist *fl);
5
 
void editfilter(unsigned int protocol, int *aborted);
6
 
void delfilter(unsigned int protocol, int *aborted);
 
5
void editfilter(int *aborted);
 
6
void delfilter(int *aborted);