13 lines
421 B
Go
13 lines
421 B
Go
// Copyright 2014 Claudemiro Alves Feitosa Neto. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package ipe
|
|
|
|
// Only this version is supported
|
|
const supportedProtocolVersion = 7
|
|
|
|
// // Maximum event size permitted 10 kB
|
|
// See: http://blogs.gnome.org/cneumair/2008/09/30/1-kb-1024-bytes-no-1-kb-1000-bytes/
|
|
const maxDataEventSize = 10 * 1000
|