mirror of
https://github.com/3proxy/3proxy.git
synced 2026-04-12 16:00:11 +08:00
Push as 0.9.6
This commit is contained in:
parent
98f8ec1464
commit
a2641cb103
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
3proxy (0.9.6-1) buster; urgency=medium
|
||||||
|
|
||||||
|
*3proxy 0.9.6 initial build
|
||||||
|
|
||||||
|
-- z3APA3A <3apa3a@3proxy.org> Sat, 11 Apr 2026 13:03:32 +0300
|
||||||
|
|
||||||
3proxy (0.9.5-1) buster; urgency=medium
|
3proxy (0.9.5-1) buster; urgency=medium
|
||||||
|
|
||||||
*3proxy 0.9.5 initial build
|
*3proxy 0.9.5 initial build
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
Name: 3proxy
|
Name: 3proxy
|
||||||
Version: 0.9.5
|
Version: 0.9.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: 3proxy tiny proxy server
|
Summary: 3proxy tiny proxy server
|
||||||
License: GPL/LGPL/Apache/BSD
|
License: GPL/LGPL/Apache/BSD
|
||||||
|
|||||||
15
src/conf.c
15
src/conf.c
@ -1845,7 +1845,6 @@ void freeconf(struct extparam *confp){
|
|||||||
struct ace *acl;
|
struct ace *acl;
|
||||||
struct filemon *fm;
|
struct filemon *fm;
|
||||||
int counterd, archiverc;
|
int counterd, archiverc;
|
||||||
unsigned char *logname, *logtarget;
|
|
||||||
unsigned char **archiver;
|
unsigned char **archiver;
|
||||||
unsigned char * logformat;
|
unsigned char * logformat;
|
||||||
|
|
||||||
@ -1882,12 +1881,6 @@ void freeconf(struct extparam *confp){
|
|||||||
pthread_mutex_unlock(&pwl_mutex);
|
pthread_mutex_unlock(&pwl_mutex);
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
logtarget = confp->logtarget;
|
|
||||||
confp->logtarget = NULL;
|
|
||||||
logname = confp->logname;
|
|
||||||
confp->logname = NULL;
|
|
||||||
*/
|
|
||||||
confp->logfunc = lognone;
|
confp->logfunc = lognone;
|
||||||
logformat = confp->logformat;
|
logformat = confp->logformat;
|
||||||
confp->logformat = NULL;
|
confp->logformat = NULL;
|
||||||
@ -1942,14 +1935,6 @@ void freeconf(struct extparam *confp){
|
|||||||
for(; fm; fm = (struct filemon *)itfree(fm, fm->next)){
|
for(; fm; fm = (struct filemon *)itfree(fm, fm->next)){
|
||||||
if(fm->path) myfree(fm->path);
|
if(fm->path) myfree(fm->path);
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
if(logtarget) {
|
|
||||||
myfree(logtarget);
|
|
||||||
}
|
|
||||||
if(logname) {
|
|
||||||
myfree(logname);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
if(logformat) {
|
if(logformat) {
|
||||||
myfree(logformat);
|
myfree(logformat);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,14 +1,14 @@
|
|||||||
#ifndef VERSION
|
#ifndef VERSION
|
||||||
#define VERSION "3proxy-0.9.5"
|
#define VERSION "3proxy-0.9.6"
|
||||||
#endif
|
#endif
|
||||||
#ifndef BUILDDATE
|
#ifndef BUILDDATE
|
||||||
#define BUILDDATE ""
|
#define BUILDDATE ""
|
||||||
#endif
|
#endif
|
||||||
#define MAJOR3PROXY 0
|
#define MAJOR3PROXY 0
|
||||||
#define SUBMAJOR3PROXY 9
|
#define SUBMAJOR3PROXY 9
|
||||||
#define MINOR3PROXY 5
|
#define MINOR3PROXY 6
|
||||||
#define SUBMINOR3PROXY 0
|
#define SUBMINOR3PROXY 0
|
||||||
#define RELEASE3PROXY "3proxy-0.9.5(" BUILDDATE ")\0"
|
#define RELEASE3PROXY "3proxy-0.9.6(" BUILDDATE ")\0"
|
||||||
#ifndef YEAR3PROXY
|
#ifndef YEAR3PROXY
|
||||||
#define YEAR3PROXY "2026"
|
#define YEAR3PROXY "2026"
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user