Update dependencies

This commit is contained in:
Jakob Borg 2015-01-22 12:53:10 -08:00
parent d18c4ece0c
commit 4bccc611c3
4 changed files with 387 additions and 385 deletions

2
Godeps/Godeps.json generated
View File

@ -35,7 +35,7 @@
}, },
{ {
"ImportPath": "github.com/syncthing/protocol", "ImportPath": "github.com/syncthing/protocol",
"Rev": "15bf5f583a88b7aaf0a5b810fcf5fb21da0a3b3f" "Rev": "3450b5f80cbf69777693cb4762685817ee2489ad"
}, },
{ {
"ImportPath": "github.com/syndtr/goleveldb/leveldb", "ImportPath": "github.com/syndtr/goleveldb/leveldb",

View File

@ -321,10 +321,10 @@ func generateDiagram(output io.Writer, s structInfo) {
case "bool": case "bool":
fmt.Fprintf(output, "| %s |V|\n", center(name+" (V=0 or 1)", 59)) fmt.Fprintf(output, "| %s |V|\n", center(name+" (V=0 or 1)", 59))
fmt.Fprintln(output, line) fmt.Fprintln(output, line)
case "uint16": case "int16", "uint16":
fmt.Fprintf(output, "| %s | %s |\n", center("0x0000", 29), center(name, 29)) fmt.Fprintf(output, "| %s | %s |\n", center("0x0000", 29), center(name, 29))
fmt.Fprintln(output, line) fmt.Fprintln(output, line)
case "uint32": case "int32", "uint32":
fmt.Fprintf(output, "| %s |\n", center(name, 61)) fmt.Fprintf(output, "| %s |\n", center(name, 61))
fmt.Fprintln(output, line) fmt.Fprintln(output, line)
case "int64", "uint64": case "int64", "uint64":
@ -374,6 +374,8 @@ func generateXdr(output io.Writer, s structInfo) {
} }
switch tn { switch tn {
case "int16", "int32":
fmt.Fprintf(output, "\tint %s%s;\n", fn, suf)
case "uint16", "uint32": case "uint16", "uint32":
fmt.Fprintf(output, "\tunsigned int %s%s;\n", fn, suf) fmt.Fprintf(output, "\tunsigned int %s%s;\n", fn, suf)
case "int64": case "int64":