Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
R
radsecproxy-uninett
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eduroam
radsecproxy-uninett
Commits
6bfc632b
Commit
6bfc632b
authored
Dec 14, 2015
by
Kolbjørn Barmen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Oppdatert til 1.6.6 - på tide å se på differ
parent
9ae104e0
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
86 additions
and
1 deletion
+86
-1
files/debian/patches/patch-aa
files/debian/patches/patch-aa
+18
-0
files/debian/patches/patch-ab
files/debian/patches/patch-ab
+18
-0
files/debian/patches/patch-ac
files/debian/patches/patch-ac
+30
-0
files/debian/patches/patch-ad
files/debian/patches/patch-ad
+16
-0
files/debian/patches/series
files/debian/patches/series
+4
-1
No files found.
files/debian/patches/patch-aa
0 → 100644
View file @
6bfc632b
$NetBSD$
These syslog messages occur way too often. ...and since Kolla
likes to run with full debugging turned on, eliminate these so
that we don't fill the /var file system.
--- radsecproxy.c.orig 2010-06-03 14:44:10.000000000 +0200
+++ radsecproxy.c
@@ -419,7 +419,9 @@
struct request *newrqref(struct request
void freerq(struct request *rq) {
if (!rq)
return;
+#if 0
debug(DBG_DBG, "freerq: called with refcount %d", rq->refcount);
+#endif
if (--rq->refcount)
return;
if (rq->origusername)
files/debian/patches/patch-ab
0 → 100644
View file @
6bfc632b
$NetBSD$
These syslog messages occur way too often. ...and since Kolla
likes to run with full debugging turned on, eliminate these so
that we don't fill the /var file system.
--- udp.c.orig 2010-06-03 14:44:11.000000000 +0200
+++ udp.c
@@ -308,7 +308,9 @@
void *udpserverwr(void *arg) {
if (sendto(reply->udpsock, reply->replybuf, RADLEN(reply->replybuf), 0, (struct sockaddr *)&to, SOCKADDR_SIZE(to)) < 0)
debug(DBG_WARN, "udpserverwr: send failed");
}
+#if 0
debug(DBG_DBG, "udpserverwr: refcount %d", reply->refcount);
+#endif
freerq(reply);
}
}
files/debian/patches/patch-ac
0 → 100644
View file @
6bfc632b
$NetBSD$
Use NOTICE for requests as well
--- radsecproxy.c.orig 2010-12-23 14:01:35.000000000 +0100
+++ radsecproxy.c
@@ -1261,12 +1261,12 @@
attr = radmsg_gettype(msg, RAD_Attr_User_Name);
if (!attr) {
- debug(DBG_INFO, "acclog: accounting-request from client %s (%s) without username attribute", from->conf->name, addr2string(from->addr));
+ debug(DBG_NOTICE, "Accounting-Request from client %s (%s) without username attribute", from->conf->name, addr2string(from->addr));
return;
}
username = radattr2ascii(attr);
if (username) {
- debug(DBG_INFO, "acclog: accounting-request from client %s (%s) with username: %s", from->conf->name, addr2string(from->addr), username);
+ debug(DBG_NOTICE, "Accounting-Request from client %s (%s) with username: %s", from->conf->name, addr2string(from->addr), username);
free(username);
}
@@ -1469,7 +1469,7 @@
userascii = radattr2ascii(attr);
if (!userascii)
goto rmclrqexit;
- debug(DBG_DBG, "%s with username: %s", radmsgtype2string(msg->code), userascii);
+ debug(DBG_NOTICE, "%s from client %s (%s) with username: %s", radmsgtype2string(msg->code), from->conf->name, addr2string(from->addr), userascii);
/* will return with lock on the realm */
to = findserver(&realm, attr, msg->code == RAD_Accounting_Request);
files/debian/patches/patch-ad
0 → 100644
View file @
6bfc632b
$NetBSD$
Don't overwrite LDFLAGS, only add to it. We might get flags
via the build environment, but not during the configure stage.
--- Makefile.in.orig 2012-04-16 13:08:14.000000000 +0000
+++ Makefile.in
@@ -207,7 +207,7 @@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LDFLAGS = @LDFLAGS@
+LDFLAGS += @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LTLIBOBJS = @LTLIBOBJS@
files/debian/patches/series
View file @
6bfc632b
fix_manpages
patch-aa
patch-ab
patch-ac
patch-ad
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment