Daniel P. Berrange 9117783bc0 rng: fix port number range validation
The PortNumber data type is declared to derive from 'short'.
Unfortunately this is an signed type, so validates the range
[-32,768, 32,767] which excludes valid port numbers between
32767 and 65535.

We can't use 'unsignedShort', since we need -1 to be a valid
port number too.

This change is to use 'int' and set an explicit max boundary
instead of relying on the data types' built-in max.

One of the existing tests is changed to use a high port number
to validate the schema.

https://bugzilla.redhat.com/show_bug.cgi?id=1214664

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
(cherry picked from commit 615bdfda07b7a59125c16ac780762a07d97ef4fe)
2015-04-28 11:27:24 -04:00
..
2014-09-03 09:36:13 -06:00
2014-01-01 16:34:13 +00:00
2015-01-04 11:10:14 -07:00
2012-04-02 09:33:54 -06:00
2014-09-03 09:36:13 -06:00
2014-12-09 10:02:20 -05:00
2014-09-04 15:18:43 -06:00
2014-08-18 20:36:24 -06:00
2013-07-29 13:09:39 -06:00
2013-03-19 13:13:28 -06:00
2015-02-20 16:17:19 +01:00
2014-11-25 08:47:12 -07:00
2013-10-14 10:31:01 +01:00
2014-04-08 11:15:55 +01:00