mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-20 06:20:38 +00:00
Fix issue with fields trying to use wrong name (#12655)
* Fix issue with fields trying to use wrong name * Fix similar issue in winlean * Revert accidental csize change Co-authored-by: Clyybber <darkmine956@gmail.com> Co-authored-by: ringabout <43030857+ringabout@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
6b4ea88734
commit
805186809c
@@ -428,8 +428,8 @@ type
|
||||
header: "<sys/socket.h>",
|
||||
pure, final.} = object ## struct sockaddr_storage
|
||||
ss_family*: TSa_Family ## Address family.
|
||||
ss_padding: array[128 - sizeof(cshort) - sizeof(culong), char]
|
||||
ss_align: clong
|
||||
ss_padding {.importc: "__ss_padding".}: array[128 - sizeof(cshort) - sizeof(culong), char]
|
||||
ss_align {.importc: "__ss_align".}: clong
|
||||
|
||||
Tif_nameindex* {.importc: "struct if_nameindex", final,
|
||||
pure, header: "<net/if.h>".} = object ## struct if_nameindex
|
||||
|
||||
@@ -505,9 +505,9 @@ type
|
||||
Sockaddr_storage* {.importc: "SOCKADDR_STORAGE",
|
||||
header: "winsock2.h".} = object
|
||||
ss_family*: uint16
|
||||
ss_pad1: array[6, byte]
|
||||
ss_align: int64
|
||||
ss_pad2: array[112, byte]
|
||||
ss_pad1 {.importc: "__ss_pad1".}: array[6, byte]
|
||||
ss_align {.importc: "__ss_align".}: int64
|
||||
ss_pad2 {.importc: "__ss_pad2".}: array[112, byte]
|
||||
|
||||
Servent* = object
|
||||
s_name*: cstring
|
||||
|
||||
Reference in New Issue
Block a user