~ubuntu-branches/debian/jessie/ppp/jessie

« back to all changes in this revision

Viewing changes to pppd/pppd.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Beattie
  • Date: 2001-12-11 00:24:05 UTC
  • Revision ID: james.westby@ubuntu.com-20011211002405-gcsjlgalwyjf99m2
Tags: 2.4.1.uus-4
Use MAKEDEV in postinst, not mknod. (Closes: #122574)

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
struct pppd_stats {
148
148
    unsigned int        bytes_in;
149
149
    unsigned int        bytes_out;
 
150
    unsigned int        packets_in;
 
151
    unsigned int        packets_out;
150
152
};
151
153
 
152
154
/* Used for storing a sequence of words.  Usually malloced. */
272
274
extern char     *bundle_name;   /* bundle name for multilink */
273
275
extern bool     dump_options;   /* print out option values */
274
276
extern bool     dryrun;         /* check everything, print options, exit */
 
277
extern char     path_ipup[MAXPATHLEN];  /* pathname of ip-up script */
 
278
extern char     path_ipdown[MAXPATHLEN]; /* pathname of ip-down script */
275
279
 
276
280
#ifdef PPP_FILTER
277
281
extern struct   bpf_program pass_filter;   /* Filter for pkts to pass */
570
574
char *get_first_ethernet __P((void));
571
575
 
572
576
/* Procedures exported from options.c */
 
577
int setipaddr __P((char *, char **, int)); /* Set local/remote ip addresses */
573
578
int  parse_args __P((int argc, char **argv));
574
579
                                /* Parse options from arguments given */
575
580
int  options_from_file __P((char *filename, int must_exist, int check_prot,