ReactOS 0.4.16-dev-937-g7afcd2a
netbiosns.c
Go to the documentation of this file.
1
18/*
19 * Redistribution and use in source and binary forms, with or without modification,
20 * are permitted provided that the following conditions are met:
21 *
22 * 1. Redistributions of source code must retain the above copyright notice,
23 * this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright notice,
25 * this list of conditions and the following disclaimer in the documentation
26 * and/or other materials provided with the distribution.
27 * 3. The name of the author may not be used to endorse or promote products
28 * derived from this software without specific prior written permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
31 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
32 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
33 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
34 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
35 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
37 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
38 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
39 * OF SUCH DAMAGE.
40 *
41 * This file is part of the lwIP TCP/IP stack.
42 *
43 * Modifications by Ray Abram to respond to NetBIOS name requests when Incoming name = *
44 * - based on code from "https://github.com/esp8266/Arduino/commit/1f7989b31d26d7df9776a08f36d685eae7ac8f99"
45 * - with permission to relicense to BSD from original author:
46 * http://www.xpablo.cz/?p=751#more-751
47 */
48
49#include "lwip/apps/netbiosns.h"
50
51#if LWIP_IPV4 && LWIP_UDP /* don't build if not configured for use in lwipopts.h */
52
53#include "lwip/def.h"
54#include "lwip/udp.h"
55#include "lwip/ip.h"
56#include "lwip/netif.h"
57#include "lwip/prot/iana.h"
58
59#include <string.h>
60
62#define NETBIOS_NAME_LEN 16
63
66#define NETBIOS_NAME_TTL 300000u
67
69#define NETB_HFLAG_RESPONSE 0x8000U
70#define NETB_HFLAG_OPCODE 0x7800U
71#define NETB_HFLAG_OPCODE_NAME_QUERY 0x0000U
72#define NETB_HFLAG_AUTHORATIVE 0x0400U
73#define NETB_HFLAG_TRUNCATED 0x0200U
74#define NETB_HFLAG_RECURS_DESIRED 0x0100U
75#define NETB_HFLAG_RECURS_AVAILABLE 0x0080U
76#define NETB_HFLAG_BROADCAST 0x0010U
77#define NETB_HFLAG_REPLYCODE 0x0008U
78#define NETB_HFLAG_REPLYCODE_NOERROR 0x0000U
79
80/* NetBIOS question types */
81#define NETB_QTYPE_NB 0x0020U
82#define NETB_QTYPE_NBSTAT 0x0021U
83
85#define NETB_NFLAG_UNIQUE 0x8000U
86#define NETB_NFLAG_NODETYPE 0x6000U
87#define NETB_NFLAG_NODETYPE_HNODE 0x6000U
88#define NETB_NFLAG_NODETYPE_MNODE 0x4000U
89#define NETB_NFLAG_NODETYPE_PNODE 0x2000U
90#define NETB_NFLAG_NODETYPE_BNODE 0x0000U
91
92#define NETB_NFLAG_NAME_IN_CONFLICT 0x0800U /* 1=Yes, 0=No */
93#define NETB_NFLAG_NAME_IS_ACTIVE 0x0400U /* 1=Yes, 0=No */
94#define NETB_NFLAG_NAME_IS_PERMANENT 0x0200U /* 1=Yes (Name is Permanent Node Name), 0=No */
95
97#ifdef PACK_STRUCT_USE_INCLUDES
98# include "arch/bpstruct.h"
99#endif
101struct netbios_hdr {
102 PACK_STRUCT_FIELD(u16_t trans_id);
104 PACK_STRUCT_FIELD(u16_t questions);
105 PACK_STRUCT_FIELD(u16_t answerRRs);
106 PACK_STRUCT_FIELD(u16_t authorityRRs);
107 PACK_STRUCT_FIELD(u16_t additionalRRs);
110#ifdef PACK_STRUCT_USE_INCLUDES
111# include "arch/epstruct.h"
112#endif
113
115#ifdef PACK_STRUCT_USE_INCLUDES
116# include "arch/bpstruct.h"
117#endif
119struct netbios_question_hdr {
120 PACK_STRUCT_FLD_8(u8_t nametype);
121 PACK_STRUCT_FLD_8(u8_t encname[(NETBIOS_NAME_LEN * 2) + 1]);
126#ifdef PACK_STRUCT_USE_INCLUDES
127# include "arch/epstruct.h"
128#endif
129
131#ifdef PACK_STRUCT_USE_INCLUDES
132# include "arch/bpstruct.h"
133#endif
135struct netbios_name_hdr {
136 PACK_STRUCT_FLD_8(u8_t nametype);
137 PACK_STRUCT_FLD_8(u8_t encname[(NETBIOS_NAME_LEN * 2) + 1]);
146#ifdef PACK_STRUCT_USE_INCLUDES
147# include "arch/epstruct.h"
148#endif
149
151#ifdef PACK_STRUCT_USE_INCLUDES
152# include "arch/bpstruct.h"
153#endif
155struct netbios_resp {
156 struct netbios_hdr resp_hdr;
157 struct netbios_name_hdr resp_name;
160#ifdef PACK_STRUCT_USE_INCLUDES
161# include "arch/epstruct.h"
162#endif
163
165#ifdef PACK_STRUCT_USE_INCLUDES
166# include "arch/bpstruct.h"
167#endif
169struct netbios_answer {
170 struct netbios_hdr answer_hdr;
172 PACK_STRUCT_FIELD(u8_t name_size);
174 PACK_STRUCT_FLD_8(u8_t query_name[(NETBIOS_NAME_LEN * 2) + 1]);
175 PACK_STRUCT_FIELD(u16_t packet_type);
178 PACK_STRUCT_FIELD(u16_t data_length);
179#define OFFSETOF_STRUCT_NETBIOS_ANSWER_NUMBER_OF_NAMES 56
181 PACK_STRUCT_FLD_8(u8_t number_of_names);
185 PACK_STRUCT_FIELD(u16_t answer_name_flags);
187 PACK_STRUCT_FLD_8(u8_t unit_id[6]);
189 PACK_STRUCT_FLD_8(u8_t jumpers);
191 PACK_STRUCT_FLD_8(u8_t test_result);
193 PACK_STRUCT_FIELD(u16_t version_number);
195 PACK_STRUCT_FIELD(u16_t period_of_statistics);
197 PACK_STRUCT_FIELD(u16_t number_of_crcs);
199 PACK_STRUCT_FIELD(u16_t number_of_alignment_errors);
201 PACK_STRUCT_FIELD(u16_t number_of_collisions);
203 PACK_STRUCT_FIELD(u16_t number_of_send_aborts);
205 PACK_STRUCT_FIELD(u32_t number_of_good_sends);
207 PACK_STRUCT_FIELD(u32_t number_of_good_receives);
209 PACK_STRUCT_FIELD(u16_t number_of_retransmits);
211 PACK_STRUCT_FIELD(u16_t number_of_no_resource_condition);
213 PACK_STRUCT_FIELD(u16_t number_of_free_command_blocks);
215 PACK_STRUCT_FIELD(u16_t total_number_of_command_blocks);
217 PACK_STRUCT_FIELD(u16_t max_total_number_of_command_blocks);
219 PACK_STRUCT_FIELD(u16_t number_of_pending_sessions);
221 PACK_STRUCT_FIELD(u16_t max_number_of_pending_sessions);
223 PACK_STRUCT_FIELD(u16_t max_total_sessions_possible);
225 PACK_STRUCT_FIELD(u16_t session_data_packet_size);
228#ifdef PACK_STRUCT_USE_INCLUDES
229# include "arch/epstruct.h"
230#endif
231
232#ifdef NETBIOS_LWIP_NAME
233#define NETBIOS_LOCAL_NAME NETBIOS_LWIP_NAME
234#else
235static char netbiosns_local_name[NETBIOS_NAME_LEN];
236#define NETBIOS_LOCAL_NAME netbiosns_local_name
237#endif
238
239static struct udp_pcb *netbiosns_pcb;
240
242static int
243netbiosns_name_decode(const char *name_enc, char *name_dec, int name_dec_len)
244{
245 const char *pname;
246 char cname;
247 char cnbname;
248 int idx = 0;
249
250 LWIP_UNUSED_ARG(name_dec_len);
251
252 /* Start decoding netbios name. */
253 pname = name_enc;
254 for (;;) {
255 /* Every two characters of the first level-encoded name
256 * turn into one character in the decoded name. */
257 cname = *pname;
258 if (cname == '\0') {
259 break; /* no more characters */
260 }
261 if (cname == '.') {
262 break; /* scope ID follows */
263 }
264 if (!lwip_isupper(cname)) {
265 /* Not legal. */
266 return -1;
267 }
268 cname -= 'A';
269 cnbname = cname << 4;
270 pname++;
271
272 cname = *pname;
273 if (!lwip_isupper(cname)) {
274 /* Not legal. */
275 return -1;
276 }
277 cname -= 'A';
278 cnbname |= cname;
279 pname++;
280
281 /* Do we have room to store the character? */
282 if (idx < NETBIOS_NAME_LEN) {
283 /* Yes - store the character. */
284 name_dec[idx++] = (cnbname != ' ' ? cnbname : '\0');
285 }
286 }
287
288 return 0;
289}
290
291#if 0 /* function currently unused */
294static int
295netbiosns_name_encode(char *name_enc, char *name_dec, int name_dec_len)
296{
297 char *pname;
298 char cname;
299 unsigned char ucname;
300 int idx = 0;
301
302 /* Start encoding netbios name. */
303 pname = name_enc;
304
305 for (;;) {
306 /* Every two characters of the first level-encoded name
307 * turn into one character in the decoded name. */
308 cname = *pname;
309 if (cname == '\0') {
310 break; /* no more characters */
311 }
312 if (cname == '.') {
313 break; /* scope ID follows */
314 }
315 if ((cname < 'A' || cname > 'Z') && (cname < '0' || cname > '9')) {
316 /* Not legal. */
317 return -1;
318 }
319
320 /* Do we have room to store the character? */
321 if (idx >= name_dec_len) {
322 return -1;
323 }
324
325 /* Yes - store the character. */
326 ucname = cname;
327 name_dec[idx++] = ('A' + ((ucname >> 4) & 0x0F));
328 name_dec[idx++] = ('A' + ( ucname & 0x0F));
329 pname++;
330 }
331
332 /* Fill with "space" coding */
333 for (; idx < name_dec_len - 1;) {
334 name_dec[idx++] = 'C';
335 name_dec[idx++] = 'A';
336 }
337
338 /* Terminate string */
339 name_dec[idx] = '\0';
340
341 return 0;
342}
343#endif /* 0 */
344
346static void
347netbiosns_recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16_t port)
348{
350
351 /* if packet is valid */
352 if (p != NULL) {
353 char netbios_name[NETBIOS_NAME_LEN + 1];
354 struct netbios_hdr *netbios_hdr = (struct netbios_hdr *)p->payload;
355 struct netbios_question_hdr *netbios_question_hdr = (struct netbios_question_hdr *)(netbios_hdr + 1);
356
357 /* is the packet long enough (we need the header in one piece) */
358 if (p->len < (sizeof(struct netbios_hdr) + sizeof(struct netbios_question_hdr))) {
359 /* packet too short */
360 pbuf_free(p);
361 return;
362 }
363 /* we only answer if we got a default interface */
364 if (netif_default != NULL) {
365 /* @todo: do we need to check answerRRs/authorityRRs/additionalRRs? */
366 /* if the packet is a NetBIOS name query question */
367 if (((netbios_hdr->flags & PP_NTOHS(NETB_HFLAG_OPCODE)) == PP_NTOHS(NETB_HFLAG_OPCODE_NAME_QUERY)) &&
368 ((netbios_hdr->flags & PP_NTOHS(NETB_HFLAG_RESPONSE)) == 0) &&
369 (netbios_hdr->questions == PP_NTOHS(1))) {
370 /* decode the NetBIOS name */
371 netbiosns_name_decode((char *)(netbios_question_hdr->encname), netbios_name, sizeof(netbios_name));
372 /* check the request type */
373 if (netbios_question_hdr->type == PP_HTONS(NETB_QTYPE_NB)) {
374 /* if the packet is for us */
375 if (lwip_strnicmp(netbios_name, NETBIOS_LOCAL_NAME, sizeof(NETBIOS_LOCAL_NAME)) == 0) {
376 struct pbuf *q;
377 struct netbios_resp *resp;
378
379 q = pbuf_alloc(PBUF_TRANSPORT, sizeof(struct netbios_resp), PBUF_RAM);
380 if (q != NULL) {
381 resp = (struct netbios_resp *)q->payload;
382
383 /* prepare NetBIOS header response */
384 resp->resp_hdr.trans_id = netbios_hdr->trans_id;
385 resp->resp_hdr.flags = PP_HTONS(NETB_HFLAG_RESPONSE |
386 NETB_HFLAG_OPCODE_NAME_QUERY |
387 NETB_HFLAG_AUTHORATIVE |
388 NETB_HFLAG_RECURS_DESIRED);
389 resp->resp_hdr.questions = 0;
390 resp->resp_hdr.answerRRs = PP_HTONS(1);
391 resp->resp_hdr.authorityRRs = 0;
392 resp->resp_hdr.additionalRRs = 0;
393
394 /* prepare NetBIOS header datas */
395 MEMCPY( resp->resp_name.encname, netbios_question_hdr->encname, sizeof(netbios_question_hdr->encname));
396 resp->resp_name.nametype = netbios_question_hdr->nametype;
397 resp->resp_name.type = netbios_question_hdr->type;
398 resp->resp_name.cls = netbios_question_hdr->cls;
399 resp->resp_name.ttl = PP_HTONL(NETBIOS_NAME_TTL);
400 resp->resp_name.datalen = PP_HTONS(sizeof(resp->resp_name.flags) + sizeof(resp->resp_name.addr));
401 resp->resp_name.flags = PP_HTONS(NETB_NFLAG_NODETYPE_BNODE);
402 ip4_addr_copy(resp->resp_name.addr, *netif_ip4_addr(netif_default));
403
404 /* send the NetBIOS response */
405 udp_sendto(upcb, q, addr, port);
406
407 /* free the "reference" pbuf */
408 pbuf_free(q);
409 }
410 }
411#if LWIP_NETBIOS_RESPOND_NAME_QUERY
412 } else if (netbios_question_hdr->type == PP_HTONS(NETB_QTYPE_NBSTAT)) {
413 /* if the packet is for us or general query */
414 if (!lwip_strnicmp(netbios_name, NETBIOS_LOCAL_NAME, sizeof(NETBIOS_LOCAL_NAME)) ||
415 !lwip_strnicmp(netbios_name, "*", sizeof(NETBIOS_LOCAL_NAME))) {
416 /* general query - ask for our IP address */
417 struct pbuf *q;
418 struct netbios_answer *resp;
419
420 q = pbuf_alloc(PBUF_TRANSPORT, sizeof(struct netbios_answer), PBUF_RAM);
421 if (q != NULL) {
422 /* buffer to which a response is compiled */
423 resp = (struct netbios_answer *) q->payload;
424
425 /* Init response to zero, especially the statistics fields */
426 memset(resp, 0, sizeof(*resp));
427
428 /* copy the query to the response ID */
429 resp->answer_hdr.trans_id = netbios_hdr->trans_id;
430 /* acknowledgment of termination */
431 resp->answer_hdr.flags = PP_HTONS(NETB_HFLAG_RESPONSE | NETB_HFLAG_OPCODE_NAME_QUERY | NETB_HFLAG_AUTHORATIVE);
432 /* resp->answer_hdr.questions = PP_HTONS(0); done by memset() */
433 /* serial number of the answer */
434 resp->answer_hdr.answerRRs = PP_HTONS(1);
435 /* resp->answer_hdr.authorityRRs = PP_HTONS(0); done by memset() */
436 /* resp->answer_hdr.additionalRRs = PP_HTONS(0); done by memset() */
437 /* we will copy the length of the station name */
438 resp->name_size = netbios_question_hdr->nametype;
439 /* we will copy the queried name */
440 MEMCPY(resp->query_name, netbios_question_hdr->encname, (NETBIOS_NAME_LEN * 2) + 1);
441 /* NBSTAT */
442 resp->packet_type = PP_HTONS(0x21);
443 /* Internet name */
444 resp->cls = PP_HTONS(1);
445 /* resp->ttl = PP_HTONL(0); done by memset() */
446 resp->data_length = PP_HTONS(sizeof(struct netbios_answer) - offsetof(struct netbios_answer, number_of_names));
447 resp->number_of_names = 1;
448
449 /* make windows see us as workstation, not as a server */
450 memset(resp->answer_name, 0x20, NETBIOS_NAME_LEN - 1);
451 /* strlen is checked to be < NETBIOS_NAME_LEN during initialization */
452 MEMCPY(resp->answer_name, NETBIOS_LOCAL_NAME, strlen(NETBIOS_LOCAL_NAME));
453
454 /* b-node, unique, active */
455 resp->answer_name_flags = PP_HTONS(NETB_NFLAG_NAME_IS_ACTIVE);
456
457 /* Set responder netif MAC address */
458 SMEMCPY(resp->unit_id, ip_current_input_netif()->hwaddr, sizeof(resp->unit_id));
459
460 udp_sendto(upcb, q, addr, port);
461 pbuf_free(q);
462 }
463 }
464#endif /* LWIP_NETBIOS_RESPOND_NAME_QUERY */
465 }
466 }
467 }
468 /* free the pbuf */
469 pbuf_free(p);
470 }
471}
472
477void
478netbiosns_init(void)
479{
480 /* LWIP_ASSERT_CORE_LOCKED(); is checked by udp_new() */
481#ifdef NETBIOS_LWIP_NAME
482 LWIP_ASSERT("NetBIOS name is too long!", strlen(NETBIOS_LWIP_NAME) < NETBIOS_NAME_LEN);
483#endif
484
485 netbiosns_pcb = udp_new_ip_type(IPADDR_TYPE_ANY);
486 if (netbiosns_pcb != NULL) {
487 /* we have to be allowed to send broadcast packets! */
488 ip_set_option(netbiosns_pcb, SOF_BROADCAST);
489 udp_bind(netbiosns_pcb, IP_ANY_TYPE, LWIP_IANA_PORT_NETBIOS);
490 udp_recv(netbiosns_pcb, netbiosns_recv, netbiosns_pcb);
491 }
492}
493
494#ifndef NETBIOS_LWIP_NAME
500void
501netbiosns_set_name(const char *hostname)
502{
503 size_t i;
504 size_t copy_len = strlen(hostname);
506 LWIP_ASSERT("NetBIOS name is too long!", copy_len < NETBIOS_NAME_LEN);
507 if (copy_len >= NETBIOS_NAME_LEN) {
508 copy_len = NETBIOS_NAME_LEN - 1;
509 }
510
511 /* make name into upper case */
512 for (i = 0; i < copy_len; i++ ) {
513 netbiosns_local_name[i] = (char)lwip_toupper(hostname[i]);
514 }
515 netbiosns_local_name[copy_len] = '\0';
516}
517#endif /* NETBIOS_LWIP_NAME */
518
523void
524netbiosns_stop(void)
525{
527 if (netbiosns_pcb != NULL) {
528 udp_remove(netbiosns_pcb);
529 netbiosns_pcb = NULL;
530 }
531}
532
533#endif /* LWIP_IPV4 && LWIP_UDP */
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
char * hostname
Definition: ftp.c:88
#define PP_HTONS(x)
Definition: def.h:90
#define PP_NTOHS(x)
Definition: def.h:91
#define PP_HTONL(x)
Definition: def.h:92
#define NULL
Definition: types.h:112
unsigned int idx
Definition: utils.c:41
USHORT port
Definition: uri.c:228
unsigned char
Definition: typeof.h:29
#define PACK_STRUCT_STRUCT
Definition: cc.h:42
#define LWIP_ASSERT(message, assertion)
Definition: debug.h:116
#define ip_set_option(pcb, opt)
Definition: ip.h:230
#define SOF_BROADCAST
Definition: ip.h:112
#define ip_current_input_netif()
Definition: ip.h:150
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
GLdouble GLdouble GLdouble GLdouble q
Definition: gl.h:2063
GLenum pname
Definition: glext.h:5645
GLbitfield flags
Definition: glext.h:7161
GLenum const GLvoid * addr
Definition: glext.h:9621
GLfloat GLfloat p
Definition: glext.h:8902
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define PACK_STRUCT_END
Definition: arch.h:316
uint32_t u32_t
Definition: arch.h:129
uint8_t u8_t
Definition: arch.h:125
#define LWIP_UNUSED_ARG(x)
Definition: arch.h:373
#define PACK_STRUCT_BEGIN
Definition: arch.h:307
uint16_t u16_t
Definition: arch.h:127
#define PACK_STRUCT_FLD_8(x)
Definition: arch.h:347
#define PACK_STRUCT_FIELD(x)
Definition: arch.h:338
#define lwip_toupper(c)
Definition: arch.h:235
#define lwip_isupper(c)
Definition: arch.h:233
#define PACK_STRUCT_FLD_S(x)
Definition: arch.h:356
@ LWIP_IANA_PORT_NETBIOS
Definition: iana.h:76
#define IP_ANY_TYPE
Definition: ip_addr.h:461
@ IPADDR_TYPE_ANY
Definition: ip_addr.h:60
#define LWIP_ASSERT_CORE_LOCKED()
Definition: opt.h:227
#define SMEMCPY(dst, src, len)
Definition: opt.h:145
struct pbuf * pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
Definition: pbuf.c:224
u8_t pbuf_free(struct pbuf *p)
Definition: pbuf.c:727
@ PBUF_RAM
Definition: pbuf.h:152
@ PBUF_TRANSPORT
Definition: pbuf.h:93
int lwip_strnicmp(const char *str1, const char *str2, size_t len)
Definition: def.c:186
ip6_addr_t ip_addr_t
Definition: ip_addr.h:344
char hwaddr[6]
Definition: iptest.cpp:31
int const JOCTET unsigned int datalen
Definition: jpeglib.h:1031
#define NETBIOS_NAME_LEN
Definition: lmcons.h:47
#define MEMCPY(DST, SRC, BYTES)
Definition: macros.h:231
void netbiosns_init(void)
void netbiosns_set_name(const char *hostname)
void netbiosns_stop(void)
struct netif * netif_default
Definition: netif.c:115
typedefPACK_STRUCT_END struct ip4_addr_packed ip4_addr_p_t
Definition: ip4.h:61
#define offsetof(TYPE, MEMBER)
#define memset(x, y, z)
Definition: compat.h:39
Definition: pbuf.h:186