This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 7ef655f683e2ee5e0e978f0e13bb6ce74b4afb33 Mon Sep 17 00:00:00 2001 | |
From: Jo-Philipp Wich <[email protected]> | |
Date: Tue, 5 Sep 2017 19:20:32 +0200 | |
Subject: [PATCH] nfnetlink: observe reply src port for remote->local | |
connections | |
Signed-off-by: Jo-Philipp Wich <[email protected]> | |
--- | |
nfnetlink.c | 41 ++++++++++++++++++++++++----------------- | |
1 file changed, 24 insertions(+), 17 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use locale; | |
use POSIX qw(mktime strftime setlocale LC_COLLATE); | |
setlocale(LC_COLLATE, "en_US.UTF-8"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: local-lvm-storage | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: local-lvm-provisioner-service-account | |
namespace: local-lvm-storage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/net/openconnect/files/openconnect.sh b/net/openconnect/files/openconnect.sh | |
index 15bd3b5a5..1f0c7aeed 100755 | |
--- a/net/openconnect/files/openconnect.sh | |
+++ b/net/openconnect/files/openconnect.sh | |
@@ -3,6 +3,13 @@ | |
. ../netifd-proto.sh | |
init_proto "$@" | |
+append_args() { | |
+ while [ $# -gt 0 ]; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
. /lib/functions.sh | |
. ../netifd-proto.sh | |
init_proto "$@" | |
append_args() { | |
while [ $# -gt 0 ]; do | |
append cmdline "'${1//\'/\'\\\'\'}'" | |
shift | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js | |
index 7c1831376..3433da396 100644 | |
--- a/modules/luci-base/htdocs/luci-static/resources/luci.js | |
+++ b/modules/luci-base/htdocs/luci-static/resources/luci.js | |
@@ -67,7 +67,7 @@ | |
* It provides simple means to create subclasses of given classes and | |
* implements prototypal inheritance. | |
*/ | |
- var superContext = null, Class = Object.assign(function() {}, { | |
+ var superContext = {}, Class = Object.assign(function() {}, { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libs/luci-lib-httpclient/luasrc/httpclient.lua b/libs/luci-lib-httpclient/luasrc/httpclient.lua | |
index 79ce41294..7a335a016 100644 | |
--- a/libs/luci-lib-httpclient/luasrc/httpclient.lua | |
+++ b/libs/luci-lib-httpclient/luasrc/httpclient.lua | |
@@ -105,13 +105,18 @@ function parse_url(uri) | |
rest = tmp | |
end | |
- url.host, tmp = rest:match("^%[([0-9a-fA-F:]+)%](.*)$") | |
+ url.host, tmp = rest:match("^%[(.+)%](.*)$") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"luci-proto-modemmanager": { | |
"description": "Grant access to mmcli", | |
"read": { | |
"cgi-io": [ "exec" ], | |
"file": { | |
"/usr/bin/mmcli -L": [ "exec" ], | |
"/usr/bin/mmcli -m [0-9]": [ "exec" ] | |
} | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This is /lib/network/dsaconfig.sh | |
. /lib/functions/network.sh | |
switch_names="" | |
clear_port_vlans() { | |
local port=$1 | |
local self=$2 |