Show
Ignore:
Timestamp:
07/04/12 11:02:21 (11 months ago)
Author:
jow
Message:

protocols/ppp: add mtu options to all ppp protocols, add lcp options to pptp

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • luci/trunk/protocols/ppp/luasrc/model/cbi/admin_network/proto_ppp.lua

    r7872 r8869  
    1515local device, username, password 
    1616local ipv6, defaultroute, metric, peerdns, dns, 
    17       keepalive_failure, keepalive_interval, demand 
     17      keepalive_failure, keepalive_interval, demand, mtu 
    1818 
    1919 
     
    130130demand.placeholder = "0" 
    131131demand.datatype    = "uinteger" 
     132 
     133 
     134mtu = section:taboption("advanced", Value, "mtu", translate("Override MTU")) 
     135mtu.placeholder = "1500" 
     136mtu.datatype    = "max(1500)"