set namespace as basename

This commit is contained in:
ghost 2023-12-22 11:31:04 +02:00
parent b1b6063dfa
commit d5050d9901

View File

@ -35,6 +35,17 @@ $md5file = md5_file(
$argv[2] $argv[2]
); );
// Get file name
$name = basename(
$argv[2]
);
// Check filename not longer of protocol
if (mb_strlen($name) > 255)
{
$name = $md5file;
}
// Split content to smaller parts, according to the protocol limits // Split content to smaller parts, according to the protocol limits
$size = isset($argv[3]) && $argv[3] <= 3072 ? (int) $argv[3] : 3072; $size = isset($argv[3]) && $argv[3] <= 3072 ? (int) $argv[3] : 3072;
@ -66,7 +77,7 @@ $ns = _exec(
sprintf( sprintf(
"%s '%s'", "%s '%s'",
'keva_namespace', 'keva_namespace',
$md5file $name
) )
); );