X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=docs%2Fnetwork-scripts.tex;h=4e713953a8fa2bf88d7f01fc0ee67158b4b66d76;hb=b9d810bb3d6014672a2de4160470d3038fea9131;hp=79a88534178fe20f3bad789019f141d197d9d893;hpb=dfe52f0a791b7f715dabfc7c64c08a7d2d423e8b;p=openwrt-10.03%2F.git diff --git a/docs/network-scripts.tex b/docs/network-scripts.tex index 79a885341..4e713953a 100644 --- a/docs/network-scripts.tex +++ b/docs/network-scripts.tex @@ -22,30 +22,31 @@ after \texttt{scan\_interfaces} might not return the same result as running it b After running \texttt{scan\_interfaces}, the following functions are available: \begin{itemize} - \item{\texttt{find\_config \textit{interface}}} \\ - looks for a network configuration that includes - the specified network interface. + \item{\texttt{find\_config \textit{interface}}} \\ + looks for a network configuration that includes + the specified network interface. - \item{\texttt{setup\_interface \textit{interface [config] [protocol]}}} \\ - will set up the specified interface, optionally overriding the network configuration - name or the protocol that it uses. + \item{\texttt{setup\_interface \textit{interface [config] [protocol]}}} \\ + will set up the specified interface, optionally overriding the network configuration + name or the protocol that it uses. \end{itemize} \subsubsection{Writing protocol handlers} -You can add custom protocol handlers by adding shell scripts to -\texttt{/lib/network}. They provide the following two shell functions: +You can add custom protocol handlers (e.g: PPPoE, PPPoA, ATM, PPTP ...) +by adding shell scripts to \texttt{/lib/network}. They provide the following +two shell functions: \begin{Verbatim} scan_() { - local config="$1" - # change the interface names if necessary + local config="$1" + # change the interface names if necessary } setup_interface_() { - local interface="\$1" - local config="\$2" - # set up the interface + local interface="$1" + local config="$2" + # set up the interface } \end{Verbatim}