fixed ssi type
This commit is contained in:
parent
ad701f7a97
commit
b42323d518
1 changed files with 2 additions and 2 deletions
|
@ -34,12 +34,12 @@ func NewAddress() (addr *TetraFlexAddress) {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
func NewAddressFromSSINumber(ssi uint16) (addr *TetraFlexAddress) {
|
func NewAddressFromSSINumber(ssi uint32) (addr *TetraFlexAddress) {
|
||||||
return &TetraFlexAddress{
|
return &TetraFlexAddress{
|
||||||
Kind: SSI,
|
Kind: SSI,
|
||||||
UserNo: "",
|
UserNo: "",
|
||||||
TSI: NetIdentity{
|
TSI: NetIdentity{
|
||||||
SSI: uint32(ssi),
|
SSI: ssi,
|
||||||
MNC: 0,
|
MNC: 0,
|
||||||
MCC: 0,
|
MCC: 0,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue