|
|
@ -28,11 +28,15 @@ public struct ProfileManager {
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: - Functions
|
|
|
|
// MARK: - Functions
|
|
|
|
|
|
|
|
|
|
|
|
public static func isToLong(profileName: String) -> Bool {
|
|
|
|
public static func isTooLong(profileName: String) -> Bool {
|
|
|
|
return (profileName.utf8CString.count > LibSession.libSessionMaxNameByteLength)
|
|
|
|
///String.utf8CString will include the null terminator (Int8)0 as the end of string buffer.
|
|
|
|
|
|
|
|
///When the string is exactly 100 bytes String.utf8CString.count will be 101.
|
|
|
|
|
|
|
|
///However in LibSession, the Contact C API supports 101 characters in order to account for
|
|
|
|
|
|
|
|
///the null terminator - char name[101]. So it is OK to use String.utf8.count
|
|
|
|
|
|
|
|
return (profileName.utf8.count > LibSession.libSessionMaxNameByteLength)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static func isToLong(profileUrl: String) -> Bool {
|
|
|
|
public static func isTooLong(profileUrl: String) -> Bool {
|
|
|
|
return (profileUrl.utf8CString.count > LibSession.libSessionMaxProfileUrlByteLength)
|
|
|
|
return (profileUrl.utf8CString.count > LibSession.libSessionMaxProfileUrlByteLength)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|