Added comment

This commit is contained in:
goldsimon 2010-02-12 16:59:50 +00:00
parent ed52d1f790
commit 5397ecfbca
1 changed files with 2 additions and 1 deletions

View File

@ -328,7 +328,8 @@ void netbios_init(void)
pcb = udp_new();
if (pcb != NULL) {
pcb->so_options|=SOF_BROADCAST;
/* we have to be allowed to send broadcast packets! */
pcb->so_options |= SOF_BROADCAST;
udp_bind(pcb, IP_ADDR_ANY, NETBIOS_PORT);
udp_recv(pcb, netbios_recv, pcb);
}