diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nmbd/nmbd_packets.c | 2 | ||||
-rw-r--r-- | source3/param/loadparm.c | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_packets.c b/source3/nmbd/nmbd_packets.c index 013ebf6589..55fd24dc35 100644 --- a/source3/nmbd/nmbd_packets.c +++ b/source3/nmbd/nmbd_packets.c @@ -1863,7 +1863,7 @@ bool listen_for_packets(bool run_election) client_fd = ClientNMB; client_port = global_nmb_port; } else { - /* Port 137 */ + /* Port 138 */ packet_type = DGRAM_PACKET; packet_name = "dgram"; client_fd = ClientDGRAM; diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index d2da10687f..8308e99566 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -4968,6 +4968,11 @@ static void init_globals(bool first_time_only) string_set(&Globals.szCacheDir, get_dyn_CACHEDIR()); string_set(&Globals.szPidDir, get_dyn_PIDDIR()); string_set(&Globals.szSocketAddress, "0.0.0.0"); + /* + * By default support explicit binding to broadcast + * addresses. + */ + Globals.bNmbdBindExplicitBroadcast = true; if (asprintf(&s, "Samba %s", samba_version_string()) < 0) { smb_panic("init_globals: ENOMEM"); |