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{
|
||||
Kind: SSI,
|
||||
UserNo: "",
|
||||
TSI: NetIdentity{
|
||||
SSI: uint32(ssi),
|
||||
SSI: ssi,
|
||||
MNC: 0,
|
||||
MCC: 0,
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue