From: Christos Zoulas Date: Wed, 2 Sep 1998 21:19:45 +0000 (+0000) Subject: Merge in 1.3 and post 1.3 fixes; some of them might be applicable to X-Git-Tag: RELEASE_2_3_6~53 X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=a25ab4af5d8ea4f1760b5db5f5ee5b65bbfcd53b;hp=a25ab4af5d8ea4f1760b5db5f5ee5b65bbfcd53b;p=ppp.git Merge in 1.3 and post 1.3 fixes; some of them might be applicable to other ppp ports. - XXX: we don't check for the exact version of new features added, so this might not compile for all post 1.3 versions. It should be trivial to fix. - ppp can delay the last packet so check: && (sc->sc_if.if_snd.ifq_head || sc->sc_fastq.ifq_head || sc->sc_outm)) { instead of just: && (sc->sc_if.if_snd.ifq_head || sc->sc_fastq.ifq_head)) { - glue in ipflow fast forwarding. - Only run pppasyncstart (sc->sc_start) from the netisr handler. This allows pppoutput to be called from splimp (e.g., when ipflow is in use.) without requiring pppasyncstart to run at splimp. - defopt INET, NETATALK - Remove force argument to pppstart; it is not necessary anymore. ---