diff options
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r-- | source3/include/smb.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 75ec4363d0..7386613029 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -726,9 +726,11 @@ struct server_info_struct { /* used for network interfaces */ struct interface { struct interface *next, *prev; - struct in_addr ip; - struct in_addr bcast; - struct in_addr nmask; + char *name; + int flags; + struct sockaddr_storage ip; + struct sockaddr_storage netmask; + struct sockaddr_storage bcast; }; /* Internal message queue for deferred opens. */ |