mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-03 11:20:37 -04:00
automatically shorten the rendezvous name if it's too long
This commit is contained in:
parent
a3d3c21b65
commit
eb92a4b99b
@ -61,6 +61,8 @@
|
|||||||
# define HOST_NAME_MAX 255
|
# define HOST_NAME_MAX 255
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define MAX_REND_LEN 62
|
||||||
|
|
||||||
/** Globals */
|
/** Globals */
|
||||||
//static int ecode;
|
//static int ecode;
|
||||||
static LL_HANDLE conf_main=NULL;
|
static LL_HANDLE conf_main=NULL;
|
||||||
@ -1713,5 +1715,12 @@ char *conf_get_servername(void) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(strlen(retval) > MAX_REND_LEN) {
|
||||||
|
retval[MAX_REND_LEN] = '\0';
|
||||||
|
retval[MAX_REND_LEN-1] = '.';
|
||||||
|
retval[MAX_REND_LEN-2] = '.';
|
||||||
|
retval[MAX_REND_LEN-3] = '.';
|
||||||
|
}
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,11 @@
|
|||||||
|
|
||||||
#include "ff-dbstruct.h"
|
#include "ff-dbstruct.h"
|
||||||
|
|
||||||
|
#ifndef TRUE
|
||||||
|
#define TRUE 1
|
||||||
|
#define FALSE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Plugin types */
|
/* Plugin types */
|
||||||
#define PLUGIN_OUTPUT 1
|
#define PLUGIN_OUTPUT 1
|
||||||
#define PLUGIN_SCANNER 2
|
#define PLUGIN_SCANNER 2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user