Greg Stark writes: > I'm not sure if development on pppd is still active.
Yes it is still active, although slow. > It seems there are dozens > of patches floating around and no upstream releases coming. Is it? Is this > still the list to reach the upstream maintainers? It'll do. :) > My question is whether there's a way to add options in a plugin. It seems the > options list is a static array in plugins.c and plugins are loaded using > dlsym. So unless I've missed some piece of infrastructure there isn't. There are two ways a plugin can add options. The first is to call add_options, and the second is to set the_channel to point to the plugin's channel structure, which can have a pointer to an array of channel-specific options. > I've hacked my personal copy to just retry every 5s forever but in an ideal > world there would be a pppoe-restart and pppoe-maxfail just like lcp-restart > and maxfail that could be set in the options or peers files. Just add them to the Options[] array in pppd/plugins/rp-pppoe/plugin.c. Paul. - To unsubscribe from this list: send the line "unsubscribe linux-ppp" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
