From: Jo-Philipp Wich Date: Sun, 13 Mar 2011 17:39:36 +0000 (+0000) Subject: modules/admin-full: display source and destination ports in conntrack view (#211) X-Git-Tag: 0.11.0~2207 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=026945ae09515980f972228442c857e1f9cb4f7f;hp=637e3cd0e38eb1d700be02384ab37b1a3056bf3b modules/admin-full: display source and destination ports in conntrack view (#211) --- diff --git a/modules/admin-full/luasrc/view/admin_status/conntrack.htm b/modules/admin-full/luasrc/view/admin_status/conntrack.htm index d21faf704..2697c1cda 100644 --- a/modules/admin-full/luasrc/view/admin_status/conntrack.htm +++ b/modules/admin-full/luasrc/view/admin_status/conntrack.htm @@ -1,7 +1,7 @@ <%# LuCI - Lua Configuration Interface Copyright 2008-2009 Steven Barth -Copyright 2008-2009 Jo-Philipp Wich +Copyright 2008-2011 Jo-Philipp Wich Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -61,8 +61,16 @@ $Id$ <%=c.layer3:upper()%> <%=c.layer4:upper()%> - <%=c.src%> - <%=c.dst%> + <%= + c.layer3 == "ipv6" + and "[%s]:%d" %{ c.src, c.sport } + or "%s:%d" %{ c.src, c.sport } + %> + <%= + c.layer3 == "ipv6" + and "[%s]:%d" %{ c.dst, c.dport } + or "%s:%d" %{ c.dst, c.dport } + %> <% style = not style; end) %> @@ -70,6 +78,5 @@ $Id$
- -<%+footer%> +<%+footer%>