Home
last modified time | relevance | path

Searched refs:maxUnprotectedBytesPerFrame (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
DAltsTsiFrameProtector.java99 private final int maxUnprotectedBytesPerFrame; field in AltsTsiFrameProtector.Protector
105 this.maxUnprotectedBytesPerFrame = maxProtectedFrameBytes - HEADER_BYTES - suffixBytes; in Protector()
142 long frameNum = unprotectedBytes / maxUnprotectedBytesPerFrame + 1; in handleUnprotected()
143 int lastFrameUnprotectedBytes = (int) (unprotectedBytes % maxUnprotectedBytesPerFrame); in handleUnprotected()
146 lastFrameUnprotectedBytes = maxUnprotectedBytesPerFrame; in handleUnprotected()
155 (frameIdx == frameNum - 1) ? lastFrameUnprotectedBytes : maxUnprotectedBytesPerFrame; in handleUnprotected()