Commit d6456a0f12470ea885ccf86f033325fdf330d08c
1 parent
d5ac5e26
--no commit message
Showing
10 changed files
with
35948 additions
and
35922 deletions
Too many changes to show.
To preserve performance only 4 of 10 files are displayed.
Project/applications/smartcities/buffer.c
@@ -3,20 +3,23 @@ | @@ -3,20 +3,23 @@ | ||
3 | 3 | ||
4 | char** put_message(char* info, char** buf,uint32_t *index, uint32_t *buf_len){ | 4 | char** put_message(char* info, char** buf,uint32_t *index, uint32_t *buf_len){ |
5 | 5 | ||
6 | -uint32_t i; | ||
7 | -i= *index; | ||
8 | -if(*buf_len==i) | 6 | +uint32_t i,len; |
7 | +len=*buf_len; | ||
8 | +if(len==*index) | ||
9 | { | 9 | { |
10 | + | ||
10 | char** buffer=join_buf(buf, buf_len); | 11 | char** buffer=join_buf(buf, buf_len); |
11 | - buffer[i]=chHeapAlloc(NULL,strlen(info)+1); | ||
12 | - buffer[i]=info; | ||
13 | - *index = i++; | 12 | + buffer[*index]=chHeapAlloc(NULL,strlen(info)+1); |
13 | + strcpy(buffer[*index],info); | ||
14 | + i=*index+1; | ||
15 | + *index = i; | ||
14 | return buffer; | 16 | return buffer; |
15 | } | 17 | } |
16 | else{ | 18 | else{ |
17 | - buf[i] = chHeapAlloc(NULL,strlen(info)+1); | ||
18 | - buf[i]=info; | ||
19 | - *index = i++; | 19 | + buf[*index] = chHeapAlloc(NULL,strlen(info)+1); |
20 | + buf[*index]=info; | ||
21 | + i=*index+1; | ||
22 | + *index = i; | ||
20 | return buf; | 23 | return buf; |
21 | } | 24 | } |
22 | 25 | ||
@@ -24,9 +27,11 @@ else{ | @@ -24,9 +27,11 @@ else{ | ||
24 | 27 | ||
25 | int check_memory(){ | 28 | int check_memory(){ |
26 | 29 | ||
27 | - int mem_free=libwismart_GetMemFree_Ram().free; | ||
28 | - int mem=25600-mem_free; | ||
29 | - | 30 | + //int mem_free=libwismart_GetMemFree_Ram().free_core; |
31 | + //printf("mem lliure=%d\r\n",mem_free); | ||
32 | + int mem_free=20000; | ||
33 | + int mem=38920-mem_free; | ||
34 | + printf("mem ocupada=%d\r\n",mem); | ||
30 | if(mem>=HARD_LIMIT) | 35 | if(mem>=HARD_LIMIT) |
31 | { | 36 | { |
32 | return HARD_REACHED; | 37 | return HARD_REACHED; |
@@ -37,14 +42,24 @@ int check_memory(){ | @@ -37,14 +42,24 @@ int check_memory(){ | ||
37 | return MEMORY_OK; | 42 | return MEMORY_OK; |
38 | } | 43 | } |
39 | 44 | ||
40 | -int send(char** buf, uint32_t index, char *provider_ID, char *sensor_ID){ | ||
41 | - | ||
42 | - char* statement=prepare_json_observation_statement(buf, index+1); | 45 | +int send(char** buf, uint32_t *index, uint32_t *size_buf, char *provider_ID, char *sensor_ID){ |
46 | + printf("1\r\n"); | ||
47 | + char* statement=prepare_json_observation_statement(buf, *index); | ||
48 | + printf("2\r\n"); | ||
43 | uint32_t size = strlen(statement); | 49 | uint32_t size = strlen(statement); |
50 | + printf("3\r\n"); | ||
44 | uint8_t res=send_json(statement, size, provider_ID, sensor_ID); | 51 | uint8_t res=send_json(statement, size, provider_ID, sensor_ID); |
52 | + printf("4\r\n"); | ||
45 | int i; | 53 | int i; |
46 | - for(i=0;i<index+1;i++){ | 54 | + printf("res=%d\r\n",res); |
55 | + if(res==JSON_POST_OK){ | ||
56 | + | ||
57 | + for(i=0;i<*index;i++){ | ||
47 | chHeapFree(buf[i]); | 58 | chHeapFree(buf[i]); |
59 | + } | ||
60 | + printf(" posant la mida i l'index a 0\r\n"); | ||
61 | + *index=0; | ||
62 | + *size_buf=0; | ||
48 | } | 63 | } |
49 | return res; | 64 | return res; |
50 | } | 65 | } |
@@ -71,12 +86,13 @@ char** join_buf(char** buf, uint32_t *buf_len){ | @@ -71,12 +86,13 @@ char** join_buf(char** buf, uint32_t *buf_len){ | ||
71 | n_buf=chHeapAlloc (NULL,sizeof (char *) * (len+1)); | 86 | n_buf=chHeapAlloc (NULL,sizeof (char *) * (len+1)); |
72 | int i; | 87 | int i; |
73 | for(i=0; i<len;i++){ | 88 | for(i=0; i<len;i++){ |
74 | - char* aux=buf[i]; | ||
75 | - n_buf[i]=chHeapAlloc(NULL,strlen(aux)+1); | ||
76 | - n_buf[i]=aux; | 89 | + n_buf[i]=chHeapAlloc(NULL,strlen(buf[i])+1); |
90 | + strcpy(n_buf[i],buf[i]); | ||
77 | chHeapFree(buf[i]); | 91 | chHeapFree(buf[i]); |
78 | } | 92 | } |
79 | - chHeapFree(buf); | ||
80 | - *buf_len=len++; | 93 | + if(len!=0){ |
94 | + chHeapFree(buf);} | ||
95 | + len++; | ||
96 | + *buf_len=len; | ||
81 | return n_buf; | 97 | return n_buf; |
82 | } | 98 | } |
Project/applications/smartcities/build/smartcities.bin
No preview for this file type
Project/applications/smartcities/build/smartcities.dmp
@@ -7,9 +7,9 @@ start address 0x08000130 | @@ -7,9 +7,9 @@ start address 0x08000130 | ||
7 | 7 | ||
8 | Program Header: | 8 | Program Header: |
9 | LOAD off 0x00008000 vaddr 0x08000000 paddr 0x08000000 align 2**15 | 9 | LOAD off 0x00008000 vaddr 0x08000000 paddr 0x08000000 align 2**15 |
10 | - filesz 0x00068ccc memsz 0x00068cd0 flags rwx | ||
11 | - LOAD off 0x00078c00 vaddr 0x20000c00 paddr 0x08068cd0 align 2**15 | ||
12 | - filesz 0x0000077c memsz 0x0000ca38 flags rw- | 10 | + filesz 0x00068c8c memsz 0x00068c90 flags rwx |
11 | + LOAD off 0x00078c00 vaddr 0x20000c00 paddr 0x08068c90 align 2**15 | ||
12 | + filesz 0x0000077c memsz 0x0000c920 flags rw- | ||
13 | LOAD off 0x00080000 vaddr 0x20000000 paddr 0x20000000 align 2**15 | 13 | LOAD off 0x00080000 vaddr 0x20000000 paddr 0x20000000 align 2**15 |
14 | filesz 0x00000000 memsz 0x00000c00 flags rw- | 14 | filesz 0x00000000 memsz 0x00000c00 flags rw- |
15 | private flags = 5000002: [Version5 EABI] [has entry point] | 15 | private flags = 5000002: [Version5 EABI] [has entry point] |
@@ -18,40 +18,40 @@ Sections: | @@ -18,40 +18,40 @@ Sections: | ||
18 | Idx Name Size VMA LMA File off Algn | 18 | Idx Name Size VMA LMA File off Algn |
19 | 0 startup 00000130 08000000 08000000 00008000 2**4 | 19 | 0 startup 00000130 08000000 08000000 00008000 2**4 |
20 | CONTENTS, ALLOC, LOAD, DATA | 20 | CONTENTS, ALLOC, LOAD, DATA |
21 | - 1 .text 00068b9c 08000130 08000130 00008130 2**4 | 21 | + 1 .text 00068b5c 08000130 08000130 00008130 2**4 |
22 | CONTENTS, ALLOC, LOAD, READONLY, CODE | 22 | CONTENTS, ALLOC, LOAD, READONLY, CODE |
23 | - 2 .textalign 00000004 08068ccc 08068ccc 00070ccc 2**0 | 23 | + 2 .textalign 00000004 08068c8c 08068c8c 00070c8c 2**0 |
24 | ALLOC | 24 | ALLOC |
25 | 3 .stacks 00000c00 20000000 20000000 00080000 2**0 | 25 | 3 .stacks 00000c00 20000000 20000000 00080000 2**0 |
26 | ALLOC | 26 | ALLOC |
27 | - 4 .data 0000077c 20000c00 08068cd0 00078c00 2**3 | 27 | + 4 .data 0000077c 20000c00 08068c90 00078c00 2**3 |
28 | CONTENTS, ALLOC, LOAD, DATA | 28 | CONTENTS, ALLOC, LOAD, DATA |
29 | - 5 .bss 0000c2b8 20001380 08069450 0007937c 2**3 | 29 | + 5 .bss 0000c1a0 20001380 08069410 0007937c 2**3 |
30 | ALLOC | 30 | ALLOC |
31 | - 6 .debug_info 00178e36 00000000 00000000 0007937c 2**0 | 31 | + 6 .debug_info 00179238 00000000 00000000 0007937c 2**0 |
32 | CONTENTS, READONLY, DEBUGGING | 32 | CONTENTS, READONLY, DEBUGGING |
33 | - 7 .debug_abbrev 0002e7ba 00000000 00000000 001f21b2 2**0 | 33 | + 7 .debug_abbrev 0002e7d4 00000000 00000000 001f25b4 2**0 |
34 | CONTENTS, READONLY, DEBUGGING | 34 | CONTENTS, READONLY, DEBUGGING |
35 | - 8 .debug_aranges 00006e60 00000000 00000000 00220970 2**3 | 35 | + 8 .debug_aranges 00006e68 00000000 00000000 00220d88 2**3 |
36 | CONTENTS, READONLY, DEBUGGING | 36 | CONTENTS, READONLY, DEBUGGING |
37 | - 9 .debug_ranges 00013220 00000000 00000000 002277d0 2**0 | 37 | + 9 .debug_ranges 00013228 00000000 00000000 00227bf0 2**0 |
38 | CONTENTS, READONLY, DEBUGGING | 38 | CONTENTS, READONLY, DEBUGGING |
39 | - 10 .debug_line 00043884 00000000 00000000 0023a9f0 2**0 | 39 | + 10 .debug_line 000438ba 00000000 00000000 0023ae18 2**0 |
40 | CONTENTS, READONLY, DEBUGGING | 40 | CONTENTS, READONLY, DEBUGGING |
41 | - 11 .debug_str 000279bb 00000000 00000000 0027e274 2**0 | 41 | + 11 .debug_str 00027a41 00000000 00000000 0027e6d2 2**0 |
42 | CONTENTS, READONLY, DEBUGGING | 42 | CONTENTS, READONLY, DEBUGGING |
43 | - 12 .comment 00000011 00000000 00000000 002a5c2f 2**0 | 43 | + 12 .comment 00000011 00000000 00000000 002a6113 2**0 |
44 | CONTENTS, READONLY | 44 | CONTENTS, READONLY |
45 | - 13 .ARM.attributes 00000033 00000000 00000000 002a5c40 2**0 | 45 | + 13 .ARM.attributes 00000033 00000000 00000000 002a6124 2**0 |
46 | CONTENTS, READONLY | 46 | CONTENTS, READONLY |
47 | - 14 .debug_frame 0001469c 00000000 00000000 002a5c74 2**2 | 47 | + 14 .debug_frame 000146cc 00000000 00000000 002a6158 2**2 |
48 | CONTENTS, READONLY, DEBUGGING | 48 | CONTENTS, READONLY, DEBUGGING |
49 | - 15 .debug_loc 00099c32 00000000 00000000 002ba310 2**0 | 49 | + 15 .debug_loc 00099cc5 00000000 00000000 002ba824 2**0 |
50 | CONTENTS, READONLY, DEBUGGING | 50 | CONTENTS, READONLY, DEBUGGING |
51 | SYMBOL TABLE: | 51 | SYMBOL TABLE: |
52 | 08000000 l d startup 00000000 startup | 52 | 08000000 l d startup 00000000 startup |
53 | 08000130 l d .text 00000000 .text | 53 | 08000130 l d .text 00000000 .text |
54 | -08068ccc l d .textalign 00000000 .textalign | 54 | +08068c8c l d .textalign 00000000 .textalign |
55 | 20000000 l d .stacks 00000000 .stacks | 55 | 20000000 l d .stacks 00000000 .stacks |
56 | 20000c00 l d .data 00000000 .data | 56 | 20000c00 l d .data 00000000 .data |
57 | 20001380 l d .bss 00000000 .bss | 57 | 20001380 l d .bss 00000000 .bss |
@@ -87,7 +87,7 @@ SYMBOL TABLE: | @@ -87,7 +87,7 @@ SYMBOL TABLE: | ||
87 | 00000000 l df *ABS* 00000000 strcat.c | 87 | 00000000 l df *ABS* 00000000 strcat.c |
88 | 00000000 l df *ABS* 00000000 strchr.c | 88 | 00000000 l df *ABS* 00000000 strchr.c |
89 | 00000000 l df *ABS* 00000000 strcmp.c | 89 | 00000000 l df *ABS* 00000000 strcmp.c |
90 | -08001280 l F .text 0000015c strcmp_unaligned | 90 | +08001300 l F .text 0000015c strcmp_unaligned |
91 | 00000000 l df *ABS* 00000000 strcpy.c | 91 | 00000000 l df *ABS* 00000000 strcpy.c |
92 | 00000000 l df *ABS* 00000000 strlen.c | 92 | 00000000 l df *ABS* 00000000 strlen.c |
93 | 00000000 l df *ABS* 00000000 strncat.c | 93 | 00000000 l df *ABS* 00000000 strncat.c |
@@ -95,23 +95,23 @@ SYMBOL TABLE: | @@ -95,23 +95,23 @@ SYMBOL TABLE: | ||
95 | 00000000 l df *ABS* 00000000 strncpy.c | 95 | 00000000 l df *ABS* 00000000 strncpy.c |
96 | 00000000 l df *ABS* 00000000 strrchr.c | 96 | 00000000 l df *ABS* 00000000 strrchr.c |
97 | 00000000 l df *ABS* 00000000 strstr.c | 97 | 00000000 l df *ABS* 00000000 strstr.c |
98 | -080016c0 l F .text 000000bc critical_factorization | ||
99 | -0800177c l F .text 00000222 two_way_long_needle | 98 | +08001740 l F .text 000000bc critical_factorization |
99 | +080017fc l F .text 00000222 two_way_long_needle | ||
100 | 00000000 l df *ABS* 00000000 strtol.c | 100 | 00000000 l df *ABS* 00000000 strtol.c |
101 | 00000000 l df *ABS* 00000000 vfprintf.c | 101 | 00000000 l df *ABS* 00000000 vfprintf.c |
102 | -0804c830 l O .text 00000010 blanks.6732 | ||
103 | -0804c840 l O .text 00000010 zeroes.6733 | 102 | +0804c6c0 l O .text 00000010 blanks.6732 |
103 | +0804c6d0 l O .text 00000010 zeroes.6733 | ||
104 | 00000000 l df *ABS* 00000000 vfscanf.c | 104 | 00000000 l df *ABS* 00000000 vfscanf.c |
105 | -0804c850 l O .text 00000022 basefix.6646 | 105 | +0804c6e0 l O .text 00000022 basefix.6646 |
106 | 00000000 l df *ABS* 00000000 vsnprintf.c | 106 | 00000000 l df *ABS* 00000000 vsnprintf.c |
107 | 00000000 l df *ABS* 00000000 wsetup.c | 107 | 00000000 l df *ABS* 00000000 wsetup.c |
108 | 00000000 l df *ABS* 00000000 dtoa.c | 108 | 00000000 l df *ABS* 00000000 dtoa.c |
109 | -08003fb0 l F .text 00000138 quorem | 109 | +08004030 l F .text 00000138 quorem |
110 | 00000000 l df *ABS* 00000000 fflush.c | 110 | 00000000 l df *ABS* 00000000 fflush.c |
111 | 00000000 l df *ABS* 00000000 findfp.c | 111 | 00000000 l df *ABS* 00000000 findfp.c |
112 | -08005180 l F .text 00000004 __fp_lock | ||
113 | -08005184 l F .text 00000004 __fp_unlock | ||
114 | -08005194 l F .text 00000050 std.isra.0 | 112 | +08005200 l F .text 00000004 __fp_lock |
113 | +08005204 l F .text 00000004 __fp_unlock | ||
114 | +08005214 l F .text 00000050 std.isra.0 | ||
115 | 00000000 l df *ABS* 00000000 fvwrite.c | 115 | 00000000 l df *ABS* 00000000 fvwrite.c |
116 | 00000000 l df *ABS* 00000000 fwalk.c | 116 | 00000000 l df *ABS* 00000000 fwalk.c |
117 | 00000000 l df *ABS* 00000000 iswspace.c | 117 | 00000000 l df *ABS* 00000000 iswspace.c |
@@ -124,27 +124,27 @@ SYMBOL TABLE: | @@ -124,27 +124,27 @@ SYMBOL TABLE: | ||
124 | 00000000 l df *ABS* 00000000 mbtowc_r.c | 124 | 00000000 l df *ABS* 00000000 mbtowc_r.c |
125 | 00000000 l df *ABS* 00000000 memchr-stub.c | 125 | 00000000 l df *ABS* 00000000 memchr-stub.c |
126 | 00000000 l df *ABS* 00000000 mprec.c | 126 | 00000000 l df *ABS* 00000000 mprec.c |
127 | -0804c890 l O .text 0000000c p05.5251 | 127 | +0804c720 l O .text 0000000c p05.5251 |
128 | 00000000 l df *ABS* 00000000 s_fpclassify.c | 128 | 00000000 l df *ABS* 00000000 s_fpclassify.c |
129 | 00000000 l df *ABS* 00000000 sccl.c | 129 | 00000000 l df *ABS* 00000000 sccl.c |
130 | 00000000 l df *ABS* 00000000 sf_nan.c | 130 | 00000000 l df *ABS* 00000000 sf_nan.c |
131 | 00000000 l df *ABS* 00000000 strtod.c | 131 | 00000000 l df *ABS* 00000000 strtod.c |
132 | -0804c9c0 l O .text 00000028 tinytens | 132 | +0804c850 l O .text 00000028 tinytens |
133 | 200010b8 l O .data 00000014 fpi.5211 | 133 | 200010b8 l O .data 00000014 fpi.5211 |
134 | 200010cc l O .data 00000014 fpinan.5247 | 134 | 200010cc l O .data 00000014 fpinan.5247 |
135 | 00000000 l df *ABS* 00000000 strtoul.c | 135 | 00000000 l df *ABS* 00000000 strtoul.c |
136 | 00000000 l df *ABS* 00000000 vfprintf.c | 136 | 00000000 l df *ABS* 00000000 vfprintf.c |
137 | -0804c9f0 l O .text 00000010 blanks.6676 | ||
138 | -0804ca00 l O .text 00000010 zeroes.6677 | 137 | +0804c880 l O .text 00000010 blanks.6676 |
138 | +0804c890 l O .text 00000010 zeroes.6677 | ||
139 | 00000000 l df *ABS* 00000000 vfscanf.c | 139 | 00000000 l df *ABS* 00000000 vfscanf.c |
140 | -0804ca10 l O .text 00000022 basefix.6146 | 140 | +0804c8a0 l O .text 00000022 basefix.6146 |
141 | 00000000 l df *ABS* 00000000 ungetc.c | 141 | 00000000 l df *ABS* 00000000 ungetc.c |
142 | 00000000 l df *ABS* 00000000 fclose.c | 142 | 00000000 l df *ABS* 00000000 fclose.c |
143 | 00000000 l df *ABS* 00000000 gdtoa-gethex.c | 143 | 00000000 l df *ABS* 00000000 gdtoa-gethex.c |
144 | -08008cf0 l F .text 000000ae rshift | 144 | +08008d70 l F .text 000000ae rshift |
145 | 00000000 l df *ABS* 00000000 gdtoa-hexnan.c | 145 | 00000000 l df *ABS* 00000000 gdtoa-hexnan.c |
146 | 00000000 l df *ABS* 00000000 _udivsi3.o | 146 | 00000000 l df *ABS* 00000000 _udivsi3.o |
147 | -08009510 l .text 00000000 .udivsi3_skip_div0_test | 147 | +08009590 l .text 00000000 .udivsi3_skip_div0_test |
148 | 00000000 l *ABS* 00000000 shift | 148 | 00000000 l *ABS* 00000000 shift |
149 | 00000000 l df *ABS* 00000000 _dvmd_tls.o | 149 | 00000000 l df *ABS* 00000000 _dvmd_tls.o |
150 | 00000000 l df *ABS* 00000000 _arm_addsubdf3.o | 150 | 00000000 l df *ABS* 00000000 _arm_addsubdf3.o |
@@ -156,13 +156,13 @@ SYMBOL TABLE: | @@ -156,13 +156,13 @@ SYMBOL TABLE: | ||
156 | 00000000 l df *ABS* 00000000 crt0.c | 156 | 00000000 l df *ABS* 00000000 crt0.c |
157 | 00000000 l df *ABS* 00000000 chcore.c | 157 | 00000000 l df *ABS* 00000000 chcore.c |
158 | 00000000 l df *ABS* 00000000 chcore_v7m.c | 158 | 00000000 l df *ABS* 00000000 chcore_v7m.c |
159 | -0800a2f4 l .text 00000000 _port_exit_from_isr | 159 | +0800a374 l .text 00000000 _port_exit_from_isr |
160 | 00000000 l df *ABS* 00000000 nvic.c | 160 | 00000000 l df *ABS* 00000000 nvic.c |
161 | 00000000 l df *ABS* 00000000 chsys.c | 161 | 00000000 l df *ABS* 00000000 chsys.c |
162 | 20001380 l O .bss 00000048 mainthread.4814 | 162 | 20001380 l O .bss 00000048 mainthread.4814 |
163 | 00000000 l df *ABS* 00000000 chvt.c | 163 | 00000000 l df *ABS* 00000000 chvt.c |
164 | 00000000 l df *ABS* 00000000 chschd.c | 164 | 00000000 l df *ABS* 00000000 chschd.c |
165 | -0800a570 l F .text 00000050 wakeup | 165 | +0800a5f0 l F .text 00000050 wakeup |
166 | 00000000 l df *ABS* 00000000 chthreads.c | 166 | 00000000 l df *ABS* 00000000 chthreads.c |
167 | 00000000 l df *ABS* 00000000 chdynamic.c | 167 | 00000000 l df *ABS* 00000000 chdynamic.c |
168 | 00000000 l df *ABS* 00000000 chsem.c | 168 | 00000000 l df *ABS* 00000000 chsem.c |
@@ -177,436 +177,436 @@ SYMBOL TABLE: | @@ -177,436 +177,436 @@ SYMBOL TABLE: | ||
177 | 00000000 l df *ABS* 00000000 chmempools.c | 177 | 00000000 l df *ABS* 00000000 chmempools.c |
178 | 00000000 l df *ABS* 00000000 syscalls.c | 178 | 00000000 l df *ABS* 00000000 syscalls.c |
179 | 00000000 l df *ABS* 00000000 evtimer.c | 179 | 00000000 l df *ABS* 00000000 evtimer.c |
180 | -0800b150 l F .text 00000024 tmrcb | 180 | +0800b1d0 l F .text 00000024 tmrcb |
181 | 00000000 l df *ABS* 00000000 httpClient.c | 181 | 00000000 l df *ABS* 00000000 httpClient.c |
182 | -0804cd90 l O .text 00000010 CSWTCH.6 | 182 | +0804ccd0 l O .text 00000010 CSWTCH.6 |
183 | 00000000 l df *ABS* 00000000 callbacks.c | 183 | 00000000 l df *ABS* 00000000 callbacks.c |
184 | 00000000 l df *ABS* 00000000 json.c | 184 | 00000000 l df *ABS* 00000000 json.c |
185 | 00000000 l df *ABS* 00000000 buffer.c | 185 | 00000000 l df *ABS* 00000000 buffer.c |
186 | 00000000 l df *ABS* 00000000 libwismart.c | 186 | 00000000 l df *ABS* 00000000 libwismart.c |
187 | -20001758 l O .bss 0000000c dma2PeripheralSem | ||
188 | -20001776 l O .bss 00000001 peripheralLocksInited.11910 | 187 | +20001638 l O .bss 0000000c dma2PeripheralSem |
188 | +20001656 l O .bss 00000001 peripheralLocksInited.11910 | ||
189 | 00000000 l df *ABS* 00000000 libwismart_cm.c | 189 | 00000000 l df *ABS* 00000000 libwismart_cm.c |
190 | -2000177c l O .bss 00000001 wps_ongoing | 190 | +2000165c l O .bss 00000001 wps_ongoing |
191 | 00000000 l df *ABS* 00000000 libwismart_scan.c | 191 | 00000000 l df *ABS* 00000000 libwismart_scan.c |
192 | -0800c680 l F .text 00000054 handle_bg_scan_timer | ||
193 | -0800c6e0 l F .text 000000d0 handle_scan_timer | ||
194 | -20001788 l O .bss 00000001 enable_bg_scan | 192 | +0800c580 l F .text 00000054 handle_bg_scan_timer |
193 | +0800c5e0 l F .text 000000d0 handle_scan_timer | ||
194 | +20001668 l O .bss 00000001 enable_bg_scan | ||
195 | 200010e0 l O .data 00000001 bg_scan_period | 195 | 200010e0 l O .data 00000001 bg_scan_period |
196 | -20001789 l O .bss 00000001 max_scan_runs | ||
197 | -200017ac l O .bss 00000001 num_of_scan_runs | ||
198 | -200017b4 l O .bss 00000001 scan_state | 196 | +20001669 l O .bss 00000001 max_scan_runs |
197 | +2000168c l O .bss 00000001 num_of_scan_runs | ||
198 | +20001694 l O .bss 00000001 scan_state | ||
199 | 00000000 l df *ABS* 00000000 libwismart_softap.c | 199 | 00000000 l df *ABS* 00000000 libwismart_softap.c |
200 | -200017b8 l O .bss 00000004 client_change_cb | ||
201 | -200017bc l O .bss 00000004 started_cb | 200 | +20001698 l O .bss 00000004 client_change_cb |
201 | +2000169c l O .bss 00000004 started_cb | ||
202 | 00000000 l df *ABS* 00000000 libwismart_power.c | 202 | 00000000 l df *ABS* 00000000 libwismart_power.c |
203 | -0800ca80 l F .text 000001c8 _wismart_idle_thread | ||
204 | -0800cc50 l F .text 00000056 update_allow_stop_mode | 203 | +0800c980 l F .text 000001c8 _wismart_idle_thread |
204 | +0800cb50 l F .text 00000056 update_allow_stop_mode | ||
205 | 00000000 l df *ABS* 00000000 libwismart_uart.c | 205 | 00000000 l df *ABS* 00000000 libwismart_uart.c |
206 | -0800ced0 l F .text 00000002 usart_rx_null_cb | ||
207 | -2000190c l O .bss 0000000c uart_tx_sema | ||
208 | -20001918 l O .bss 0000000c tx_dma_bsema | ||
209 | -20001924 l O .bss 0000000c uart_rx_sema | 206 | +0800cdd0 l F .text 00000002 usart_rx_null_cb |
207 | +200017ec l O .bss 0000000c uart_tx_sema | ||
208 | +200017f8 l O .bss 0000000c tx_dma_bsema | ||
209 | +20001804 l O .bss 0000000c uart_rx_sema | ||
210 | 200010e4 l O .data 00000004 usart_rx_complete_func | 210 | 200010e4 l O .data 00000004 usart_rx_complete_func |
211 | -20001930 l O .bss 0000000c uart_access_sema | ||
212 | -2000193c l O .bss 0000000c rx_dma_bsema | 211 | +20001810 l O .bss 0000000c uart_access_sema |
212 | +2000181c l O .bss 0000000c rx_dma_bsema | ||
213 | 00000000 l df *ABS* 00000000 transport.c | 213 | 00000000 l df *ABS* 00000000 transport.c |
214 | -0800d260 l F .text 00000550 WifiRX_Thread | ||
215 | -20001948 l O .bss 0000000c sdio_bus_sem | ||
216 | -20001954 l O .bss 00000040 hic_recv_header | ||
217 | -0804d5d0 l O .text 00000029 __FUNCTION__.11607 | ||
218 | -0804d7b0 l O .text 0000002b __FUNCTION__.11630 | ||
219 | -20001994 l O .bss 00000004 wifi_irq_event | ||
220 | -0804d7e0 l O .text 00000013 __FUNCTION__.11583 | ||
221 | -20001998 l O .bss 00000002 sdio_irq_count | ||
222 | -200019a0 l O .bss 000004b0 waWifiRX | 214 | +0800d160 l F .text 00000550 WifiRX_Thread |
215 | +20001828 l O .bss 0000000c sdio_bus_sem | ||
216 | +20001834 l O .bss 00000040 hic_recv_header | ||
217 | +0804d570 l O .text 00000029 __FUNCTION__.11607 | ||
218 | +0804d750 l O .text 0000002b __FUNCTION__.11630 | ||
219 | +20001874 l O .bss 00000004 wifi_irq_event | ||
220 | +0804d780 l O .text 00000013 __FUNCTION__.11583 | ||
221 | +20001878 l O .bss 00000002 sdio_irq_count | ||
222 | +20001880 l O .bss 000004b0 waWifiRX | ||
223 | 00000000 l df *ABS* 00000000 libwismart_lwip.c | 223 | 00000000 l df *ABS* 00000000 libwismart_lwip.c |
224 | -0800d7f0 l F .text 00000058 _handle_packet | ||
225 | -0800d8f0 l F .text 00000150 lwip_thread | ||
226 | -20001e50 l O .bss 00000004 lwip_frame_received_event | ||
227 | -20002508 l O .bss 00000028 timer_event_mb | ||
228 | -20002530 l O .bss 00000004 lwip_tp | ||
229 | -20002534 l O .bss 00000002 timer_event_count | ||
230 | -20002538 l O .bss 00000028 timer_event_mb_msgs | ||
231 | -20002564 l O .bss 0000001c periodic_evt | ||
232 | -20002580 l O .bss 00000004 timer_event_received_event | ||
233 | -20002584 l O .bss 0000000c lwip_lock | 224 | +0800d6f0 l F .text 00000058 _handle_packet |
225 | +0800d7f0 l F .text 00000150 lwip_thread | ||
226 | +20001d30 l O .bss 00000004 lwip_frame_received_event | ||
227 | +200023e8 l O .bss 00000028 timer_event_mb | ||
228 | +20002410 l O .bss 00000004 lwip_tp | ||
229 | +20002414 l O .bss 00000002 timer_event_count | ||
230 | +20002418 l O .bss 00000028 timer_event_mb_msgs | ||
231 | +20002444 l O .bss 0000001c periodic_evt | ||
232 | +20002460 l O .bss 00000004 timer_event_received_event | ||
233 | +20002464 l O .bss 0000000c lwip_lock | ||
234 | 00000000 l df *ABS* 00000000 netconf.c | 234 | 00000000 l df *ABS* 00000000 netconf.c |
235 | -0800dab0 l F .text 00000068 LwIP_igmp_mac_filter | ||
236 | -0804d830 l O .text 00000015 __FUNCTION__.12146 | 235 | +0800d9c0 l F .text 00000068 LwIP_igmp_mac_filter |
236 | +0804d7d0 l O .text 00000015 __FUNCTION__.12146 | ||
237 | 00000000 l df *ABS* 00000000 dhcpserver.c | 237 | 00000000 l df *ABS* 00000000 dhcpserver.c |
238 | -0800de60 l F .text 00000134 DHCPOptionsReply | ||
239 | -0800dfa0 l F .text 00000040 haddrtoa | ||
240 | -0800dfe0 l F .text 00000090 DHCPScan | ||
241 | -0800e070 l F .text 0000002c hex2num | ||
242 | -0800e0a0 l F .text 00000050 DHCPSearchOptionsField.constprop.2 | ||
243 | -0800e140 l F .text 00000918 dhcp_recv | ||
244 | -200025f4 l O .bss 00000118 theAllocatedIP | ||
245 | -0804d870 l O .text 00000046 sDhcpOpt.10790 | ||
246 | -20002724 l O .bss 00000004 stNearest.10816 | ||
247 | -0804d8c0 l O .text 00000050 tDHCPType | ||
248 | -20002728 l O .bss 00000004 nAllocatedIP | ||
249 | -2000272c l O .bss 00000004 stNearest.10785 | ||
250 | -20002730 l O .bss 00000031 haddrbuf.10754 | ||
251 | -20002764 l O .bss 00000120 sParamDHCP | ||
252 | -0804ddb0 l O .text 00000046 sDhcpOpt.10821 | 238 | +0800dd70 l F .text 00000134 DHCPOptionsReply |
239 | +0800deb0 l F .text 00000040 haddrtoa | ||
240 | +0800def0 l F .text 00000090 DHCPScan | ||
241 | +0800df80 l F .text 0000002c hex2num | ||
242 | +0800dfb0 l F .text 00000050 DHCPSearchOptionsField.constprop.2 | ||
243 | +0800e050 l F .text 00000918 dhcp_recv | ||
244 | +200024d4 l O .bss 00000118 theAllocatedIP | ||
245 | +0804d810 l O .text 00000046 sDhcpOpt.10790 | ||
246 | +20002604 l O .bss 00000004 stNearest.10816 | ||
247 | +0804d860 l O .text 00000050 tDHCPType | ||
248 | +20002608 l O .bss 00000004 nAllocatedIP | ||
249 | +2000260c l O .bss 00000004 stNearest.10785 | ||
250 | +20002610 l O .bss 00000031 haddrbuf.10754 | ||
251 | +20002644 l O .bss 00000120 sParamDHCP | ||
252 | +0804dd50 l O .text 00000046 sDhcpOpt.10821 | ||
253 | 00000000 l df *ABS* 00000000 wifi_softap.c | 253 | 00000000 l df *ABS* 00000000 wifi_softap.c |
254 | -0800f4e0 l F .text 00000124 SoftAPQueue_Thread | ||
255 | -20002888 l O .bss 00000120 clients | ||
256 | -0804de00 l O .text 00000038 CSWTCH.59 | ||
257 | -0804e250 l O .text 00000019 __FUNCTION__.11580 | 254 | +0800f3f0 l F .text 00000124 SoftAPQueue_Thread |
255 | +20002768 l O .bss 00000120 clients | ||
256 | +0804dda0 l O .text 00000038 CSWTCH.59 | ||
257 | +0804e1f0 l O .text 00000019 __FUNCTION__.11580 | ||
258 | 00000000 l df *ABS* 00000000 wifi_engine.c | 258 | 00000000 l df *ABS* 00000000 wifi_engine.c |
259 | -0800f7a0 l F .text 00000090 wei_ratelist2mask | ||
260 | -0800f830 l F .text 00000068 wei_prune_nonbasic_ratelist | ||
261 | -0800f8a0 l F .text 00000160 fix_assoc_ie.constprop.0 | 259 | +0800f6b0 l F .text 00000090 wei_ratelist2mask |
260 | +0800f740 l F .text 00000068 wei_prune_nonbasic_ratelist | ||
261 | +0800f7b0 l F .text 00000160 fix_assoc_ie.constprop.0 | ||
262 | 200010e8 l O .data 00000001 internal_mode | 262 | 200010e8 l O .data 00000001 internal_mode |
263 | -20002a10 l O .bss 00000004 wpa_ie_len | ||
264 | -20002a9c l O .bss 00000100 wpa_ie | ||
265 | -20002b9c l O .bss 0000000c cmdcnt_lock | 263 | +200028f0 l O .bss 00000004 wpa_ie_len |
264 | +2000297c l O .bss 00000100 wpa_ie | ||
265 | +20002a7c l O .bss 0000000c cmdcnt_lock | ||
266 | 2000112c l O .data 00000058 supported_rate_table | 266 | 2000112c l O .data 00000058 supported_rate_table |
267 | 00000000 l df *ABS* 00000000 wifi_mlme_handler.c | 267 | 00000000 l df *ABS* 00000000 wifi_mlme_handler.c |
268 | -08010a20 l F .text 00001188 RxCmdQueue_Thread | ||
269 | -20002bcc l O .bss 0000000c rxcmd_count_sem | ||
270 | -20002be4 l O .bss 00000001 sub_states_counter | ||
271 | -0804e6b0 l O .text 00000013 __FUNCTION__.11741 | ||
272 | -0804e6d0 l O .text 0000001c StatusDebugMsg | ||
273 | -20002be8 l O .bss 00000004 rxcmd_queue_event | ||
274 | -0804e6f0 l O .text 00000002 CSWTCH.67 | ||
275 | -0804eff0 l O .text 00000014 __FUNCTION__.11733 | ||
276 | -20002bf0 l O .bss 00000002 rxcmd_count | ||
277 | -20002bf8 l O .bss 000018b0 waRxCmdQueue | 268 | +08010930 l F .text 00001188 RxCmdQueue_Thread |
269 | +20002aac l O .bss 0000000c rxcmd_count_sem | ||
270 | +20002ac4 l O .bss 00000001 sub_states_counter | ||
271 | +0804e650 l O .text 00000013 __FUNCTION__.11741 | ||
272 | +0804e670 l O .text 0000001c StatusDebugMsg | ||
273 | +20002ac8 l O .bss 00000004 rxcmd_queue_event | ||
274 | +0804e690 l O .text 00000002 CSWTCH.67 | ||
275 | +0804ef90 l O .text 00000014 __FUNCTION__.11733 | ||
276 | +20002ad0 l O .bss 00000002 rxcmd_count | ||
277 | +20002ad8 l O .bss 000018b0 waRxCmdQueue | ||
278 | 00000000 l df *ABS* 00000000 wifi_ps.c | 278 | 00000000 l df *ABS* 00000000 wifi_ps.c |
279 | -08011da0 l F .text 0000001e wifi_PsSendInterface_Down | ||
280 | -08011dc0 l F .text 0000000c wifi_ps_lock | ||
281 | -080122b0 l F .text 0000008c ps_traffic_timeout_cb | ||
282 | -200044a9 l O .bss 00000001 ps_data_ind_received | ||
283 | -0804f010 l O .text 0000000e __FUNCTION__.11475 | ||
284 | -200044aa l O .bss 00000001 state | ||
285 | -200044ac l O .bss 00000004 ok_to_send | ||
286 | -0804f020 l O .text 00000011 __FUNCTION__.11522 | ||
287 | -0804f3b0 l O .text 0000000f __FUNCTION__.11478 | 279 | +08011cb0 l F .text 0000001e wifi_PsSendInterface_Down |
280 | +08011cd0 l F .text 0000000c wifi_ps_lock | ||
281 | +080121c0 l F .text 0000008c ps_traffic_timeout_cb | ||
282 | +20004389 l O .bss 00000001 ps_data_ind_received | ||
283 | +0804efb0 l O .text 0000000e __FUNCTION__.11475 | ||
284 | +2000438a l O .bss 00000001 state | ||
285 | +2000438c l O .bss 00000004 ok_to_send | ||
286 | +0804efc0 l O .text 00000011 __FUNCTION__.11522 | ||
287 | +0804f350 l O .text 0000000f __FUNCTION__.11478 | ||
288 | 20001188 l O .data 00000001 ps_main_state | 288 | 20001188 l O .data 00000001 ps_main_state |
289 | -0804f3c0 l O .text 00000010 __FUNCTION__.11514 | ||
290 | -200044b0 l O .bss 00000001 ps_traffic_timeout_running | 289 | +0804f360 l O .text 00000010 __FUNCTION__.11514 |
290 | +20004390 l O .bss 00000001 ps_traffic_timeout_running | ||
291 | 2000118c l O .data 00000004 hic_if_users | 291 | 2000118c l O .data 00000004 hic_if_users |
292 | -200044b4 l O .bss 00000020 ps_traffic_te | ||
293 | -200044d4 l O .bss 0000000c ps_lock | 292 | +20004394 l O .bss 00000020 ps_traffic_te |
293 | +200043b4 l O .bss 0000000c ps_lock | ||
294 | 00000000 l df *ABS* 00000000 wifi_data_queue.c | 294 | 00000000 l df *ABS* 00000000 wifi_data_queue.c |
295 | 00000000 l df *ABS* 00000000 wifi_cmds_flow.c | 295 | 00000000 l df *ABS* 00000000 wifi_cmds_flow.c |
296 | -08012510 l F .text 0000000c cmd_list_find_based_on_trans_id | ||
297 | -08012520 l F .text 0000000c find_min_timestamp | ||
298 | -08012530 l F .text 000000c4 cmd_flow_check_thread | ||
299 | -200044ec l O .bss 00000004 wifi_sem_data_path_limit | ||
300 | -0804f3d0 l O .text 0000001c __FUNCTION__.11382 | ||
301 | -200044f0 l O .bss 00000004 fw_reset_event | ||
302 | -200044f4 l O .bss 00000004 list_sended_data_packets | ||
303 | -0804f3f0 l O .text 0000001c __FUNCTION__.11394 | ||
304 | -200044f8 l O .bss 0000000c wifi_sem_recover_barrier | ||
305 | -20004504 l O .bss 00000004 wifi_sem_cmd_path_limit | ||
306 | -20004508 l O .bss 0000001c periodic_evt | ||
307 | -20004524 l O .bss 0000000e sended_cmd_packet | ||
308 | -20004534 l O .bss 00000004 cmd_flow_check_tp | 296 | +08012420 l F .text 0000000c cmd_list_find_based_on_trans_id |
297 | +08012430 l F .text 0000000c find_min_timestamp | ||
298 | +08012440 l F .text 000000c4 cmd_flow_check_thread | ||
299 | +200043cc l O .bss 00000004 wifi_sem_data_path_limit | ||
300 | +0804f370 l O .text 0000001c __FUNCTION__.11382 | ||
301 | +200043d0 l O .bss 00000004 fw_reset_event | ||
302 | +200043d4 l O .bss 00000004 list_sended_data_packets | ||
303 | +0804f390 l O .text 0000001c __FUNCTION__.11394 | ||
304 | +200043d8 l O .bss 0000000c wifi_sem_recover_barrier | ||
305 | +200043e4 l O .bss 00000004 wifi_sem_cmd_path_limit | ||
306 | +200043e8 l O .bss 0000001c periodic_evt | ||
307 | +20004404 l O .bss 0000000e sended_cmd_packet | ||
308 | +20004414 l O .bss 00000004 cmd_flow_check_tp | ||
309 | 00000000 l df *ABS* 00000000 wifi_filter.c | 309 | 00000000 l df *ABS* 00000000 wifi_filter.c |
310 | -080128a0 l F .text 00000020 wifi_multicast_list_copy_macs | ||
311 | -080128c0 l F .text 00000012 multicast_list_find_based_on_mac | ||
312 | -20004768 l O .bss 00000004 multicast_list | 310 | +080127b0 l F .text 00000020 wifi_multicast_list_copy_macs |
311 | +080127d0 l F .text 00000012 multicast_list_find_based_on_mac | ||
312 | +20004648 l O .bss 00000004 multicast_list | ||
313 | 200011a4 l O .data 00000002 filter_exclude | 313 | 200011a4 l O .data 00000002 filter_exclude |
314 | -2000476c l O .bss 00000001 multicast_flags | 314 | +2000464c l O .bss 00000001 multicast_flags |
315 | 00000000 l df *ABS* 00000000 wifi_scan.c | 315 | 00000000 l df *ABS* 00000000 wifi_scan.c |
316 | -08012b30 l F .text 0000000e scan_list_find_based_on_counter | ||
317 | -08012b40 l F .text 00000008 scan_list_exec_dec_count | ||
318 | -08012b50 l F .text 00000004 scan_list_find_based_on_desire | ||
319 | -08012b60 l F .text 00000010 scan_list_exec_best_rssi | ||
320 | -08012b70 l F .text 00000014 scan_list_find_based_on_bssId | ||
321 | -08012b90 l F .text 0000007c scan_list_find_based_on_rssi | ||
322 | -20004770 l O .bss 00000026 scan_params | ||
323 | -20004798 l O .bss 00000004 scan_list | ||
324 | -2000479c l O .bss 00000001 running_scan | 316 | +08012a40 l F .text 0000000e scan_list_find_based_on_counter |
317 | +08012a50 l F .text 00000008 scan_list_exec_dec_count | ||
318 | +08012a60 l F .text 00000004 scan_list_find_based_on_desire | ||
319 | +08012a70 l F .text 00000010 scan_list_exec_best_rssi | ||
320 | +08012a80 l F .text 00000014 scan_list_find_based_on_bssId | ||
321 | +08012aa0 l F .text 0000007c scan_list_find_based_on_rssi | ||
322 | +20004650 l O .bss 00000026 scan_params | ||
323 | +20004678 l O .bss 00000004 scan_list | ||
324 | +2000467c l O .bss 00000001 running_scan | ||
325 | 00000000 l df *ABS* 00000000 mibs.c | 325 | 00000000 l df *ABS* 00000000 mibs.c |
326 | -0804f5e0 l O .text 000009dc dlm_mib_table_client | ||
327 | -0804ffc0 l O .text 000009dc dlm_mib_table_softap | ||
328 | -08050cf0 l O .text 000003e0 g_mib_table | 326 | +0804f580 l O .text 000009dc dlm_mib_table_client |
327 | +0804ff60 l O .text 000009dc dlm_mib_table_softap | ||
328 | +08050c90 l O .text 000003e0 g_mib_table | ||
329 | 00000000 l df *ABS* 00000000 roam.c | 329 | 00000000 l df *ABS* 00000000 roam.c |
330 | -08013800 l F .text 00000008 event_list_exec_roam | ||
331 | -08013810 l F .text 00000004 event_list_find_notvalid | ||
332 | -200047a8 l O .bss 00000003 bg_scan_times | ||
333 | -200047ac l O .bss 00000001 roam_state | ||
334 | -200047b0 l O .bss 00000004 roam_events_list | 330 | +08013710 l F .text 00000008 event_list_exec_roam |
331 | +08013720 l F .text 00000004 event_list_find_notvalid | ||
332 | +20004688 l O .bss 00000003 bg_scan_times | ||
333 | +2000468c l O .bss 00000001 roam_state | ||
334 | +20004690 l O .bss 00000004 roam_events_list | ||
335 | 00000000 l df *ABS* 00000000 debug.c | 335 | 00000000 l df *ABS* 00000000 debug.c |
336 | 00000000 l df *ABS* 00000000 print.c | 336 | 00000000 l df *ABS* 00000000 print.c |
337 | -08013930 l F .text 000000b0 long_itoa | ||
338 | -080139e0 l F .text 00000128 vfprintf_ | ||
339 | -08013b10 l F .text 0000002c putc_strg | ||
340 | -200047b4 l O .bss 00000002 string_index | ||
341 | -200047b8 l O .bss 00000100 string_buffer | ||
342 | -200048b8 l O .bss 0000000c print_lock | 337 | +08013840 l F .text 000000b0 long_itoa |
338 | +080138f0 l F .text 00000128 vfprintf_ | ||
339 | +08013a20 l F .text 0000002c putc_strg | ||
340 | +20004694 l O .bss 00000002 string_index | ||
341 | +20004698 l O .bss 00000100 string_buffer | ||
342 | +20004798 l O .bss 0000000c print_lock | ||
343 | 00000000 l df *ABS* 00000000 link_list.c | 343 | 00000000 l df *ABS* 00000000 link_list.c |
344 | 00000000 l df *ABS* 00000000 timer_events.c | 344 | 00000000 l df *ABS* 00000000 timer_events.c |
345 | -08013d20 l F .text 00000004 timer_event_forward | 345 | +08013c30 l F .text 00000004 timer_event_forward |
346 | 00000000 l df *ABS* 00000000 rtc.c | 346 | 00000000 l df *ABS* 00000000 rtc.c |
347 | -200048c4 l O .bss 00000004 PeriodValue | ||
348 | -200048cc l O .bss 00000004 OperationComplete | ||
349 | -200048d0 l O .bss 00000004 LsiFreq | 347 | +200047a4 l O .bss 00000004 PeriodValue |
348 | +200047ac l O .bss 00000004 OperationComplete | ||
349 | +200047b0 l O .bss 00000004 LsiFreq | ||
350 | 00000000 l df *ABS* 00000000 gpio.c | 350 | 00000000 l df *ABS* 00000000 gpio.c |
351 | 00000000 l df *ABS* 00000000 wifi_transport.c | 351 | 00000000 l df *ABS* 00000000 wifi_transport.c |
352 | -08014260 l F .text 000000ec CmdResp6Error | ||
353 | -08014350 l F .text 0000004a CmdResp1Error | ||
354 | -080143a0 l F .text 00000150 CmdResp5Error | ||
355 | -080510f0 l O .text 0000000e __FUNCTION__.11615 | ||
356 | -200048dc l O .bss 00000014 SDIO_CmdInitStructure | ||
357 | -08051100 l O .text 00000015 __FUNCTION__.11621 | ||
358 | -080145b0 l F .text 000000be HW_SDIO_Write_Byte | ||
359 | -08014670 l F .text 00000154 Init_Target | ||
360 | -080147d0 l F .text 00000030 Reset_Target | ||
361 | -200048f0 l O .bss 00000018 SDIO_InitStructure | ||
362 | -20004908 l O .bss 00000004 GPIO_InitStructure | ||
363 | -200048d8 l O .bss 00000001 TransferError | ||
364 | -200048d4 l O .bss 00000004 TransferEnd | ||
365 | -08014f20 l F .text 0000011a HW_WiFiTransport_WaitWriteOperation | ||
366 | -08051120 l O .text 00000024 __FUNCTION__.11673 | ||
367 | -08015040 l F .text 000001fc _HW_WiFiTransport_SendCMD53 | ||
368 | -2000490c l O .bss 00000018 SDIO_DataInitStructure | 352 | +08014170 l F .text 000000ec CmdResp6Error |
353 | +08014260 l F .text 0000004a CmdResp1Error | ||
354 | +080142b0 l F .text 00000150 CmdResp5Error | ||
355 | +08051090 l O .text 0000000e __FUNCTION__.11615 | ||
356 | +200047bc l O .bss 00000014 SDIO_CmdInitStructure | ||
357 | +080510a0 l O .text 00000015 __FUNCTION__.11621 | ||
358 | +080144c0 l F .text 000000be HW_SDIO_Write_Byte | ||
359 | +08014580 l F .text 00000154 Init_Target | ||
360 | +080146e0 l F .text 00000030 Reset_Target | ||
361 | +200047d0 l O .bss 00000018 SDIO_InitStructure | ||
362 | +200047e8 l O .bss 00000004 GPIO_InitStructure | ||
363 | +200047b8 l O .bss 00000001 TransferError | ||
364 | +200047b4 l O .bss 00000004 TransferEnd | ||
365 | +08014e30 l F .text 0000011a HW_WiFiTransport_WaitWriteOperation | ||
366 | +080510c0 l O .text 00000024 __FUNCTION__.11673 | ||
367 | +08014f50 l F .text 000001fc _HW_WiFiTransport_SendCMD53 | ||
368 | +200047ec l O .bss 00000018 SDIO_DataInitStructure | ||
369 | 00000000 l df *ABS* 00000000 rcc.c | 369 | 00000000 l df *ABS* 00000000 rcc.c |
370 | 00000000 l df *ABS* 00000000 registry_driver.c | 370 | 00000000 l df *ABS* 00000000 registry_driver.c |
371 | 00000000 l df *ABS* 00000000 stm32_eeprom.c | 371 | 00000000 l df *ABS* 00000000 stm32_eeprom.c |
372 | 200011b0 l O .data 00000114 profile | 372 | 200011b0 l O .data 00000114 profile |
373 | 00000000 l df *ABS* 00000000 uart.c | 373 | 00000000 l df *ABS* 00000000 uart.c |
374 | -200049c0 l O .bss 00000004 usart_ptr | ||
375 | -200049c8 l O .bss 0000002c TX_DMA_InitStructure | ||
376 | -200049f4 l O .bss 0000002c RX_DMA_InitStructure | 374 | +200048a0 l O .bss 00000004 usart_ptr |
375 | +200048a8 l O .bss 0000002c TX_DMA_InitStructure | ||
376 | +200048d4 l O .bss 0000002c RX_DMA_InitStructure | ||
377 | 00000000 l df *ABS* 00000000 power.c | 377 | 00000000 l df *ABS* 00000000 power.c |
378 | 00000000 l df *ABS* 00000000 library_bootloader.c | 378 | 00000000 l df *ABS* 00000000 library_bootloader.c |
379 | -08051500 l O .text 000080e8 g_SoftAP_TargetFWimage | ||
380 | -080595f0 l O .text 0000a17c g_Client_TargetFWimage | 379 | +080514a0 l O .text 000080e8 g_SoftAP_TargetFWimage |
380 | +08059590 l O .text 0000a17c g_Client_TargetFWimage | ||
381 | 00000000 l df *ABS* 00000000 common.c | 381 | 00000000 l df *ABS* 00000000 common.c |
382 | -080161d0 l F .text 0000002c hex2num | 382 | +08015f80 l F .text 0000002c hex2num |
383 | 00000000 l df *ABS* 00000000 config_wifiengine.c | 383 | 00000000 l df *ABS* 00000000 config_wifiengine.c |
384 | -08016390 l F .text 00000068 findmark_mem | ||
385 | -08016400 l F .text 000000a8 find_and_decode_base64 | ||
386 | -08063780 l O .text 00000024 __FUNCTION__.12865 | ||
387 | -080637b0 l O .text 0000000d __FUNCTION__.12834 | 384 | +08016140 l F .text 00000068 findmark_mem |
385 | +080161b0 l F .text 000000a8 find_and_decode_base64 | ||
386 | +08063720 l O .text 00000024 __FUNCTION__.12865 | ||
387 | +08063750 l O .text 0000000d __FUNCTION__.12834 | ||
388 | 00000000 l df *ABS* 00000000 driver_wifiengine.c | 388 | 00000000 l df *ABS* 00000000 driver_wifiengine.c |
389 | -08016a40 l F .text 00000004 wpa_driver_WE_set_countermeasures | ||
390 | -08016a50 l F .text 00000004 wpa_driver_WE_disassociate | ||
391 | -08016a60 l F .text 00000004 wpa_driver_WE_add_pmkid | ||
392 | -08016a70 l F .text 00000004 wpa_driver_WE_remove_pmkid | ||
393 | -08016a80 l F .text 00000004 wpa_driver_WE_flush_pmkid | ||
394 | -08016a90 l F .text 00000004 wpa_driver_WE_set_operstate | ||
395 | -08016c10 l F .text 00000008 wpa_driver_WE_set_ap_wps_ie | ||
396 | -08016c20 l F .text 00000022 wpa_driver_WE_get_capa | ||
397 | -08016c60 l F .text 0000000a wpa_driver_WE_deauthenticate | ||
398 | -08016cb0 l F .text 00000038 wpa_driver_WE_get_mac_addr | ||
399 | -08016cf0 l F .text 00000044 wpa_driver_WE_associate | ||
400 | -08017350 l F .text 00000180 wpa_driver_WE_send_eapol | 389 | +080167f0 l F .text 00000004 wpa_driver_WE_set_countermeasures |
390 | +08016800 l F .text 00000004 wpa_driver_WE_disassociate | ||
391 | +08016810 l F .text 00000004 wpa_driver_WE_add_pmkid | ||
392 | +08016820 l F .text 00000004 wpa_driver_WE_remove_pmkid | ||
393 | +08016830 l F .text 00000004 wpa_driver_WE_flush_pmkid | ||
394 | +08016840 l F .text 00000004 wpa_driver_WE_set_operstate | ||
395 | +080169c0 l F .text 00000008 wpa_driver_WE_set_ap_wps_ie | ||
396 | +080169d0 l F .text 00000022 wpa_driver_WE_get_capa | ||
397 | +08016a10 l F .text 0000000a wpa_driver_WE_deauthenticate | ||
398 | +08016a60 l F .text 00000038 wpa_driver_WE_get_mac_addr | ||
399 | +08016aa0 l F .text 00000044 wpa_driver_WE_associate | ||
400 | +08017100 l F .text 00000180 wpa_driver_WE_send_eapol | ||
401 | 00000000 l df *ABS* 00000000 main_wifiengine.c | 401 | 00000000 l df *ABS* 00000000 main_wifiengine.c |
402 | -08017760 l F .text 0000000c ec_wpa_supplicant_event_thread | ||
403 | -20004a48 l O .bss 00000004 global | ||
404 | -20004a4c l O .bss 00000040 nr_p2p_group_psk | 402 | +08017510 l F .text 0000000c ec_wpa_supplicant_event_thread |
403 | +20004928 l O .bss 00000004 global | ||
404 | +2000492c l O .bss 00000040 nr_p2p_group_psk | ||
405 | 00000000 l df *ABS* 00000000 os_wifiengine.c | 405 | 00000000 l df *ABS* 00000000 os_wifiengine.c |
406 | -08063e00 l O .text 0000000a __FUNCTION__.9516 | 406 | +08063da0 l O .text 0000000a __FUNCTION__.9516 |
407 | 00000000 l df *ABS* 00000000 wpa_supplicant.c | 407 | 00000000 l df *ABS* 00000000 wpa_supplicant.c |
408 | -08017c80 l F .text 00000064 select_driver | ||
409 | -08017cf0 l F .text 0000009a wpa_supplicant_set_wpa_none_key | ||
410 | -080186d0 l F .text 000000a4 wpa_supplicant_timeout | ||
411 | -08018250 l F .text 0000004c wpa_supplicant_clear_connection | ||
412 | -080187d0 l F .text 00000164 wpa_supplicant_deinit_iface | ||
413 | -08063e70 l O .text 00000022 __FUNCTION__.15210 | ||
414 | -08064140 l O .text 0000000c CSWTCH.135 | ||
415 | -08064150 l O .text 00000010 CSWTCH.105 | ||
416 | -20004a8c l O .bss 00000004 interface_count.15458 | 408 | +08017a30 l F .text 00000064 select_driver |
409 | +08017aa0 l F .text 0000009a wpa_supplicant_set_wpa_none_key | ||
410 | +08018480 l F .text 000000a4 wpa_supplicant_timeout | ||
411 | +08018000 l F .text 0000004c wpa_supplicant_clear_connection | ||
412 | +08018580 l F .text 00000164 wpa_supplicant_deinit_iface | ||
413 | +08063e10 l O .text 00000022 __FUNCTION__.15210 | ||
414 | +080640e0 l O .text 0000000c CSWTCH.135 | ||
415 | +080640f0 l O .text 00000010 CSWTCH.105 | ||
416 | +2000496c l O .bss 00000004 interface_count.15458 | ||
417 | 00000000 l df *ABS* 00000000 wps.c | 417 | 00000000 l df *ABS* 00000000 wps.c |
418 | 00000000 l df *ABS* 00000000 wps_registrar.c | 418 | 00000000 l df *ABS* 00000000 wps_registrar.c |
419 | -08019ce0 l F .text 0000002c wps_set_pushbutton | ||
420 | -08019d10 l F .text 00000060 wps_sta_cred_cb | ||
421 | -08019d70 l F .text 00000020 wps_device_get | ||
422 | -08019d90 l F .text 00000016 wps_process_registrar_nonce | ||
423 | -08019db0 l F .text 00000058 wps_registrar_add_authorized_mac | ||
424 | -08019e10 l F .text 000000b8 wps_process_wsc_nack | ||
425 | -08019ed0 l F .text 000000d8 wps_registrar_add_pbc_session | ||
426 | -08019fb0 l F .text 00000086 wps_registrar_remove_pbc_session | ||
427 | -0801a040 l F .text 00000056 wps_registrar_remove_authorized_mac | ||
428 | -0801a0a0 l F .text 00000010 wps_process_wsc_ack.isra.22 | ||
429 | -0801a0b0 l F .text 00000034 wps_build_wps_state.isra.17 | ||
430 | -0801a0f0 l F .text 00000030 wps_build_ap_setup_locked.part.18 | ||
431 | -0801a120 l F .text 00000030 wps_build_selected_registrar.part.19 | ||
432 | -0801a150 l F .text 00000066 wps_build_sel_reg_config_methods.part.16 | ||
433 | -0801a1c0 l F .text 0000004a wps_build_sel_reg_dev_password_id | ||
434 | -0801a210 l F .text 0000013c wps_build_credential | ||
435 | -0801a350 l F .text 00000044 wps_build_uuid_r | ||
436 | -0801a3a0 l F .text 000000f4 wps_build_m2d | ||
437 | -0801a640 l F .text 000002b0 wps_set_ie | ||
438 | -0801b160 l F .text 00000014 wps_registrar_pbc_timeout | ||
439 | -0801af90 l F .text 0000000a wps_registrar_set_selected_timeout | ||
440 | -0801af60 l F .text 00000022 wps_registrar_pin_completed | ||
441 | -0801afa0 l F .text 00000038 wps_registrar_stop_pbc | ||
442 | -0801afe0 l F .text 00000180 wps_process_wsc_done | ||
443 | -0801b1b0 l F .text 00000070 wps_registrar_remove_pin | ||
444 | -0801b9a0 l F .text 00000700 wps_process_wsc_msg | 419 | +08019a90 l F .text 0000002c wps_set_pushbutton |
420 | +08019ac0 l F .text 00000060 wps_sta_cred_cb | ||
421 | +08019b20 l F .text 00000020 wps_device_get | ||
422 | +08019b40 l F .text 00000016 wps_process_registrar_nonce | ||
423 | +08019b60 l F .text 00000058 wps_registrar_add_authorized_mac | ||
424 | +08019bc0 l F .text 000000b8 wps_process_wsc_nack | ||
425 | +08019c80 l F .text 000000d8 wps_registrar_add_pbc_session | ||
426 | +08019d60 l F .text 00000086 wps_registrar_remove_pbc_session | ||
427 | +08019df0 l F .text 00000056 wps_registrar_remove_authorized_mac | ||
428 | +08019e50 l F .text 00000010 wps_process_wsc_ack.isra.22 | ||
429 | +08019e60 l F .text 00000034 wps_build_wps_state.isra.17 | ||
430 | +08019ea0 l F .text 00000030 wps_build_ap_setup_locked.part.18 | ||
431 | +08019ed0 l F .text 00000030 wps_build_selected_registrar.part.19 | ||
432 | +08019f00 l F .text 00000066 wps_build_sel_reg_config_methods.part.16 | ||
433 | +08019f70 l F .text 0000004a wps_build_sel_reg_dev_password_id | ||
434 | +08019fc0 l F .text 0000013c wps_build_credential | ||
435 | +0801a100 l F .text 00000044 wps_build_uuid_r | ||
436 | +0801a150 l F .text 000000f4 wps_build_m2d | ||
437 | +0801a3f0 l F .text 000002b0 wps_set_ie | ||
438 | +0801af10 l F .text 00000014 wps_registrar_pbc_timeout | ||
439 | +0801ad40 l F .text 0000000a wps_registrar_set_selected_timeout | ||
440 | +0801ad10 l F .text 00000022 wps_registrar_pin_completed | ||
441 | +0801ad50 l F .text 00000038 wps_registrar_stop_pbc | ||
442 | +0801ad90 l F .text 00000180 wps_process_wsc_done | ||
443 | +0801af60 l F .text 00000070 wps_registrar_remove_pin | ||
444 | +0801b750 l F .text 00000700 wps_process_wsc_msg | ||
445 | 00000000 l df *ABS* 00000000 wps_supplicant.c | 445 | 00000000 l df *ABS* 00000000 wps_supplicant.c |
446 | -0801c1f0 l F .text 00000004 wpas_wps_new_psk_cb | ||
447 | -0801c200 l F .text 00000002 wpas_wps_set_sel_reg_cb | ||
448 | -0801c210 l F .text 00000088 wpas_clear_wps | ||
449 | -0801c2a0 l F .text 00000004 wpas_wps_timeout | ||
450 | -0801c2b0 l F .text 00000098 wpas_wps_pin_needed_cb | ||
451 | -0801c350 l F .text 000005dc wpa_supplicant_wps_cred | ||
452 | -0801c930 l F .text 00000128 wpas_wps_add_network | ||
453 | -0801ca60 l F .text 0000005c wpas_wps_reassoc | ||
454 | -0801cac0 l F .text 0000005c wpas_wps_set_uuid | ||
455 | -0801cb20 l F .text 000000f8 wpa_supplicant_wps_event | ||
456 | -08064310 l O .text 00000019 __FUNCTION__.14944 | ||
457 | -080646c0 l O .text 00000021 __FUNCTION__.14899 | 446 | +0801bfa0 l F .text 00000004 wpas_wps_new_psk_cb |
447 | +0801bfb0 l F .text 00000002 wpas_wps_set_sel_reg_cb | ||
448 | +0801bfc0 l F .text 00000088 wpas_clear_wps | ||
449 | +0801c050 l F .text 00000004 wpas_wps_timeout | ||
450 | +0801c060 l F .text 00000098 wpas_wps_pin_needed_cb | ||
451 | +0801c100 l F .text 000005dc wpa_supplicant_wps_cred | ||
452 | +0801c6e0 l F .text 00000128 wpas_wps_add_network | ||
453 | +0801c810 l F .text 0000005c wpas_wps_reassoc | ||
454 | +0801c870 l F .text 0000005c wpas_wps_set_uuid | ||
455 | +0801c8d0 l F .text 000000f8 wpa_supplicant_wps_event | ||
456 | +080642b0 l O .text 00000019 __FUNCTION__.14944 | ||
457 | +08064660 l O .text 00000021 __FUNCTION__.14899 | ||
458 | 00000000 l df *ABS* 00000000 ap.c | 458 | 00000000 l df *ABS* 00000000 ap.c |
459 | -0801d260 l F .text 00000002 ap_public_action_rx | ||
460 | -0801d270 l F .text 00000002 ap_wps_event_cb | ||
461 | -0801d280 l F .text 00000004 ap_vendor_action_rx | ||
462 | -0801d290 l F .text 00000004 ap_probe_req_rx | ||
463 | -0801d2a0 l F .text 00000002 ap_wps_reg_success_cb | ||
464 | -0801d2b0 l F .text 0000001c wpa_supplicant_ap_wps_sta_cancel | ||
465 | -0801d2d0 l F .text 00000004 ap_sta_authorized_cb | ||
466 | -0801da30 l F .text 00000004 wpas_wps_ap_pin_timeout | 459 | +0801d010 l F .text 00000002 ap_public_action_rx |
460 | +0801d020 l F .text 00000002 ap_wps_event_cb | ||
461 | +0801d030 l F .text 00000004 ap_vendor_action_rx | ||
462 | +0801d040 l F .text 00000004 ap_probe_req_rx | ||
463 | +0801d050 l F .text 00000002 ap_wps_reg_success_cb | ||
464 | +0801d060 l F .text 0000001c wpa_supplicant_ap_wps_sta_cancel | ||
465 | +0801d080 l F .text 00000004 ap_sta_authorized_cb | ||
466 | +0801d7e0 l F .text 00000004 wpas_wps_ap_pin_timeout | ||
467 | 00000000 l df *ABS* 00000000 hostapd.c | 467 | 00000000 l df *ABS* 00000000 hostapd.c |
468 | -0801da80 l F .text 0000002e hostapd_broadcast_key_clear_iface | ||
469 | -0801dab0 l F .text 00000158 hostapd_setup_encryption | ||
470 | -0801dc70 l F .text 00000044 hostapd_flush_old_stations | 468 | +0801d830 l F .text 0000002e hostapd_broadcast_key_clear_iface |
469 | +0801d860 l F .text 00000158 hostapd_setup_encryption | ||
470 | +0801da20 l F .text 00000044 hostapd_flush_old_stations | ||
471 | 00000000 l df *ABS* 00000000 wpa_auth_glue.c | 471 | 00000000 l df *ABS* 00000000 wpa_auth_glue.c |
472 | -0801e2d0 l F .text 00000002 hostapd_wpa_auth_logger | ||
473 | -0801e2e0 l F .text 00000026 hostapd_wpa_auth_for_each_sta | ||
474 | -0801e310 l F .text 00000032 wpa_auth_iface_iter | ||
475 | -0801e350 l F .text 00000028 hostapd_wpa_auth_for_each_auth | ||
476 | -0801e380 l F .text 0000002a hostapd_wpa_auth_get_eapol | ||
477 | -0801e3b0 l F .text 00000048 hostapd_wpa_auth_send_eapol | ||
478 | -0801e400 l F .text 0000001c hostapd_wpa_auth_get_seqnum | ||
479 | -0801e420 l F .text 00000044 hostapd_wpa_auth_set_key | ||
480 | -0801e470 l F .text 0000003e hostapd_wpa_auth_get_msk | ||
481 | -0801e4b0 l F .text 00000006 hostapd_wpa_auth_get_psk | ||
482 | -0801e4c0 l F .text 00000096 hostapd_wpa_auth_set_eapol | ||
483 | -0801e560 l F .text 00000006 hostapd_wpa_auth_mic_failure_report | ||
484 | -0801e570 l F .text 00000010 hostapd_wpa_auth_disconnect | ||
485 | -0801e580 l F .text 0000009a hostapd_wpa_auth_send_ether | 472 | +0801e080 l F .text 00000002 hostapd_wpa_auth_logger |
473 | +0801e090 l F .text 00000026 hostapd_wpa_auth_for_each_sta | ||
474 | +0801e0c0 l F .text 00000032 wpa_auth_iface_iter | ||
475 | +0801e100 l F .text 00000028 hostapd_wpa_auth_for_each_auth | ||
476 | +0801e130 l F .text 0000002a hostapd_wpa_auth_get_eapol | ||
477 | +0801e160 l F .text 00000048 hostapd_wpa_auth_send_eapol | ||
478 | +0801e1b0 l F .text 0000001c hostapd_wpa_auth_get_seqnum | ||
479 | +0801e1d0 l F .text 00000044 hostapd_wpa_auth_set_key | ||
480 | +0801e220 l F .text 0000003e hostapd_wpa_auth_get_msk | ||
481 | +0801e260 l F .text 00000006 hostapd_wpa_auth_get_psk | ||
482 | +0801e270 l F .text 00000096 hostapd_wpa_auth_set_eapol | ||
483 | +0801e310 l F .text 00000006 hostapd_wpa_auth_mic_failure_report | ||
484 | +0801e320 l F .text 00000010 hostapd_wpa_auth_disconnect | ||
485 | +0801e330 l F .text 0000009a hostapd_wpa_auth_send_ether | ||
486 | 00000000 l df *ABS* 00000000 utils.c | 486 | 00000000 l df *ABS* 00000000 utils.c |
487 | -0801e780 l F .text 0000003a prune_associations | 487 | +0801e530 l F .text 0000003a prune_associations |
488 | 00000000 l df *ABS* 00000000 authsrv.c | 488 | 00000000 l df *ABS* 00000000 authsrv.c |
489 | 00000000 l df *ABS* 00000000 ap_config.c | 489 | 00000000 l df *ABS* 00000000 ap_config.c |
490 | -0801e840 l F .text 00000024 hostapd_config_free_radius | ||
491 | -20004af4 l O .bss 00000064 wsc_enrollee.12020 | ||
492 | -080646f0 l O .text 00000010 txq_be.11900 | ||
493 | -08064700 l O .text 00000014 ac_vo.11898 | ||
494 | -08064720 l O .text 00000014 ac_vi.11897 | ||
495 | -08064740 l O .text 00000014 ac_bk.11895 | ||
496 | -08064760 l O .text 00000014 ac_be.11896 | ||
497 | -08064780 l O .text 00000010 txq_vo.11902 | ||
498 | -08064790 l O .text 00000010 txq_bk.11899 | ||
499 | -080647a0 l O .text 00000010 txq_vi.11901 | ||
500 | -20004b58 l O .bss 00000064 wsc_registrar.12021 | 490 | +0801e5f0 l F .text 00000024 hostapd_config_free_radius |
491 | +200049d4 l O .bss 00000064 wsc_enrollee.12020 | ||
492 | +08064690 l O .text 00000010 txq_be.11900 | ||
493 | +080646a0 l O .text 00000014 ac_vo.11898 | ||
494 | +080646c0 l O .text 00000014 ac_vi.11897 | ||
495 | +080646e0 l O .text 00000014 ac_bk.11895 | ||
496 | +08064700 l O .text 00000014 ac_be.11896 | ||
497 | +08064720 l O .text 00000010 txq_vo.11902 | ||
498 | +08064730 l O .text 00000010 txq_bk.11899 | ||
499 | +08064740 l O .text 00000010 txq_vi.11901 | ||
500 | +20004a38 l O .bss 00000064 wsc_registrar.12021 | ||
501 | 00000000 l df *ABS* 00000000 sta_info.c | 501 | 00000000 l df *ABS* 00000000 sta_info.c |
502 | -0801ee60 l F .text 00000036 ap_sta_remove | ||
503 | -0801eea0 l F .text 0000001a ap_sta_disassoc_cb_timeout | ||
504 | -0801eec0 l F .text 0000001a ap_sta_deauth_cb_timeout | ||
505 | -0801f2f0 l F .text 0000003e ap_handle_session_timer | 502 | +0801ec10 l F .text 00000036 ap_sta_remove |
503 | +0801ec50 l F .text 0000001a ap_sta_disassoc_cb_timeout | ||
504 | +0801ec70 l F .text 0000001a ap_sta_deauth_cb_timeout | ||
505 | +0801f0a0 l F .text 0000003e ap_handle_session_timer | ||
506 | 00000000 l df *ABS* 00000000 tkip_countermeasures.c | 506 | 00000000 l df *ABS* 00000000 tkip_countermeasures.c |
507 | -0801f680 l F .text 0000001c ieee80211_tkip_countermeasures_stop | 507 | +0801f430 l F .text 0000001c ieee80211_tkip_countermeasures_stop |
508 | 00000000 l df *ABS* 00000000 ap_mlme.c | 508 | 00000000 l df *ABS* 00000000 ap_mlme.c |
509 | 00000000 l df *ABS* 00000000 ieee802_1x.c | 509 | 00000000 l df *ABS* 00000000 ieee802_1x.c |
510 | -0801f7d0 l F .text 00000002 ieee802_1x_aaa_send | ||
511 | -0801f7e0 l F .text 00000002 ieee802_1x_logger | ||
512 | -0801f7f0 l F .text 00000018 ieee802_1x_sta_key_available | ||
513 | -0801f810 l F .text 000000fc ieee802_1x_rekey | ||
514 | -0801f910 l F .text 00000012 ieee802_1x_sta_entry_alive | ||
515 | -0801f930 l F .text 0000006a ieee802_1x_get_eap_user | ||
516 | -0801f9a0 l F .text 00000052 _ieee802_1x_finished | ||
517 | -0801fa00 l F .text 00000096 ieee802_1x_send | ||
518 | -0801faa0 l F .text 00000074 ieee802_1x_eapol_send | ||
519 | -0801fb20 l F .text 00000044 ieee802_1x_alloc_eapol_sm | ||
520 | -0801fb70 l F .text 0000019a ieee802_1x_tx_key_one | ||
521 | -0801fd10 l F .text 0000001a ieee802_1x_eapol_event | ||
522 | -0801fd70 l F .text 00000004 ieee802_1x_set_port_authorized | ||
523 | -0801fe30 l F .text 00000004 _ieee802_1x_tx_key | ||
524 | -080201b0 l F .text 00000004 _ieee802_1x_abort_auth | 510 | +0801f580 l F .text 00000002 ieee802_1x_aaa_send |
511 | +0801f590 l F .text 00000002 ieee802_1x_logger | ||
512 | +0801f5a0 l F .text 00000018 ieee802_1x_sta_key_available | ||
513 | +0801f5c0 l F .text 000000fc ieee802_1x_rekey | ||
514 | +0801f6c0 l F .text 00000012 ieee802_1x_sta_entry_alive | ||
515 | +0801f6e0 l F .text 0000006a ieee802_1x_get_eap_user | ||
516 | +0801f750 l F .text 00000052 _ieee802_1x_finished | ||
517 | +0801f7b0 l F .text 00000096 ieee802_1x_send | ||
518 | +0801f850 l F .text 00000074 ieee802_1x_eapol_send | ||
519 | +0801f8d0 l F .text 00000044 ieee802_1x_alloc_eapol_sm | ||
520 | +0801f920 l F .text 0000019a ieee802_1x_tx_key_one | ||
521 | +0801fac0 l F .text 0000001a ieee802_1x_eapol_event | ||
522 | +0801fb20 l F .text 00000004 ieee802_1x_set_port_authorized | ||
523 | +0801fbe0 l F .text 00000004 _ieee802_1x_tx_key | ||
524 | +0801ff60 l F .text 00000004 _ieee802_1x_abort_auth | ||
525 | 00000000 l df *ABS* 00000000 eapol_auth_sm.c | 525 | 00000000 l df *ABS* 00000000 eapol_auth_sm.c |
526 | -080203c0 l F .text 00000016 eapol_sm_get_eap_user | ||
527 | -080203e0 l F .text 0000000c eapol_sm_get_eap_req_id_text | ||
528 | -080203f0 l F .text 00000058 eapol_auth_vlogger | ||
529 | -08020450 l F .text 00000098 eapol_auth_tx_canned_eap | ||
530 | -080204f0 l F .text 000000b0 eapol_auth_tx_req | ||
531 | -080205a0 l F .text 00000090 sm_AUTH_PAE_DISCONNECTED_Enter.constprop.6 | ||
532 | -08020630 l F .text 0000003a sm_AUTH_PAE_RESTART_Enter.constprop.7 | ||
533 | -08020670 l F .text 00000024 sm_BE_AUTH_REQUEST_Enter.constprop.11 | ||
534 | -08021000 l F .text 00000050 eapol_port_timers_tick | ||
535 | -08020ff0 l F .text 00000004 eapol_sm_step_cb | ||
536 | -08020700 l F .text 000008f0 eapol_sm_step_run | 526 | +08020170 l F .text 00000016 eapol_sm_get_eap_user |
527 | +08020190 l F .text 0000000c eapol_sm_get_eap_req_id_text | ||
528 | +080201a0 l F .text 00000058 eapol_auth_vlogger | ||
529 | +08020200 l F .text 00000098 eapol_auth_tx_canned_eap | ||
530 | +080202a0 l F .text 000000b0 eapol_auth_tx_req | ||
531 | +08020350 l F .text 00000090 sm_AUTH_PAE_DISCONNECTED_Enter.constprop.6 | ||
532 | +080203e0 l F .text 0000003a sm_AUTH_PAE_RESTART_Enter.constprop.7 | ||
533 | +08020420 l F .text 00000024 sm_BE_AUTH_REQUEST_Enter.constprop.11 | ||
534 | +08020db0 l F .text 00000050 eapol_port_timers_tick | ||
535 | +08020da0 l F .text 00000004 eapol_sm_step_cb | ||
536 | +080204b0 l F .text 000008f0 eapol_sm_step_run | ||
537 | 200012cc l O .data 00000008 eapol_cb | 537 | 200012cc l O .data 00000008 eapol_cb |
538 | 00000000 l df *ABS* 00000000 ieee802_11_auth.c | 538 | 00000000 l df *ABS* 00000000 ieee802_11_auth.c |
539 | 00000000 l df *ABS* 00000000 ap_drv_ops.c | 539 | 00000000 l df *ABS* 00000000 ap_drv_ops.c |
540 | 00000000 l df *ABS* 00000000 beacon.c | 540 | 00000000 l df *ABS* 00000000 beacon.c |
541 | 00000000 l df *ABS* 00000000 eap_server.c | 541 | 00000000 l df *ABS* 00000000 eap_server.c |
542 | -08021b70 l F .text 0000008e eap_sm_parseEapResp | ||
543 | -08021c00 l F .text 0000001c eap_user_free | ||
544 | -08021c20 l F .text 00000028 eap_copy_buf | ||
545 | -08021c50 l F .text 00000050 sm_EAP_FAILURE_Enter | ||
546 | -08021ca0 l F .text 000000b8 sm_EAP_PROPOSE_METHOD_Enter.constprop.19 | ||
547 | -08021d60 l F .text 00000066 sm_EAP_METHOD_REQUEST_Enter.constprop.21 | ||
548 | -08021dd0 l F .text 0000002c sm_EAP_IDLE_Enter.constprop.26 | ||
549 | -08021e00 l F .text 0000002c sm_EAP_IDLE2_Enter.constprop.14 | ||
550 | -08021ea0 l F .text 00000134 sm_EAP_SELECT_ACTION_Enter.constprop.17 | ||
551 | -08022070 l F .text 0000005c sm_EAP_METHOD_RESPONSE_Enter.constprop.20 | ||
552 | -080220d0 l F .text 00000072 sm_EAP_NAK_Enter.constprop.18 | ||
553 | -08022320 l F .text 000000a0 sm_EAP_INITIALIZE_Enter | 542 | +08021920 l F .text 0000008e eap_sm_parseEapResp |
543 | +080219b0 l F .text 0000001c eap_user_free | ||
544 | +080219d0 l F .text 00000028 eap_copy_buf | ||
545 | +08021a00 l F .text 00000050 sm_EAP_FAILURE_Enter | ||
546 | +08021a50 l F .text 000000b8 sm_EAP_PROPOSE_METHOD_Enter.constprop.19 | ||
547 | +08021b10 l F .text 00000066 sm_EAP_METHOD_REQUEST_Enter.constprop.21 | ||
548 | +08021b80 l F .text 0000002c sm_EAP_IDLE_Enter.constprop.26 | ||
549 | +08021bb0 l F .text 0000002c sm_EAP_IDLE2_Enter.constprop.14 | ||
550 | +08021c50 l F .text 00000134 sm_EAP_SELECT_ACTION_Enter.constprop.17 | ||
551 | +08021e20 l F .text 0000005c sm_EAP_METHOD_RESPONSE_Enter.constprop.20 | ||
552 | +08021e80 l F .text 00000072 sm_EAP_NAK_Enter.constprop.18 | ||
553 | +080220d0 l F .text 000000a0 sm_EAP_INITIALIZE_Enter | ||
554 | 00000000 l df *ABS* 00000000 eap_server_methods.c | 554 | 00000000 l df *ABS* 00000000 eap_server_methods.c |
555 | -20004bbc l O .bss 00000004 eap_methods | 555 | +20004a9c l O .bss 00000004 eap_methods |
556 | 00000000 l df *ABS* 00000000 wps_hostapd.c | 556 | 00000000 l df *ABS* 00000000 wps_hostapd.c |
557 | -08022ab0 l F .text 0000002e wps_for_each | ||
558 | -08022ae0 l F .text 00000028 hostapd_wps_for_each | ||
559 | -08022b10 l F .text 00000002 hostapd_wps_pin_needed_cb | ||
560 | -08022b20 l F .text 0000000e hostapd_wps_cred_cb | ||
561 | -08022e10 l F .text 000000ec hapd_wps_cred_cb | ||
562 | -08022b30 l F .text 0000002c hostapd_wps_event_cb | ||
563 | -08022d40 l F .text 0000009c wps_pwd_auth_fail | ||
564 | -08022b60 l F .text 0000000a count_interface_cb | ||
565 | -08022b70 l F .text 0000002a wps_ap_pin_disable | ||
566 | -08023580 l F .text 00000004 hostapd_wps_ap_pin_timeout | ||
567 | -08022ba0 l F .text 00000060 hostapd_wps_set_vendor_ext | ||
568 | -08022c00 l F .text 0000003c get_uuid_cb | ||
569 | -08022c40 l F .text 0000005a hostapd_wps_new_psk_cb | ||
570 | -08022ca0 l F .text 00000012 hostapd_wps_enrollee_seen_cb | ||
571 | -08022cc0 l F .text 0000001a wps_stop_registrar | ||
572 | -08022ce0 l F .text 00000036 hostapd_wps_set_ie_cb | ||
573 | -08022d20 l F .text 00000016 hostapd_wps_reenable_ap_pin | ||
574 | -08022de0 l F .text 0000002a hapd_new_ap_event.isra.4 | ||
575 | -08022f00 l F .text 00000078 hostapd_wps_probe_req_rx | ||
576 | -08022f80 l F .text 0000003c hostapd_wps_reg_success_cb | 557 | +08022860 l F .text 0000002e wps_for_each |
558 | +08022890 l F .text 00000028 hostapd_wps_for_each | ||
559 | +080228c0 l F .text 00000002 hostapd_wps_pin_needed_cb | ||
560 | +080228d0 l F .text 0000000e hostapd_wps_cred_cb | ||
561 | +08022bc0 l F .text 000000ec hapd_wps_cred_cb | ||
562 | +080228e0 l F .text 0000002c hostapd_wps_event_cb | ||
563 | +08022af0 l F .text 0000009c wps_pwd_auth_fail | ||
564 | +08022910 l F .text 0000000a count_interface_cb | ||
565 | +08022920 l F .text 0000002a wps_ap_pin_disable | ||
566 | +08023330 l F .text 00000004 hostapd_wps_ap_pin_timeout | ||
567 | +08022950 l F .text 00000060 hostapd_wps_set_vendor_ext | ||
568 | +080229b0 l F .text 0000003c get_uuid_cb | ||
569 | +080229f0 l F .text 0000005a hostapd_wps_new_psk_cb | ||
570 | +08022a50 l F .text 00000012 hostapd_wps_enrollee_seen_cb | ||
571 | +08022a70 l F .text 0000001a wps_stop_registrar | ||
572 | +08022a90 l F .text 00000036 hostapd_wps_set_ie_cb | ||
573 | +08022ad0 l F .text 00000016 hostapd_wps_reenable_ap_pin | ||
574 | +08022b90 l F .text 0000002a hapd_new_ap_event.isra.4 | ||
575 | +08022cb0 l F .text 00000078 hostapd_wps_probe_req_rx | ||
576 | +08022d30 l F .text 0000003c hostapd_wps_reg_success_cb | ||
577 | 00000000 l df *ABS* 00000000 wpa_auth.c | 577 | 00000000 l df *ABS* 00000000 wpa_auth.c |
578 | -08023590 l F .text 00000016 wpa_auth_pmksa_clear_cb | ||
579 | -080235b0 l F .text 00000018 wpa_auth_pmksa_free_cb | ||
580 | -080235d0 l F .text 00000050 wpa_group_config_group_keys | ||
581 | -08023620 l F .text 00000040 wpa_rekey_gmk | ||
582 | -08023660 l F .text 0000006c wpa_group_init_gmk_and_counter | ||
583 | -080236d0 l F .text 00000088 wpa_verify_key_mic | ||
584 | -08023760 l F .text 00000032 wpa_free_sta_sm | ||
585 | -080237a0 l F .text 00000150 sm_WPA_PTK_PTKCALCNEGOTIATING_Enter.constprop.14 | ||
586 | -08024e90 l F .text 00000030 wpa_send_eapol_timeout | ||
587 | -080238f0 l F .text 0000002c sm_WPA_PTK_DISCONNECT_Enter.constprop.17 | ||
588 | -08023920 l F .text 000000ec wpa_gtk_update | ||
589 | -08023a10 l F .text 00000080 sm_WPA_PTK_AUTHENTICATION2_Enter.constprop.11 | ||
590 | -08023a90 l F .text 0000003c wpa_group_setkeys | ||
591 | -08024f00 l F .text 00000068 wpa_group_update_sta | ||
592 | -08023ad0 l F .text 0000007a wpa_group_sm_step | ||
593 | -08023b50 l F .text 00000082 wpa_group_init | ||
594 | -08023be0 l F .text 00000058 wpa_rekey_gtk | ||
595 | -08024f70 l F .text 00000004 wpa_sm_call_step | ||
596 | -08024ec0 l F .text 00000034 wpa_rekey_ptk | ||
597 | -080242a0 l F .text 000000a8 wpa_send_eapol | ||
598 | -08024350 l F .text 000000f0 sm_WPA_PTK_PTKSTART_Enter.constprop.15 | ||
599 | -08024440 l F .text 00000108 sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter.constprop.8 | ||
600 | -08024550 l F .text 00000174 sm_WPA_PTK_PTKINITNEGOTIATING_Enter.constprop.18 | ||
601 | -08024720 l F .text 000000a2 sm_WPA_PTK_INITIALIZE_Enter.constprop.10 | ||
602 | -080247d0 l F .text 000006bc wpa_sm_step | ||
603 | -08064a40 l O .text 0000000f CSWTCH.44 | 578 | +08023340 l F .text 00000016 wpa_auth_pmksa_clear_cb |
579 | +08023360 l F .text 00000018 wpa_auth_pmksa_free_cb | ||
580 | +08023380 l F .text 00000050 wpa_group_config_group_keys | ||
581 | +080233d0 l F .text 00000040 wpa_rekey_gmk | ||
582 | +08023410 l F .text 0000006c wpa_group_init_gmk_and_counter | ||
583 | +08023480 l F .text 00000088 wpa_verify_key_mic | ||
584 | +08023510 l F .text 00000032 wpa_free_sta_sm | ||
585 | +08023550 l F .text 00000150 sm_WPA_PTK_PTKCALCNEGOTIATING_Enter.constprop.14 | ||
586 | +08024c40 l F .text 00000030 wpa_send_eapol_timeout | ||
587 | +080236a0 l F .text 0000002c sm_WPA_PTK_DISCONNECT_Enter.constprop.17 | ||
588 | +080236d0 l F .text 000000ec wpa_gtk_update | ||
589 | +080237c0 l F .text 00000080 sm_WPA_PTK_AUTHENTICATION2_Enter.constprop.11 | ||
590 | +08023840 l F .text 0000003c wpa_group_setkeys | ||
591 | +08024cb0 l F .text 00000068 wpa_group_update_sta | ||
592 | +08023880 l F .text 0000007a wpa_group_sm_step | ||
593 | +08023900 l F .text 00000082 wpa_group_init | ||
594 | +08023990 l F .text 00000058 wpa_rekey_gtk | ||
595 | +08024d20 l F .text 00000004 wpa_sm_call_step | ||
596 | +08024c70 l F .text 00000034 wpa_rekey_ptk | ||
597 | +08024050 l F .text 000000a8 wpa_send_eapol | ||
598 | +08024100 l F .text 000000f0 sm_WPA_PTK_PTKSTART_Enter.constprop.15 | ||
599 | +080241f0 l F .text 00000108 sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter.constprop.8 | ||
600 | +08024300 l F .text 00000174 sm_WPA_PTK_PTKINITNEGOTIATING_Enter.constprop.18 | ||
601 | +080244d0 l F .text 000000a2 sm_WPA_PTK_INITIALIZE_Enter.constprop.10 | ||
602 | +08024580 l F .text 000006bc wpa_sm_step | ||
603 | +080649e0 l O .text 0000000f CSWTCH.44 | ||
604 | 00000000 l df *ABS* 00000000 wpa_auth_ie.c | 604 | 00000000 l df *ABS* 00000000 wpa_auth_ie.c |
605 | -080257b0 l F .text 0000001a wpa_auth_okc_iter | 605 | +08025560 l F .text 0000001a wpa_auth_okc_iter |
606 | 00000000 l df *ABS* 00000000 pmksa_cache_auth.c | 606 | 00000000 l df *ABS* 00000000 pmksa_cache_auth.c |
607 | -08026020 l F .text 0000004a pmksa_cache_link_entry | ||
608 | -08026070 l F .text 0000007e pmksa_cache_free_entry | ||
609 | -080260f0 l F .text 00000068 pmksa_cache_expire | 607 | +08025dd0 l F .text 0000004a pmksa_cache_link_entry |
608 | +08025e20 l F .text 0000007e pmksa_cache_free_entry | ||
609 | +08025ea0 l F .text 00000068 pmksa_cache_expire | ||
610 | 00000000 l df *ABS* 00000000 system_stm32f10x.c | 610 | 00000000 l df *ABS* 00000000 system_stm32f10x.c |
611 | 00000000 l df *ABS* 00000000 misc.c | 611 | 00000000 l df *ABS* 00000000 misc.c |
612 | 00000000 l df *ABS* 00000000 stm32f10x_bkp.c | 612 | 00000000 l df *ABS* 00000000 stm32f10x_bkp.c |
@@ -621,371 +621,374 @@ SYMBOL TABLE: | @@ -621,371 +621,374 @@ SYMBOL TABLE: | ||
621 | 00000000 l df *ABS* 00000000 stm32f10x_rtc.c | 621 | 00000000 l df *ABS* 00000000 stm32f10x_rtc.c |
622 | 00000000 l df *ABS* 00000000 stm32f10x_sdio.c | 622 | 00000000 l df *ABS* 00000000 stm32f10x_sdio.c |
623 | 00000000 l df *ABS* 00000000 stm32f10x_tim.c | 623 | 00000000 l df *ABS* 00000000 stm32f10x_tim.c |
624 | -080273f0 l F .text 00000084 TI1_Config | ||
625 | -08027480 l F .text 00000090 TI2_Config | 624 | +080271a0 l F .text 00000084 TI1_Config |
625 | +08027230 l F .text 00000090 TI2_Config | ||
626 | 00000000 l df *ABS* 00000000 stm32f10x_dbgmcu.c | 626 | 00000000 l df *ABS* 00000000 stm32f10x_dbgmcu.c |
627 | 00000000 l df *ABS* 00000000 stm32f10x_usart.c | 627 | 00000000 l df *ABS* 00000000 stm32f10x_usart.c |
628 | 00000000 l df *ABS* 00000000 api_lib.c | 628 | 00000000 l df *ABS* 00000000 api_lib.c |
629 | -080279a0 l F .text 00000124 netconn_recv_data | 629 | +08027750 l F .text 00000124 netconn_recv_data |
630 | 00000000 l df *ABS* 00000000 api_msg.c | 630 | 00000000 l df *ABS* 00000000 api_msg.c |
631 | -08027d10 l F .text 0000004a setup_tcp | ||
632 | -08028220 l F .text 00000084 recv_tcp | ||
633 | -080282b0 l F .text 00000050 sent_tcp | ||
634 | -080280c0 l F .text 00000056 poll_tcp | ||
635 | -08027ef0 l F .text 000000a0 err_tcp | ||
636 | -08027d60 l F .text 0000010c do_close_internal | ||
637 | -08027e70 l F .text 00000072 do_connected | ||
638 | -08027f90 l F .text 00000128 do_writemore | ||
639 | -08028120 l F .text 0000006e recv_udp | ||
640 | -08028190 l F .text 00000088 recv_raw | 631 | +08027ac0 l F .text 0000004a setup_tcp |
632 | +08027fd0 l F .text 00000084 recv_tcp | ||
633 | +08028060 l F .text 00000050 sent_tcp | ||
634 | +08027e70 l F .text 00000056 poll_tcp | ||
635 | +08027ca0 l F .text 000000a0 err_tcp | ||
636 | +08027b10 l F .text 0000010c do_close_internal | ||
637 | +08027c20 l F .text 00000072 do_connected | ||
638 | +08027d40 l F .text 00000128 do_writemore | ||
639 | +08027ed0 l F .text 0000006e recv_udp | ||
640 | +08027f40 l F .text 00000088 recv_raw | ||
641 | 00000000 l df *ABS* 00000000 netbuf.c | 641 | 00000000 l df *ABS* 00000000 netbuf.c |
642 | 00000000 l df *ABS* 00000000 tcpip.c | 642 | 00000000 l df *ABS* 00000000 tcpip.c |
643 | -20004bc0 l O .bss 00000004 mbox | 643 | +08028360 l F .text 000000dc tcpip_thread |
644 | +20004aa0 l O .bss 00000001 tcpip_thread_started | ||
645 | +20004aa4 l O .bss 00000004 mbox | ||
646 | +20004aa8 l O .bss 00000004 tcpip_init_done_arg | ||
647 | +20004aac l O .bss 00000004 tcpip_init_done | ||
644 | 00000000 l df *ABS* 00000000 def.c | 648 | 00000000 l df *ABS* 00000000 def.c |
645 | 00000000 l df *ABS* 00000000 dhcp.c | 649 | 00000000 l df *ABS* 00000000 dhcp.c |
646 | -08028690 l F .text 00000042 dhcp_option_long | ||
647 | -080286e0 l F .text 000001a8 dhcp_create_msg | ||
648 | -08028890 l F .text 0000005c dhcp_option_hostname | ||
649 | -080288f0 l F .text 0000002a dhcp_check | ||
650 | -08028920 l F .text 00000118 dhcp_bind | ||
651 | -08028a40 l F .text 00000048 dhcp_option_trailer | ||
652 | -08028a90 l F .text 00000030 dhcp_delete_msg | ||
653 | -08028ac0 l F .text 000000cc dhcp_rebind | ||
654 | -08028b90 l F .text 000000ec dhcp_reboot | ||
655 | -08028c80 l F .text 00000178 dhcp_select | ||
656 | -08029100 l F .text 000005d0 dhcp_recv | ||
657 | -20004bd0 l O .bss 00000004 xid.7854 | 650 | +08028570 l F .text 00000042 dhcp_option_long |
651 | +080285c0 l F .text 000001a8 dhcp_create_msg | ||
652 | +08028770 l F .text 0000005c dhcp_option_hostname | ||
653 | +080287d0 l F .text 0000002a dhcp_check | ||
654 | +08028800 l F .text 00000118 dhcp_bind | ||
655 | +08028920 l F .text 00000048 dhcp_option_trailer | ||
656 | +08028970 l F .text 00000030 dhcp_delete_msg | ||
657 | +080289a0 l F .text 000000cc dhcp_rebind | ||
658 | +08028a70 l F .text 000000ec dhcp_reboot | ||
659 | +08028b60 l F .text 00000178 dhcp_select | ||
660 | +08028fe0 l F .text 000005d0 dhcp_recv | ||
661 | +20004abc l O .bss 00000004 xid.7854 | ||
658 | 00000000 l df *ABS* 00000000 dns.c | 662 | 00000000 l df *ABS* 00000000 dns.c |
659 | -08029a80 l F .text 00000108 dns_send | ||
660 | -08029b90 l F .text 000000b0 dns_check_entry | ||
661 | -08029c40 l F .text 000001b0 dns_recv | ||
662 | -20004c00 l O .bss 00000460 dns_table | ||
663 | -20005060 l O .bss 00000008 dns_servers | ||
664 | -20005068 l O .bss 00000203 dns_payload_buffer | ||
665 | -2000526c l O .bss 00000004 dns_pcb | ||
666 | -20005270 l O .bss 00000004 dns_payload | 663 | +08029960 l F .text 00000108 dns_send |
664 | +08029a70 l F .text 000000b0 dns_check_entry | ||
665 | +08029b20 l F .text 000001b0 dns_recv | ||
666 | +20004aec l O .bss 00000460 dns_table | ||
667 | +20004f4c l O .bss 00000008 dns_servers | ||
668 | +20004f54 l O .bss 00000203 dns_payload_buffer | ||
669 | +20005158 l O .bss 00000004 dns_pcb | ||
670 | +2000515c l O .bss 00000004 dns_payload | ||
667 | 00000000 l df *ABS* 00000000 init.c | 671 | 00000000 l df *ABS* 00000000 init.c |
668 | 00000000 l df *ABS* 00000000 memp.c | 672 | 00000000 l df *ABS* 00000000 memp.c |
669 | -08065630 l O .text 00000020 memp_num | ||
670 | -20005274 l O .bss 00007f27 memp_memory | ||
671 | -2000d19c l O .bss 00000040 memp_tab | ||
672 | -08065670 l O .text 00000020 memp_sizes | 673 | +080655f0 l O .text 00000020 memp_num |
674 | +20005160 l O .bss 00007f27 memp_memory | ||
675 | +2000d088 l O .bss 00000040 memp_tab | ||
676 | +08065630 l O .text 00000020 memp_sizes | ||
673 | 00000000 l df *ABS* 00000000 netif.c | 677 | 00000000 l df *ABS* 00000000 netif.c |
674 | -2000d1e4 l O .bss 00000001 netif_num | 678 | +2000d0d0 l O .bss 00000001 netif_num |
675 | 00000000 l df *ABS* 00000000 pbuf.c | 679 | 00000000 l df *ABS* 00000000 pbuf.c |
676 | -0802a2e0 l F .text 00000038 pbuf_free_ooseq_callback | ||
677 | -0802a320 l F .text 0000003c pbuf_pool_is_empty | 680 | +0802a1c0 l F .text 00000038 pbuf_free_ooseq_callback |
681 | +0802a200 l F .text 0000003c pbuf_pool_is_empty | ||
678 | 00000000 l df *ABS* 00000000 raw.c | 682 | 00000000 l df *ABS* 00000000 raw.c |
679 | -2000d1e8 l O .bss 00000004 raw_pcbs | 683 | +2000d0d4 l O .bss 00000004 raw_pcbs |
680 | 00000000 l df *ABS* 00000000 stats.c | 684 | 00000000 l df *ABS* 00000000 stats.c |
681 | 00000000 l df *ABS* 00000000 tcp.c | 685 | 00000000 l df *ABS* 00000000 tcp.c |
682 | -0802a920 l F .text 00000058 tcp_new_port | ||
683 | -0802b100 l F .text 0000016c tcp_close_shutdown | ||
684 | -2000d374 l O .bss 00000001 tcp_timer | 686 | +0802a800 l F .text 00000058 tcp_new_port |
687 | +0802afe0 l F .text 0000016c tcp_close_shutdown | ||
688 | +2000d260 l O .bss 00000001 tcp_timer | ||
685 | 200012e8 l O .data 00000002 tcp_port | 689 | 200012e8 l O .data 00000002 tcp_port |
686 | 200012ec l O .data 00000004 iss.7950 | 690 | 200012ec l O .data 00000004 iss.7950 |
687 | -2000d380 l O .bss 00000001 tcp_timer_ctr | 691 | +2000d26c l O .bss 00000001 tcp_timer_ctr |
688 | 00000000 l df *ABS* 00000000 tcp_out.c | 692 | 00000000 l df *ABS* 00000000 tcp_out.c |
689 | -0802b590 l F .text 000000bc tcp_create_segment | ||
690 | -0802b650 l F .text 0000005a tcp_output_alloc_header.constprop.1 | 693 | +0802b470 l F .text 000000bc tcp_create_segment |
694 | +0802b530 l F .text 0000005a tcp_output_alloc_header.constprop.1 | ||
691 | 00000000 l df *ABS* 00000000 udp.c | 695 | 00000000 l df *ABS* 00000000 udp.c |
692 | 200012f0 l O .data 00000002 udp_port | 696 | 200012f0 l O .data 00000002 udp_port |
693 | 00000000 l df *ABS* 00000000 timers.c | 697 | 00000000 l df *ABS* 00000000 timers.c |
694 | -0802c740 l F .text 00000030 tcpip_tcp_timer | ||
695 | -2000d390 l O .bss 00000004 tcpip_tcp_timer_active | ||
696 | -2000d394 l O .bss 00000004 next_timeout | 698 | +0802c620 l F .text 00000030 tcpip_tcp_timer |
699 | +2000d27c l O .bss 00000004 tcpip_tcp_timer_active | ||
700 | +2000d280 l O .bss 00000004 next_timeout | ||
697 | 00000000 l df *ABS* 00000000 icmp.c | 701 | 00000000 l df *ABS* 00000000 icmp.c |
698 | -0802c770 l F .text 0000009a icmp_send_response | 702 | +0802c710 l F .text 0000009a icmp_send_response |
699 | 00000000 l df *ABS* 00000000 igmp.c | 703 | 00000000 l df *ABS* 00000000 igmp.c |
700 | -0802c960 l F .text 000000c8 igmp_send | ||
701 | -0802ca30 l F .text 00000034 igmp_delaying_member | ||
702 | -0802ca70 l F .text 0000004c igmp_lookup_group | ||
703 | -2000d398 l O .bss 00000004 allsystems | ||
704 | -2000d39c l O .bss 00000004 allrouters | ||
705 | -2000d3a0 l O .bss 00000004 igmp_group_list | 704 | +0802c900 l F .text 000000c8 igmp_send |
705 | +0802c9d0 l F .text 00000034 igmp_delaying_member | ||
706 | +0802ca10 l F .text 0000004c igmp_lookup_group | ||
707 | +2000d284 l O .bss 00000004 allsystems | ||
708 | +2000d288 l O .bss 00000004 allrouters | ||
709 | +2000d28c l O .bss 00000004 igmp_group_list | ||
706 | 00000000 l df *ABS* 00000000 inet_chksum.c | 710 | 00000000 l df *ABS* 00000000 inet_chksum.c |
707 | -0802cd90 l F .text 0000007c lwip_standard_chksum | 711 | +0802cd30 l F .text 0000007c lwip_standard_chksum |
708 | 00000000 l df *ABS* 00000000 ip.c | 712 | 00000000 l df *ABS* 00000000 ip.c |
709 | -2000d3a8 l O .bss 00000002 ip_id | 713 | +2000d294 l O .bss 00000002 ip_id |
710 | 00000000 l df *ABS* 00000000 ip_addr.c | 714 | 00000000 l df *ABS* 00000000 ip_addr.c |
711 | -2000d3b8 l O .bss 00000010 str.7295 | 715 | +2000d2a4 l O .bss 00000010 str.7295 |
712 | 00000000 l df *ABS* 00000000 ip_frag.c | 716 | 00000000 l df *ABS* 00000000 ip_frag.c |
713 | -0802d5c0 l F .text 0000009c ip_reass_free_complete_datagram | ||
714 | -0802d660 l F .text 00000098 ip_reass_remove_oldest_datagram | ||
715 | -2000d3c8 l O .bss 00000004 reassdatagrams | ||
716 | -2000d3cc l O .bss 00000002 ip_reass_pbufcount | 717 | +0802d560 l F .text 0000009c ip_reass_free_complete_datagram |
718 | +0802d600 l F .text 00000098 ip_reass_remove_oldest_datagram | ||
719 | +2000d2b4 l O .bss 00000004 reassdatagrams | ||
720 | +2000d2b8 l O .bss 00000002 ip_reass_pbufcount | ||
717 | 00000000 l df *ABS* 00000000 etharp.c | 721 | 00000000 l df *ABS* 00000000 etharp.c |
718 | -0802dbe0 l F .text 00000024 etharp_send_ip | ||
719 | -0802dc10 l F .text 00000048 etharp_free_entry | ||
720 | -0802dc60 l F .text 00000100 etharp_find_entry | ||
721 | -0802e060 l F .text 0000005c etharp_output_to_arp_index | ||
722 | -2000d3ce l O .bss 00000001 etharp_cached_entry | ||
723 | -2000d3d0 l O .bss 000000c8 arp_table | 722 | +0802db80 l F .text 00000024 etharp_send_ip |
723 | +0802dbb0 l F .text 00000048 etharp_free_entry | ||
724 | +0802dc00 l F .text 00000100 etharp_find_entry | ||
725 | +0802e000 l F .text 0000005c etharp_output_to_arp_index | ||
726 | +2000d2ba l O .bss 00000001 etharp_cached_entry | ||
727 | +2000d2bc l O .bss 000000c8 arp_table | ||
724 | 00000000 l df *ABS* 00000000 ethernetif.c | 728 | 00000000 l df *ABS* 00000000 ethernetif.c |
725 | -0802e3b0 l F .text 00000038 low_level_output | 729 | +0802e350 l F .text 00000038 low_level_output |
726 | 00000000 l df *ABS* 00000000 sys_arch.c | 730 | 00000000 l df *ABS* 00000000 sys_arch.c |
727 | 00000000 l df *ABS* 00000000 libwismart_pbuf_queues.c | 731 | 00000000 l df *ABS* 00000000 libwismart_pbuf_queues.c |
728 | -0802e5e0 l F .text 0000005c _PBufQueue_RemoveLast | 732 | +0802e5b0 l F .text 0000005c _PBufQueue_RemoveLast |
729 | 00000000 l df *ABS* 00000000 ec_tools.c | 733 | 00000000 l df *ABS* 00000000 ec_tools.c |
730 | -0802e7c0 l F .text 0000000e FunctionExecutioner | 734 | +0802e790 l F .text 0000000e FunctionExecutioner |
731 | 00000000 l df *ABS* 00000000 eeprom.c | 735 | 00000000 l df *ABS* 00000000 eeprom.c |
732 | -0802e810 l F .text 0000005a EE_FindValidPage_ | ||
733 | -0802e870 l F .text 00000068 EE_VerifyPageFullWriteVariable_ | 736 | +0802e7e0 l F .text 0000005a EE_FindValidPage_ |
734 | 00000000 l df *ABS* 00000000 base64.c | 737 | 00000000 l df *ABS* 00000000 base64.c |
735 | -08065a10 l O .text 00000041 base64_table | 738 | +080659d0 l O .text 00000041 base64_table |
736 | 00000000 l df *ABS* 00000000 blacklist.c | 739 | 00000000 l df *ABS* 00000000 blacklist.c |
737 | 00000000 l df *ABS* 00000000 bss.c | 740 | 00000000 l df *ABS* 00000000 bss.c |
738 | -0802ee10 l F .text 00000036 wpa_bss_in_use | ||
739 | -0802ee50 l F .text 00000042 wpa_bss_remove | ||
740 | -0802eea0 l F .text 0000008c wpa_bss_copy_res | ||
741 | -0802f0c0 l F .text 00000028 wpa_bss_timeout | ||
742 | -0802f330 l F .text 0000012c are_ies_equal | 741 | +0802eca0 l F .text 00000036 wpa_bss_in_use |
742 | +0802ece0 l F .text 00000042 wpa_bss_remove | ||
743 | +0802ed30 l F .text 0000008c wpa_bss_copy_res | ||
744 | +0802ef50 l F .text 00000028 wpa_bss_timeout | ||
745 | +0802f1c0 l F .text 0000012c are_ies_equal | ||
743 | 00000000 l df *ABS* 00000000 config.c | 746 | 00000000 l df *ABS* 00000000 config.c |
744 | -0802f7e0 l F .text 0000002c wpa_config_parse_int | ||
745 | -0802f810 l F .text 000000dc wpa_config_parse_auth_alg | ||
746 | -0802f8f0 l F .text 00000118 wpa_config_parse_key_mgmt | ||
747 | -0802fa10 l F .text 000000d8 wpa_config_parse_proto | ||
748 | -0802faf0 l F .text 00000136 wpa_config_parse_eap | ||
749 | -0802fc30 l F .text 000000f4 wpa_config_parse_cipher.isra.1 | ||
750 | -0802fd30 l F .text 00000020 wpa_config_parse_group | ||
751 | -0802fd50 l F .text 00000020 wpa_config_parse_pairwise | ||
752 | -0802fd70 l F .text 0000007c wpa_config_parse_string | ||
753 | -0802fdf0 l F .text 00000074 wpa_config_parse_str | ||
754 | -0802fe70 l F .text 00000050 wpa_config_parse_wep_key.isra.3 | ||
755 | -0802fec0 l F .text 00000010 wpa_config_parse_wep_key3 | ||
756 | -0802fed0 l F .text 00000010 wpa_config_parse_wep_key2 | ||
757 | -0802fee0 l F .text 00000010 wpa_config_parse_wep_key1 | ||
758 | -0802fef0 l F .text 00000010 wpa_config_parse_wep_key0 | ||
759 | -0802ff00 l F .text 000000b4 wpa_config_parse_password | ||
760 | -0802ffc0 l F .text 0000009a wpa_config_parse_freqs.isra.5 | ||
761 | -08030060 l F .text 00000024 wpa_config_parse_freq_list | ||
762 | -08030090 l F .text 00000024 wpa_config_parse_scan_freq | ||
763 | -080300c0 l F .text 000000ac wpa_config_parse_psk | ||
764 | -08030170 l F .text 00000044 wpa_config_parse_bssid | ||
765 | -08065a70 l O .text 0000071c ssid_fields | 747 | +0802f670 l F .text 0000002c wpa_config_parse_int |
748 | +0802f6a0 l F .text 000000dc wpa_config_parse_auth_alg | ||
749 | +0802f780 l F .text 00000118 wpa_config_parse_key_mgmt | ||
750 | +0802f8a0 l F .text 000000d8 wpa_config_parse_proto | ||
751 | +0802f980 l F .text 00000136 wpa_config_parse_eap | ||
752 | +0802fac0 l F .text 000000f4 wpa_config_parse_cipher.isra.1 | ||
753 | +0802fbc0 l F .text 00000020 wpa_config_parse_group | ||
754 | +0802fbe0 l F .text 00000020 wpa_config_parse_pairwise | ||
755 | +0802fc00 l F .text 0000007c wpa_config_parse_string | ||
756 | +0802fc80 l F .text 00000074 wpa_config_parse_str | ||
757 | +0802fd00 l F .text 00000050 wpa_config_parse_wep_key.isra.3 | ||
758 | +0802fd50 l F .text 00000010 wpa_config_parse_wep_key3 | ||
759 | +0802fd60 l F .text 00000010 wpa_config_parse_wep_key2 | ||
760 | +0802fd70 l F .text 00000010 wpa_config_parse_wep_key1 | ||
761 | +0802fd80 l F .text 00000010 wpa_config_parse_wep_key0 | ||
762 | +0802fd90 l F .text 000000b4 wpa_config_parse_password | ||
763 | +0802fe50 l F .text 0000009a wpa_config_parse_freqs.isra.5 | ||
764 | +0802fef0 l F .text 00000024 wpa_config_parse_freq_list | ||
765 | +0802ff20 l F .text 00000024 wpa_config_parse_scan_freq | ||
766 | +0802ff50 l F .text 000000ac wpa_config_parse_psk | ||
767 | +08030000 l F .text 00000044 wpa_config_parse_bssid | ||
768 | +08065a30 l O .text 0000071c ssid_fields | ||
766 | 00000000 l df *ABS* 00000000 dh_group5.c | 769 | 00000000 l df *ABS* 00000000 dh_group5.c |
767 | 00000000 l df *ABS* 00000000 dh_groups.c | 770 | 00000000 l df *ABS* 00000000 dh_groups.c |
768 | 200012f4 l O .data 00000014 dh_groups | 771 | 200012f4 l O .data 00000014 dh_groups |
769 | -080667d0 l O .text 00000001 dh_group5_generator | ||
770 | -08066710 l O .text 000000c0 dh_group5_prime | 772 | +08066790 l O .text 00000001 dh_group5_generator |
773 | +080666d0 l O .text 000000c0 dh_group5_prime | ||
771 | 00000000 l df *ABS* 00000000 eap_common.c | 774 | 00000000 l df *ABS* 00000000 eap_common.c |
772 | 00000000 l df *ABS* 00000000 eap_methods.c | 775 | 00000000 l df *ABS* 00000000 eap_methods.c |
773 | -2000d49c l O .bss 00000004 eap_methods | 776 | +2000d384 l O .bss 00000004 eap_methods |
774 | 00000000 l df *ABS* 00000000 eap.c | 777 | 00000000 l df *ABS* 00000000 eap.c |
775 | -08030bb0 l F .text 00000042 sm_EAP_FAILURE_Enter | ||
776 | -08030c00 l F .text 000000ce sm_EAP_INITIALIZE_Enter | ||
777 | -08030cd0 l F .text 00000054 eap_peer_sm_tls_event | ||
778 | -08030d30 l F .text 0000003c sm_EAP_SUCCESS_Enter.constprop.7 | ||
779 | -08030d70 l F .text 00000028 sm_EAP_DISCARD_Enter.constprop.11 | ||
780 | -08030da0 l F .text 000000b4 sm_EAP_SEND_RESPONSE_Enter.constprop.12 | ||
781 | -08030e60 l F .text 0000011c sm_EAP_METHOD_Enter.constprop.13 | 778 | +08030a40 l F .text 00000042 sm_EAP_FAILURE_Enter |
779 | +08030a90 l F .text 000000ce sm_EAP_INITIALIZE_Enter | ||
780 | +08030b60 l F .text 00000054 eap_peer_sm_tls_event | ||
781 | +08030bc0 l F .text 0000003c sm_EAP_SUCCESS_Enter.constprop.7 | ||
782 | +08030c00 l F .text 00000028 sm_EAP_DISCARD_Enter.constprop.11 | ||
783 | +08030c30 l F .text 000000b4 sm_EAP_SEND_RESPONSE_Enter.constprop.12 | ||
784 | +08030cf0 l F .text 0000011c sm_EAP_METHOD_Enter.constprop.13 | ||
782 | 00000000 l df *ABS* 00000000 eapol_supp_sm.c | 785 | 00000000 l df *ABS* 00000000 eapol_supp_sm.c |
783 | -08031d80 l F .text 00000044 sm_SUPP_PAE_DISCONNECTED_Enter | ||
784 | -08031dd0 l F .text 00000028 eapol_sm_txLogoff | ||
785 | -08031e00 l F .text 00000006 eapol_sm_get_config | ||
786 | -08031e10 l F .text 00000008 eapol_sm_get_eapReqData | ||
787 | -08031e20 l F .text 00000048 eapol_sm_get_bool | ||
788 | -08031e70 l F .text 00000044 eapol_sm_set_bool | ||
789 | -08031ec0 l F .text 0000000c eapol_sm_get_int | ||
790 | -08031ed0 l F .text 00000014 eapol_sm_set_config_blob | ||
791 | -08031ef0 l F .text 0000001c eapol_sm_get_config_blob | ||
792 | -08031f10 l F .text 00000018 eapol_sm_notify_cert | ||
793 | -08031f30 l F .text 00000040 eapol_sm_txStart | ||
794 | -08031f70 l F .text 00000048 eapol_enable_timer_tick | ||
795 | -08032920 l F .text 000000d4 eapol_port_timers_tick | ||
796 | -08031fc0 l F .text 0000000c eapol_sm_set_int | ||
797 | -08031fd0 l F .text 00000026 sm_SUPP_PAE_AUTHENTICATED_Enter.constprop.9 | ||
798 | -08032000 l F .text 00000030 sm_SUPP_PAE_HELD_Enter.constprop.10 | ||
799 | -08032030 l F .text 0000005c sm_SUPP_PAE_CONNECTING_Enter.constprop.11 | ||
800 | -08032090 l F .text 00000026 sm_SUPP_BE_SUCCESS_Enter.constprop.15 | ||
801 | -080321f0 l F .text 000001e2 eapol_sm_processKey | ||
802 | -08032a00 l F .text 00000006 eapol_sm_step_timeout | ||
803 | -08032a10 l F .text 0000001c eapol_sm_notify_pending | 786 | +08031c10 l F .text 00000044 sm_SUPP_PAE_DISCONNECTED_Enter |
787 | +08031c60 l F .text 00000028 eapol_sm_txLogoff | ||
788 | +08031c90 l F .text 00000006 eapol_sm_get_config | ||
789 | +08031ca0 l F .text 00000008 eapol_sm_get_eapReqData | ||
790 | +08031cb0 l F .text 00000048 eapol_sm_get_bool | ||
791 | +08031d00 l F .text 00000044 eapol_sm_set_bool | ||
792 | +08031d50 l F .text 0000000c eapol_sm_get_int | ||
793 | +08031d60 l F .text 00000014 eapol_sm_set_config_blob | ||
794 | +08031d80 l F .text 0000001c eapol_sm_get_config_blob | ||
795 | +08031da0 l F .text 00000018 eapol_sm_notify_cert | ||
796 | +08031dc0 l F .text 00000040 eapol_sm_txStart | ||
797 | +08031e00 l F .text 00000048 eapol_enable_timer_tick | ||
798 | +080327b0 l F .text 000000d4 eapol_port_timers_tick | ||
799 | +08031e50 l F .text 0000000c eapol_sm_set_int | ||
800 | +08031e60 l F .text 00000026 sm_SUPP_PAE_AUTHENTICATED_Enter.constprop.9 | ||
801 | +08031e90 l F .text 00000030 sm_SUPP_PAE_HELD_Enter.constprop.10 | ||
802 | +08031ec0 l F .text 0000005c sm_SUPP_PAE_CONNECTING_Enter.constprop.11 | ||
803 | +08031f20 l F .text 00000026 sm_SUPP_BE_SUCCESS_Enter.constprop.15 | ||
804 | +08032080 l F .text 000001e2 eapol_sm_processKey | ||
805 | +08032890 l F .text 00000006 eapol_sm_step_timeout | ||
806 | +080328a0 l F .text 0000001c eapol_sm_notify_pending | ||
804 | 20001310 l O .data 0000002c eapol_cb | 807 | 20001310 l O .data 0000002c eapol_cb |
805 | 00000000 l df *ABS* 00000000 eap_register.c | 808 | 00000000 l df *ABS* 00000000 eap_register.c |
806 | 00000000 l df *ABS* 00000000 eap_tls.c | 809 | 00000000 l df *ABS* 00000000 eap_tls.c |
807 | -08032d70 l F .text 00000002 eap_tls_deinit_for_reauth | ||
808 | -08032d80 l F .text 0000000a eap_tls_isKeyAvailable | ||
809 | -08032d90 l F .text 0000003e eap_tls_get_emsk | ||
810 | -08032dd0 l F .text 0000003c eap_tls_getKey | ||
811 | -08032e10 l F .text 00000028 eap_tls_init_for_reauth | ||
812 | -08032e40 l F .text 00000010 eap_tls_has_reauth_data | ||
813 | -08032e50 l F .text 00000004 eap_tls_get_status | ||
814 | -08032e60 l F .text 0000001c eap_tls_deinit | ||
815 | -08032e80 l F .text 00000082 eap_tls_init | ||
816 | -08032f10 l F .text 000000fc eap_tls_process | 810 | +08032c00 l F .text 00000002 eap_tls_deinit_for_reauth |
811 | +08032c10 l F .text 0000000a eap_tls_isKeyAvailable | ||
812 | +08032c20 l F .text 0000003e eap_tls_get_emsk | ||
813 | +08032c60 l F .text 0000003c eap_tls_getKey | ||
814 | +08032ca0 l F .text 00000028 eap_tls_init_for_reauth | ||
815 | +08032cd0 l F .text 00000010 eap_tls_has_reauth_data | ||
816 | +08032ce0 l F .text 00000004 eap_tls_get_status | ||
817 | +08032cf0 l F .text 0000001c eap_tls_deinit | ||
818 | +08032d10 l F .text 00000082 eap_tls_init | ||
819 | +08032da0 l F .text 000000fc eap_tls_process | ||
817 | 00000000 l df *ABS* 00000000 eap_ttls.c | 820 | 00000000 l df *ABS* 00000000 eap_ttls.c |
818 | -080330a0 l F .text 00000010 eap_ttls_isKeyAvailable | ||
819 | -080330b0 l F .text 0000004a eap_ttls_init_for_reauth | ||
820 | -08033100 l F .text 00000014 eap_ttls_deinit_for_reauth | ||
821 | -08033120 l F .text 0000001a eap_ttls_has_reauth_data | ||
822 | -08033140 l F .text 000000d4 eap_ttls_get_status | ||
823 | -08033220 l F .text 00000044 eap_ttls_getKey | ||
824 | -08033270 l F .text 00000044 eap_ttls_deinit | ||
825 | -080332c0 l F .text 000000f8 eap_ttls_init | ||
826 | -080333c0 l F .text 00000028 eap_ttls_avp_hdr.constprop.5 | ||
827 | -080333f0 l F .text 00000030 eap_ttls_avp_add.constprop.4 | ||
828 | -08033420 l F .text 00000664 eap_ttls_phase2_request | ||
829 | -08033a90 l F .text 000000d8 eap_ttls_implicit_identity_request | ||
830 | -08033b70 l F .text 00000366 eap_ttls_decrypt | ||
831 | -08033ee0 l F .text 00000188 eap_ttls_process | 821 | +08032f30 l F .text 00000010 eap_ttls_isKeyAvailable |
822 | +08032f40 l F .text 0000004a eap_ttls_init_for_reauth | ||
823 | +08032f90 l F .text 00000014 eap_ttls_deinit_for_reauth | ||
824 | +08032fb0 l F .text 0000001a eap_ttls_has_reauth_data | ||
825 | +08032fd0 l F .text 000000d4 eap_ttls_get_status | ||
826 | +080330b0 l F .text 00000044 eap_ttls_getKey | ||
827 | +08033100 l F .text 00000044 eap_ttls_deinit | ||
828 | +08033150 l F .text 000000f8 eap_ttls_init | ||
829 | +08033250 l F .text 00000028 eap_ttls_avp_hdr.constprop.5 | ||
830 | +08033280 l F .text 00000030 eap_ttls_avp_add.constprop.4 | ||
831 | +080332b0 l F .text 00000664 eap_ttls_phase2_request | ||
832 | +08033920 l F .text 000000d8 eap_ttls_implicit_identity_request | ||
833 | +08033a00 l F .text 00000366 eap_ttls_decrypt | ||
834 | +08033d70 l F .text 00000188 eap_ttls_process | ||
832 | 00000000 l df *ABS* 00000000 eap_wsc.c | 835 | 00000000 l df *ABS* 00000000 eap_wsc.c |
833 | -080340f0 l F .text 00000032 eap_wsc_deinit | ||
834 | -08034130 l F .text 000002e4 eap_wsc_init | ||
835 | -08034420 l F .text 00000158 eap_wsc_build_msg | ||
836 | -08034580 l F .text 000001d6 eap_wsc_process | 836 | +08033f80 l F .text 00000032 eap_wsc_deinit |
837 | +08033fc0 l F .text 000002e4 eap_wsc_init | ||
838 | +080342b0 l F .text 00000158 eap_wsc_build_msg | ||
839 | +08034410 l F .text 000001d6 eap_wsc_process | ||
837 | 00000000 l df *ABS* 00000000 eloop_wifiengine.c | 840 | 00000000 l df *ABS* 00000000 eloop_wifiengine.c |
838 | 00000000 l df *ABS* 00000000 events.c | 841 | 00000000 l df *ABS* 00000000 events.c |
839 | -08034b80 l F .text 00000048 wpa_supplicant_rsn_preauth_scan_results | ||
840 | -08034bd0 l F .text 000001f4 wpa_supplicant_event_associnfo | ||
841 | -08034e00 l F .text 00000028 wpa_supplicant_req_new_scan.constprop.16 | ||
842 | -08034f40 l F .text 00000724 _wpa_supplicant_event_scan_results | 842 | +08034a10 l F .text 00000048 wpa_supplicant_rsn_preauth_scan_results |
843 | +08034a60 l F .text 000001f4 wpa_supplicant_event_associnfo | ||
844 | +08034c90 l F .text 00000028 wpa_supplicant_req_new_scan.constprop.16 | ||
845 | +08034dd0 l F .text 00000724 _wpa_supplicant_event_scan_results | ||
843 | 00000000 l df *ABS* 00000000 ieee802_11_common.c | 846 | 00000000 l df *ABS* 00000000 ieee802_11_common.c |
844 | 00000000 l df *ABS* 00000000 l2_packet_none.c | 847 | 00000000 l df *ABS* 00000000 l2_packet_none.c |
845 | -08036150 l F .text 00000020 l2_packet_receive | 848 | +08035fe0 l F .text 00000020 l2_packet_receive |
846 | 00000000 l df *ABS* 00000000 md5-internal.c | 849 | 00000000 l df *ABS* 00000000 md5-internal.c |
847 | -08036200 l F .text 0000078e MD5Transform | 850 | +08036090 l F .text 0000078e MD5Transform |
848 | 00000000 l df *ABS* 00000000 md5.c | 851 | 00000000 l df *ABS* 00000000 md5.c |
849 | 00000000 l df *ABS* 00000000 mschapv2.c | 852 | 00000000 l df *ABS* 00000000 mschapv2.c |
850 | 00000000 l df *ABS* 00000000 ms_funcs.c | 853 | 00000000 l df *ABS* 00000000 ms_funcs.c |
851 | -08036e00 l F .text 0000003a challenge_hash | ||
852 | -08036e40 l F .text 000000b6 utf8_to_ucs2.constprop.0 | ||
853 | -08066c70 l O .text 00000028 shs_pad1.10073 | ||
854 | -08066ca0 l O .text 00000054 magic2.10071 | ||
855 | -08066d00 l O .text 00000028 shs_pad2.10074 | ||
856 | -08066d30 l O .text 00000027 magic1.10029 | ||
857 | -08066d60 l O .text 00000029 magic2.10030 | ||
858 | -08066d90 l O .text 00000054 magic3.10072 | ||
859 | -08066df0 l O .text 0000001b magic1.10060 | 854 | +08036c90 l F .text 0000003a challenge_hash |
855 | +08036cd0 l F .text 000000b6 utf8_to_ucs2.constprop.0 | ||
856 | +08066c30 l O .text 00000028 shs_pad1.10073 | ||
857 | +08066c60 l O .text 00000054 magic2.10071 | ||
858 | +08066cc0 l O .text 00000028 shs_pad2.10074 | ||
859 | +08066cf0 l O .text 00000027 magic1.10029 | ||
860 | +08066d20 l O .text 00000029 magic2.10030 | ||
861 | +08066d50 l O .text 00000054 magic3.10072 | ||
862 | +08066db0 l O .text 0000001b magic1.10060 | ||
860 | 00000000 l df *ABS* 00000000 notify.c | 863 | 00000000 l df *ABS* 00000000 notify.c |
861 | 00000000 l df *ABS* 00000000 pmksa_cache.c | 864 | 00000000 l df *ABS* 00000000 pmksa_cache.c |
862 | -08037550 l F .text 00000034 pmksa_cache_free_entry | ||
863 | -08037590 l F .text 00000034 pmksa_cache_reauth | ||
864 | -08037610 l F .text 00000070 pmksa_cache_set_expiration | ||
865 | -080376b0 l F .text 00000034 pmksa_cache_expire | 865 | +080373e0 l F .text 00000034 pmksa_cache_free_entry |
866 | +08037420 l F .text 00000034 pmksa_cache_reauth | ||
867 | +080374a0 l F .text 00000070 pmksa_cache_set_expiration | ||
868 | +08037540 l F .text 00000034 pmksa_cache_expire | ||
866 | 00000000 l df *ABS* 00000000 preauth.c | 869 | 00000000 l df *ABS* 00000000 preauth.c |
867 | -08037a00 l F .text 00000052 rsn_preauth_eapol_send | ||
868 | -08037a60 l F .text 00000054 rsn_preauth_receive | ||
869 | -08037da0 l F .text 0000005a rsn_preauth_eapol_cb | ||
870 | -08037d80 l F .text 00000012 rsn_preauth_timeout | 870 | +08037890 l F .text 00000052 rsn_preauth_eapol_send |
871 | +080378f0 l F .text 00000054 rsn_preauth_receive | ||
872 | +08037c30 l F .text 0000005a rsn_preauth_eapol_cb | ||
873 | +08037c10 l F .text 00000012 rsn_preauth_timeout | ||
871 | 00000000 l df *ABS* 00000000 rc4.c | 874 | 00000000 l df *ABS* 00000000 rc4.c |
872 | 00000000 l df *ABS* 00000000 scan.c | 875 | 00000000 l df *ABS* 00000000 scan.c |
873 | -08038030 l F .text 00000016 freq_cmp | ||
874 | -08038050 l F .text 000000a8 wpa_supplicant_extra_ies.isra.1 | ||
875 | -08038490 l F .text 00000478 wpa_supplicant_scan | ||
876 | -08038420 l F .text 0000001a wpa_supplicant_delayed_sched_scan_timeout | ||
877 | -080381f0 l F .text 0000000a wpa_supplicant_sched_scan_timeout | ||
878 | -08038960 l F .text 00000070 wpa_scan_get_max_rate | ||
879 | -08038a30 l F .text 00000120 wpa_scan_result_compar | ||
880 | -08038c00 l F .text 000000ae wpa_scan_result_wps_compar | 876 | +08037ec0 l F .text 00000016 freq_cmp |
877 | +08037ee0 l F .text 000000a8 wpa_supplicant_extra_ies.isra.1 | ||
878 | +08038320 l F .text 00000478 wpa_supplicant_scan | ||
879 | +080382b0 l F .text 0000001a wpa_supplicant_delayed_sched_scan_timeout | ||
880 | +08038080 l F .text 0000000a wpa_supplicant_sched_scan_timeout | ||
881 | +080387f0 l F .text 00000070 wpa_scan_get_max_rate | ||
882 | +080388c0 l F .text 00000120 wpa_scan_result_compar | ||
883 | +08038a90 l F .text 000000ae wpa_scan_result_wps_compar | ||
881 | 00000000 l df *ABS* 00000000 sha1-internal.c | 884 | 00000000 l df *ABS* 00000000 sha1-internal.c |
882 | 00000000 l df *ABS* 00000000 sha1.c | 885 | 00000000 l df *ABS* 00000000 sha1.c |
883 | 00000000 l df *ABS* 00000000 sha1-pbkdf2.c | 886 | 00000000 l df *ABS* 00000000 sha1-pbkdf2.c |
884 | 00000000 l df *ABS* 00000000 sha256.c | 887 | 00000000 l df *ABS* 00000000 sha256.c |
885 | 00000000 l df *ABS* 00000000 tls_internal.c | 888 | 00000000 l df *ABS* 00000000 tls_internal.c |
886 | -2000d4f0 l O .bss 00000004 tls_ref_count | 889 | +2000d3d8 l O .bss 00000004 tls_ref_count |
887 | 00000000 l df *ABS* 00000000 tlsv1_client.c | 890 | 00000000 l df *ABS* 00000000 tlsv1_client.c |
888 | 00000000 l df *ABS* 00000000 tlsv1_client_read.c | 891 | 00000000 l df *ABS* 00000000 tlsv1_client_read.c |
889 | -0803b0f0 l F .text 00000054 tls_process_server_hello_done | ||
890 | -0803b150 l F .text 0000008c tls_process_certificate_request | ||
891 | -0803b1e0 l F .text 00000168 tls_process_server_key_exchange | ||
892 | -0803b350 l F .text 000001a8 tls_process_certificate | ||
893 | -08066f20 l O .text 00000014 CSWTCH.27 | 892 | +0803af80 l F .text 00000054 tls_process_server_hello_done |
893 | +0803afe0 l F .text 0000008c tls_process_certificate_request | ||
894 | +0803b070 l F .text 00000168 tls_process_server_key_exchange | ||
895 | +0803b1e0 l F .text 000001a8 tls_process_certificate | ||
896 | +08066ee0 l O .text 00000014 CSWTCH.27 | ||
894 | 00000000 l df *ABS* 00000000 tlsv1_client_write.c | 897 | 00000000 l df *ABS* 00000000 tlsv1_client_write.c |
895 | -0803ba00 l F .text 000000f8 tls_write_client_finished | ||
896 | -0803bb00 l F .text 0000005a tls_write_client_change_cipher_spec | 898 | +0803b890 l F .text 000000f8 tls_write_client_finished |
899 | +0803b990 l F .text 0000005a tls_write_client_change_cipher_spec | ||
897 | 00000000 l df *ABS* 00000000 tlsv1_common.c | 900 | 00000000 l df *ABS* 00000000 tlsv1_common.c |
898 | -08066f50 l O .text 000000c8 tls_ciphers | ||
899 | -08067020 l O .text 00000048 tls_cipher_suites | 901 | +08066f10 l O .text 000000c8 tls_ciphers |
902 | +08066fe0 l O .text 00000048 tls_cipher_suites | ||
900 | 00000000 l df *ABS* 00000000 tlsv1_cred.c | 903 | 00000000 l df *ABS* 00000000 tlsv1_cred.c |
901 | -0803c5d0 l F .text 00000044 search_tag | ||
902 | -0803c620 l F .text 000000ac tlsv1_set_dhparams_der | ||
903 | -0803c6d0 l F .text 00000070 tlsv1_set_dhparams_blob | ||
904 | -0803c740 l F .text 000000fc tlsv1_set_key | ||
905 | -0803c840 l F .text 00000060 tlsv1_add_cert_der | ||
906 | -0803c8a0 l F .text 0000007c tlsv1_add_cert | ||
907 | -0803c920 l F .text 00000030 tlsv1_set_cert_chain.part.0 | 904 | +0803c460 l F .text 00000044 search_tag |
905 | +0803c4b0 l F .text 000000ac tlsv1_set_dhparams_der | ||
906 | +0803c560 l F .text 00000070 tlsv1_set_dhparams_blob | ||
907 | +0803c5d0 l F .text 000000fc tlsv1_set_key | ||
908 | +0803c6d0 l F .text 00000060 tlsv1_add_cert_der | ||
909 | +0803c730 l F .text 0000007c tlsv1_add_cert | ||
910 | +0803c7b0 l F .text 00000030 tlsv1_set_cert_chain.part.0 | ||
908 | 00000000 l df *ABS* 00000000 tlsv1_record.c | 911 | 00000000 l df *ABS* 00000000 tlsv1_record.c |
909 | 00000000 l df *ABS* 00000000 uuid.c | 912 | 00000000 l df *ABS* 00000000 uuid.c |
910 | 00000000 l df *ABS* 00000000 wpabuf.c | 913 | 00000000 l df *ABS* 00000000 wpabuf.c |
911 | 00000000 l df *ABS* 00000000 wpa_common.c | 914 | 00000000 l df *ABS* 00000000 wpa_common.c |
912 | -0803d1c0 l F .text 00000066 rsn_selector_to_bitfield | ||
913 | -0803d230 l F .text 00000066 wpa_selector_to_bitfield | 915 | +0803d050 l F .text 00000066 rsn_selector_to_bitfield |
916 | +0803d0c0 l F .text 00000066 wpa_selector_to_bitfield | ||
914 | 00000000 l df *ABS* 00000000 wpa_ie.c | 917 | 00000000 l df *ABS* 00000000 wpa_ie.c |
915 | 00000000 l df *ABS* 00000000 wpa.c | 918 | 00000000 l df *ABS* 00000000 wpa.c |
916 | -0803dbf0 l F .text 0000001c wpa_sm_set_rekey_offload | ||
917 | -0803dc10 l F .text 00000098 wpa_supplicant_install_gtk | ||
918 | -0803dcb0 l F .text 00000004 wpa_sm_start_preauth | ||
919 | -0803dcc0 l F .text 00000074 wpa_supplicant_key_neg_complete | ||
920 | -0803dd40 l F .text 00000080 wpa_supplicant_check_group_cipher.isra.3 | ||
921 | -0803ddc0 l F .text 00000048 wpa_sm_pmksa_free_cb | ||
922 | -0803dfb0 l F .text 00000008 wpa_sm_rekey_ptk | 919 | +0803da80 l F .text 0000001c wpa_sm_set_rekey_offload |
920 | +0803daa0 l F .text 00000098 wpa_supplicant_install_gtk | ||
921 | +0803db40 l F .text 00000004 wpa_sm_start_preauth | ||
922 | +0803db50 l F .text 00000074 wpa_supplicant_key_neg_complete | ||
923 | +0803dbd0 l F .text 00000080 wpa_supplicant_check_group_cipher.isra.3 | ||
924 | +0803dc50 l F .text 00000048 wpa_sm_pmksa_free_cb | ||
925 | +0803de40 l F .text 00000008 wpa_sm_rekey_ptk | ||
923 | 00000000 l df *ABS* 00000000 wpas_glue.c | 926 | 00000000 l df *ABS* 00000000 wpas_glue.c |
924 | -0803f2b0 l F .text 0000005e wpa_eapol_set_wep_key | ||
925 | -0803f310 l F .text 00000006 _wpa_supplicant_get_state | ||
926 | -0803f320 l F .text 00000016 wpa_supplicant_get_bssid | ||
927 | -0803f340 l F .text 00000054 wpa_supplicant_set_key | ||
928 | -0803f3a0 l F .text 00000014 wpa_supplicant_mlme_setprotection | ||
929 | -0803f3c0 l F .text 00000016 wpa_supplicant_add_pmkid | ||
930 | -0803f3e0 l F .text 00000016 wpa_supplicant_remove_pmkid | ||
931 | -0803f400 l F .text 00000012 wpa_supplicant_set_rekey_offload | ||
932 | -0803f420 l F .text 00000006 wpa_supplicant_get_config_blob | ||
933 | -0803f430 l F .text 0000001c wpa_supplicant_set_config_blob | ||
934 | -0803f450 l F .text 00000004 _wpa_supplicant_cancel_auth_timeout | ||
935 | -0803f460 l F .text 00000054 wpa_alloc_eapol | ||
936 | -0803f4c0 l F .text 0000000a _wpa_alloc_eapol | ||
937 | -0803f4d0 l F .text 000000aa wpa_get_beacon_ie | ||
938 | -0803f580 l F .text 00000004 wpa_supplicant_get_network_ctx | ||
939 | -0803f590 l F .text 00000016 _wpa_supplicant_disassociate | ||
940 | -0803f5b0 l F .text 00000016 _wpa_supplicant_deauthenticate | ||
941 | -0803f5d0 l F .text 00000004 _wpa_supplicant_set_state | ||
942 | -0803f5e0 l F .text 00000004 wpa_supplicant_cert_cb | ||
943 | -0803f5f0 l F .text 000000c4 wpa_supplicant_eapol_cb | ||
944 | -0803f6c0 l F .text 00000008 wpa_supplicant_aborted_cached | ||
945 | -0803f6d0 l F .text 0000001c wpa_supplicant_port_cb | ||
946 | -0803f6f0 l F .text 00000026 wpa_supplicant_get_beacon_ie | ||
947 | -0803f720 l F .text 00000026 wpa_supplicant_notify_eapol_done | ||
948 | -0803f750 l F .text 0000002e _wpa_ether_send | ||
949 | -0803f780 l F .text 000000f8 wpa_supplicant_eapol_send | 927 | +0803f140 l F .text 0000005e wpa_eapol_set_wep_key |
928 | +0803f1a0 l F .text 00000006 _wpa_supplicant_get_state | ||
929 | +0803f1b0 l F .text 00000016 wpa_supplicant_get_bssid | ||
930 | +0803f1d0 l F .text 00000054 wpa_supplicant_set_key | ||
931 | +0803f230 l F .text 00000014 wpa_supplicant_mlme_setprotection | ||
932 | +0803f250 l F .text 00000016 wpa_supplicant_add_pmkid | ||
933 | +0803f270 l F .text 00000016 wpa_supplicant_remove_pmkid | ||
934 | +0803f290 l F .text 00000012 wpa_supplicant_set_rekey_offload | ||
935 | +0803f2b0 l F .text 00000006 wpa_supplicant_get_config_blob | ||
936 | +0803f2c0 l F .text 0000001c wpa_supplicant_set_config_blob | ||
937 | +0803f2e0 l F .text 00000004 _wpa_supplicant_cancel_auth_timeout | ||
938 | +0803f2f0 l F .text 00000054 wpa_alloc_eapol | ||
939 | +0803f350 l F .text 0000000a _wpa_alloc_eapol | ||
940 | +0803f360 l F .text 000000aa wpa_get_beacon_ie | ||
941 | +0803f410 l F .text 00000004 wpa_supplicant_get_network_ctx | ||
942 | +0803f420 l F .text 00000016 _wpa_supplicant_disassociate | ||
943 | +0803f440 l F .text 00000016 _wpa_supplicant_deauthenticate | ||
944 | +0803f460 l F .text 00000004 _wpa_supplicant_set_state | ||
945 | +0803f470 l F .text 00000004 wpa_supplicant_cert_cb | ||
946 | +0803f480 l F .text 000000c4 wpa_supplicant_eapol_cb | ||
947 | +0803f550 l F .text 00000008 wpa_supplicant_aborted_cached | ||
948 | +0803f560 l F .text 0000001c wpa_supplicant_port_cb | ||
949 | +0803f580 l F .text 00000026 wpa_supplicant_get_beacon_ie | ||
950 | +0803f5b0 l F .text 00000026 wpa_supplicant_notify_eapol_done | ||
951 | +0803f5e0 l F .text 0000002e _wpa_ether_send | ||
952 | +0803f610 l F .text 000000f8 wpa_supplicant_eapol_send | ||
950 | 00000000 l df *ABS* 00000000 wps_attr_build.c | 953 | 00000000 l df *ABS* 00000000 wps_attr_build.c |
951 | 00000000 l df *ABS* 00000000 wps_attr_parse.c | 954 | 00000000 l df *ABS* 00000000 wps_attr_parse.c |
952 | 00000000 l df *ABS* 00000000 wps_attr_process.c | 955 | 00000000 l df *ABS* 00000000 wps_attr_process.c |
953 | -08040720 l F .text 00000036 wps_process_cred_ssid | ||
954 | -08040760 l F .text 00000018 wps_workaround_cred_key.part.6 | 956 | +080405b0 l F .text 00000036 wps_process_cred_ssid |
957 | +080405f0 l F .text 00000018 wps_workaround_cred_key.part.6 | ||
955 | 00000000 l df *ABS* 00000000 wps_common.c | 958 | 00000000 l df *ABS* 00000000 wps_common.c |
956 | 00000000 l df *ABS* 00000000 wps_dev_attr.c | 959 | 00000000 l df *ABS* 00000000 wps_dev_attr.c |
957 | 00000000 l df *ABS* 00000000 wps_enrollee.c | 960 | 00000000 l df *ABS* 00000000 wps_enrollee.c |
958 | -080415f0 l F .text 00000016 wps_process_enrollee_nonce | 961 | +08041480 l F .text 00000016 wps_process_enrollee_nonce |
959 | 00000000 l df *ABS* 00000000 x509v3.c | 962 | 00000000 l df *ABS* 00000000 x509v3.c |
960 | -08042600 l F .text 0000005a x509_str_strip_whitespace | ||
961 | -08042660 l F .text 0000002c x509_valid_issuer | ||
962 | -08042690 l F .text 0000004e x509_parse_algorithm_identifier | ||
963 | -080426e0 l F .text 000000d4 x509_parse_time | ||
964 | -080427c0 l F .text 00000084 x509_free_name | ||
965 | -08042850 l F .text 000001ec x509_parse_name | ||
966 | -08042a40 l F .text 0000017c x509_parse_ext_alt_name | ||
967 | -08042bc0 l F .text 0000009a x509_str_compare | ||
968 | -08042c60 l F .text 000000b4 x509_name_string.part.2 | ||
969 | -080676b0 l O .text 00000020 CSWTCH.64 | ||
970 | -08067720 l O .text 00000009 CSWTCH.84 | 963 | +08042490 l F .text 0000005a x509_str_strip_whitespace |
964 | +080424f0 l F .text 0000002c x509_valid_issuer | ||
965 | +08042520 l F .text 0000004e x509_parse_algorithm_identifier | ||
966 | +08042570 l F .text 000000d4 x509_parse_time | ||
967 | +08042650 l F .text 00000084 x509_free_name | ||
968 | +080426e0 l F .text 000001ec x509_parse_name | ||
969 | +080428d0 l F .text 0000017c x509_parse_ext_alt_name | ||
970 | +08042a50 l F .text 0000009a x509_str_compare | ||
971 | +08042af0 l F .text 000000b4 x509_name_string.part.2 | ||
972 | +08067670 l O .text 00000020 CSWTCH.64 | ||
973 | +080676e0 l O .text 00000009 CSWTCH.84 | ||
971 | 00000000 l df *ABS* 00000000 aes-wrap.c | 974 | 00000000 l df *ABS* 00000000 aes-wrap.c |
972 | 00000000 l df *ABS* 00000000 ieee802_11_shared.c | 975 | 00000000 l df *ABS* 00000000 ieee802_11_shared.c |
973 | 00000000 l df *ABS* 00000000 drv_callbacks.c | 976 | 00000000 l df *ABS* 00000000 drv_callbacks.c |
974 | 00000000 l df *ABS* 00000000 driver_common.c | 977 | 00000000 l df *ABS* 00000000 driver_common.c |
975 | 00000000 l df *ABS* 00000000 sockets.c | 978 | 00000000 l df *ABS* 00000000 sockets.c |
976 | 00000000 l df *ABS* 00000000 tcp_in.c | 979 | 00000000 l df *ABS* 00000000 tcp_in.c |
977 | -08043e60 l F .text 00000090 tcp_parseopt | ||
978 | -08043ef0 l F .text 000000a8 tcp_oos_insert_segment | ||
979 | -08043fa0 l F .text 0000086c tcp_receive | ||
980 | -2000d504 l O .bss 00000004 tcphdr | ||
981 | -2000d508 l O .bss 00000004 seqno | ||
982 | -2000d50c l O .bss 00000002 tcplen | ||
983 | -2000d510 l O .bss 00000004 ackno | ||
984 | -2000d514 l O .bss 00000001 flags | ||
985 | -2000d515 l O .bss 00000001 recv_flags | ||
986 | -2000d518 l O .bss 00000004 recv_data | ||
987 | -2000d51c l O .bss 00000004 iphdr | ||
988 | -2000d520 l O .bss 00000010 inseg | 980 | +08043cf0 l F .text 00000090 tcp_parseopt |
981 | +08043d80 l F .text 000000a8 tcp_oos_insert_segment | ||
982 | +08043e30 l F .text 0000086c tcp_receive | ||
983 | +2000d3ec l O .bss 00000004 tcphdr | ||
984 | +2000d3f0 l O .bss 00000004 seqno | ||
985 | +2000d3f4 l O .bss 00000002 tcplen | ||
986 | +2000d3f8 l O .bss 00000004 ackno | ||
987 | +2000d3fc l O .bss 00000001 flags | ||
988 | +2000d3fd l O .bss 00000001 recv_flags | ||
989 | +2000d400 l O .bss 00000004 recv_data | ||
990 | +2000d404 l O .bss 00000004 iphdr | ||
991 | +2000d408 l O .bss 00000010 inseg | ||
989 | 00000000 l df *ABS* 00000000 aes-cbc.c | 992 | 00000000 l df *ABS* 00000000 aes-cbc.c |
990 | 00000000 l df *ABS* 00000000 aes-internal-dec.c | 993 | 00000000 l df *ABS* 00000000 aes-internal-dec.c |
991 | 00000000 l df *ABS* 00000000 aes-internal-enc.c | 994 | 00000000 l df *ABS* 00000000 aes-internal-enc.c |
@@ -998,90 +1001,90 @@ SYMBOL TABLE: | @@ -998,90 +1001,90 @@ SYMBOL TABLE: | ||
998 | 00000000 l df *ABS* 00000000 crypto_internal.c | 1001 | 00000000 l df *ABS* 00000000 crypto_internal.c |
999 | 00000000 l df *ABS* 00000000 crypto_internal-rsa.c | 1002 | 00000000 l df *ABS* 00000000 crypto_internal-rsa.c |
1000 | 00000000 l df *ABS* 00000000 des-internal.c | 1003 | 00000000 l df *ABS* 00000000 des-internal.c |
1001 | -08046a80 l F .text 000001e8 desfunc | ||
1002 | -08046c70 l F .text 00000160 deskey | ||
1003 | -08068050 l O .text 00000038 pc1 | ||
1004 | -08068090 l O .text 00000030 pc2 | ||
1005 | -080680c0 l O .text 00000060 bigbyte | ||
1006 | -08068120 l O .text 00000020 bytebit | ||
1007 | -08068140 l O .text 00000010 totrot | ||
1008 | -08068150 l O .text 00000100 SP1 | ||
1009 | -08068250 l O .text 00000100 SP2 | ||
1010 | -08068350 l O .text 00000100 SP3 | ||
1011 | -08068450 l O .text 00000100 SP4 | ||
1012 | -08068550 l O .text 00000100 SP5 | ||
1013 | -08068650 l O .text 00000100 SP6 | ||
1014 | -08068750 l O .text 00000100 SP7 | ||
1015 | -08068850 l O .text 00000100 SP8 | 1004 | +08046910 l F .text 000001e8 desfunc |
1005 | +08046b00 l F .text 00000160 deskey | ||
1006 | +08068010 l O .text 00000038 pc1 | ||
1007 | +08068050 l O .text 00000030 pc2 | ||
1008 | +08068080 l O .text 00000060 bigbyte | ||
1009 | +080680e0 l O .text 00000020 bytebit | ||
1010 | +08068100 l O .text 00000010 totrot | ||
1011 | +08068110 l O .text 00000100 SP1 | ||
1012 | +08068210 l O .text 00000100 SP2 | ||
1013 | +08068310 l O .text 00000100 SP3 | ||
1014 | +08068410 l O .text 00000100 SP4 | ||
1015 | +08068510 l O .text 00000100 SP5 | ||
1016 | +08068610 l O .text 00000100 SP6 | ||
1017 | +08068710 l O .text 00000100 SP7 | ||
1018 | +08068810 l O .text 00000100 SP8 | ||
1016 | 00000000 l df *ABS* 00000000 eap_md5.c | 1019 | 00000000 l df *ABS* 00000000 eap_md5.c |
1017 | -08047100 l F .text 00000004 eap_md5_init | ||
1018 | -08047110 l F .text 00000002 eap_md5_deinit | ||
1019 | -08047120 l F .text 000000b4 eap_md5_process | 1020 | +08046f90 l F .text 00000004 eap_md5_init |
1021 | +08046fa0 l F .text 00000002 eap_md5_deinit | ||
1022 | +08046fb0 l F .text 000000b4 eap_md5_process | ||
1020 | 00000000 l df *ABS* 00000000 eap_mschapv2.c | 1023 | 00000000 l df *ABS* 00000000 eap_mschapv2.c |
1021 | -08047230 l F .text 0000000e eap_mschapv2_isKeyAvailable | ||
1022 | -08047240 l F .text 0000004a eap_mschapv2_getKey | ||
1023 | -08047290 l F .text 00000020 eap_mschapv2_deinit | ||
1024 | -080472b0 l F .text 0000006e eap_mschapv2_init | ||
1025 | -08047320 l F .text 00000708 eap_mschapv2_process | 1024 | +080470c0 l F .text 0000000e eap_mschapv2_isKeyAvailable |
1025 | +080470d0 l F .text 0000004a eap_mschapv2_getKey | ||
1026 | +08047120 l F .text 00000020 eap_mschapv2_deinit | ||
1027 | +08047140 l F .text 0000006e eap_mschapv2_init | ||
1028 | +080471b0 l F .text 00000708 eap_mschapv2_process | ||
1026 | 00000000 l df *ABS* 00000000 eap_peap.c | 1029 | 00000000 l df *ABS* 00000000 eap_peap.c |
1027 | -08047a90 l F .text 0000000e eap_peap_isKeyAvailable | ||
1028 | -08047aa0 l F .text 0000004a eap_peap_init_for_reauth | ||
1029 | -08047af0 l F .text 00000012 eap_peap_deinit_for_reauth | ||
1030 | -08047b10 l F .text 0000001a eap_peap_has_reauth_data | ||
1031 | -08047b30 l F .text 00000044 eap_peap_get_status | ||
1032 | -08047b80 l F .text 000000a4 eap_peap_getKey | ||
1033 | -08047c30 l F .text 0000003a eap_peap_deinit | ||
1034 | -08047c70 l F .text 00000124 eap_peap_init | ||
1035 | -08047da0 l F .text 00000b7e eap_peap_decrypt | ||
1036 | -08048920 l F .text 00000180 eap_peap_process | 1030 | +08047920 l F .text 0000000e eap_peap_isKeyAvailable |
1031 | +08047930 l F .text 0000004a eap_peap_init_for_reauth | ||
1032 | +08047980 l F .text 00000012 eap_peap_deinit_for_reauth | ||
1033 | +080479a0 l F .text 0000001a eap_peap_has_reauth_data | ||
1034 | +080479c0 l F .text 00000044 eap_peap_get_status | ||
1035 | +08047a10 l F .text 000000a4 eap_peap_getKey | ||
1036 | +08047ac0 l F .text 0000003a eap_peap_deinit | ||
1037 | +08047b00 l F .text 00000124 eap_peap_init | ||
1038 | +08047c30 l F .text 00000b7e eap_peap_decrypt | ||
1039 | +080487b0 l F .text 00000180 eap_peap_process | ||
1037 | 00000000 l df *ABS* 00000000 eap_tls_common.c | 1040 | 00000000 l df *ABS* 00000000 eap_tls_common.c |
1038 | -08048b20 l F .text 00000038 eap_tls_params_flags | ||
1039 | -08048b60 l F .text 00000054 eap_tls_check_blob | ||
1040 | -08048f70 l F .text 00000098 eap_peer_tls_data_reassemble | ||
1041 | -08049030 l F .text 00000110 eap_tls_process_output | 1041 | +080489b0 l F .text 00000038 eap_tls_params_flags |
1042 | +080489f0 l F .text 00000054 eap_tls_check_blob | ||
1043 | +08048e00 l F .text 00000098 eap_peer_tls_data_reassemble | ||
1044 | +08048ec0 l F .text 00000110 eap_tls_process_output | ||
1042 | 00000000 l df *ABS* 00000000 eap_wsc_common.c | 1045 | 00000000 l df *ABS* 00000000 eap_wsc_common.c |
1043 | 00000000 l df *ABS* 00000000 md4-internal.c | 1046 | 00000000 l df *ABS* 00000000 md4-internal.c |
1044 | -080494c0 l F .text 0000054c MD4Transform | ||
1045 | -08049a10 l F .text 000000a6 MD4Update | 1047 | +08049350 l F .text 0000054c MD4Transform |
1048 | +080498a0 l F .text 000000a6 MD4Update | ||
1046 | 2000133c l O .data 00000040 PADDING | 1049 | 2000133c l O .data 00000040 PADDING |
1047 | 00000000 l df *ABS* 00000000 pkcs1.c | 1050 | 00000000 l df *ABS* 00000000 pkcs1.c |
1048 | 00000000 l df *ABS* 00000000 pkcs8.c | 1051 | 00000000 l df *ABS* 00000000 pkcs8.c |
1049 | 00000000 l df *ABS* 00000000 rsa.c | 1052 | 00000000 l df *ABS* 00000000 rsa.c |
1050 | -08049f20 l F .text 0000003c crypto_rsa_parse_integer | 1053 | +08049db0 l F .text 0000003c crypto_rsa_parse_integer |
1051 | 00000000 l df *ABS* 00000000 sha1-tlsprf.c | 1054 | 00000000 l df *ABS* 00000000 sha1-tlsprf.c |
1052 | 00000000 l df *ABS* 00000000 sha256-internal.c | 1055 | 00000000 l df *ABS* 00000000 sha256-internal.c |
1053 | -0804a3c0 l F .text 00000146 sha256_compress | ||
1054 | -08068b30 l O .text 00000100 K | 1056 | +0804a250 l F .text 00000146 sha256_compress |
1057 | +08068af0 l O .text 00000100 K | ||
1055 | 00000000 l df *ABS* 00000000 bignum.c | 1058 | 00000000 l df *ABS* 00000000 bignum.c |
1056 | -0804a720 l F .text 0000004c mp_unsigned_bin_size | ||
1057 | -0804a770 l F .text 00000054 mp_cmp_mag | ||
1058 | -0804a7d0 l F .text 00000030 mp_cmp | ||
1059 | -0804a800 l F .text 00000026 mp_exch | ||
1060 | -0804a830 l F .text 0000002e mp_init | ||
1061 | -0804a860 l F .text 00000048 mp_init_size | ||
1062 | -0804a8b0 l F .text 00000030 mp_clear | ||
1063 | -0804a8e0 l F .text 00000052 mp_init_multi | ||
1064 | -0804a940 l F .text 0000002a mp_clear_multi | ||
1065 | -0804a970 l F .text 00000126 s_mp_sqr | ||
1066 | -0804aaa0 l F .text 00000066 mp_rshd | ||
1067 | -0804ab10 l F .text 00000050 mp_grow | ||
1068 | -0804ab60 l F .text 0000005c mp_2expt | ||
1069 | -0804abc0 l F .text 0000005c mp_lshd | ||
1070 | -0804ac20 l F .text 00000106 s_mp_add | ||
1071 | -0804ad30 l F .text 000000e8 s_mp_sub | ||
1072 | -0804ae20 l F .text 0000004a mp_sub | ||
1073 | -0804ae70 l F .text 00000048 mp_add | ||
1074 | -0804aec0 l F .text 00000078 mp_copy | ||
1075 | -0804af40 l F .text 0000018a fast_s_mp_mul_digs | ||
1076 | -0804b0d0 l F .text 00000112 s_mp_mul_digs | ||
1077 | -0804b1f0 l F .text 00000026 mp_mul | ||
1078 | -0804b220 l F .text 00000104 mp_mul_2d | ||
1079 | -0804b330 l F .text 000000e2 mp_mod_2d | ||
1080 | -0804b420 l F .text 00000144 mp_div_2d | ||
1081 | -0804b570 l F .text 000001f8 mp_reduce | ||
1082 | -0804b770 l F .text 00000176 mp_div.part.5 | ||
1083 | -0804b8f0 l F .text 00000070 mp_mod | ||
1084 | -0804b960 l F .text 00000398 s_mp_exptmod.constprop.6 | 1059 | +0804a5b0 l F .text 0000004c mp_unsigned_bin_size |
1060 | +0804a600 l F .text 00000054 mp_cmp_mag | ||
1061 | +0804a660 l F .text 00000030 mp_cmp | ||
1062 | +0804a690 l F .text 00000026 mp_exch | ||
1063 | +0804a6c0 l F .text 0000002e mp_init | ||
1064 | +0804a6f0 l F .text 00000048 mp_init_size | ||
1065 | +0804a740 l F .text 00000030 mp_clear | ||
1066 | +0804a770 l F .text 00000052 mp_init_multi | ||
1067 | +0804a7d0 l F .text 0000002a mp_clear_multi | ||
1068 | +0804a800 l F .text 00000126 s_mp_sqr | ||
1069 | +0804a930 l F .text 00000066 mp_rshd | ||
1070 | +0804a9a0 l F .text 00000050 mp_grow | ||
1071 | +0804a9f0 l F .text 0000005c mp_2expt | ||
1072 | +0804aa50 l F .text 0000005c mp_lshd | ||
1073 | +0804aab0 l F .text 00000106 s_mp_add | ||
1074 | +0804abc0 l F .text 000000e8 s_mp_sub | ||
1075 | +0804acb0 l F .text 0000004a mp_sub | ||
1076 | +0804ad00 l F .text 00000048 mp_add | ||
1077 | +0804ad50 l F .text 00000078 mp_copy | ||
1078 | +0804add0 l F .text 0000018a fast_s_mp_mul_digs | ||
1079 | +0804af60 l F .text 00000112 s_mp_mul_digs | ||
1080 | +0804b080 l F .text 00000026 mp_mul | ||
1081 | +0804b0b0 l F .text 00000104 mp_mul_2d | ||
1082 | +0804b1c0 l F .text 000000e2 mp_mod_2d | ||
1083 | +0804b2b0 l F .text 00000144 mp_div_2d | ||
1084 | +0804b400 l F .text 000001f8 mp_reduce | ||
1085 | +0804b600 l F .text 00000176 mp_div.part.5 | ||
1086 | +0804b780 l F .text 00000070 mp_mod | ||
1087 | +0804b7f0 l F .text 00000398 s_mp_exptmod.constprop.6 | ||
1085 | 00000000 l df *ABS* 00000000 eap_peap_common.c | 1088 | 00000000 l df *ABS* 00000000 eap_peap_common.c |
1086 | 00000000 l df *ABS* 00000000 pkcs5.c | 1089 | 00000000 l df *ABS* 00000000 pkcs5.c |
1087 | 00000000 l df *ABS* 00000000 ctype_.c | 1090 | 00000000 l df *ABS* 00000000 ctype_.c |
@@ -1093,1814 +1096,1798 @@ SYMBOL TABLE: | @@ -1093,1814 +1096,1798 @@ SYMBOL TABLE: | ||
1093 | 00000000 l df *ABS* 00000000 wpa_debug.c | 1096 | 00000000 l df *ABS* 00000000 wpa_debug.c |
1094 | 00000000 l df *ABS* 00000000 reent.c | 1097 | 00000000 l df *ABS* 00000000 reent.c |
1095 | 00000000 l df *ABS* 00000000 | 1098 | 00000000 l df *ABS* 00000000 |
1096 | -08068cd0 l .textalign 00000000 _etext | 1099 | +08068c90 l .textalign 00000000 _etext |
1097 | 00000000 l startup 00000000 _text | 1100 | 00000000 l startup 00000000 _text |
1098 | 20018000 l *ABS* 00000000 __ram_end__ | 1101 | 20018000 l *ABS* 00000000 __ram_end__ |
1099 | 00000a00 l *ABS* 00000000 __process_stack_size__ | 1102 | 00000a00 l *ABS* 00000000 __process_stack_size__ |
1100 | 20000000 l startup 00000000 __ram_start__ | 1103 | 20000000 l startup 00000000 __ram_start__ |
1101 | 00000200 l *ABS* 00000000 __main_stack_size__ | 1104 | 00000200 l *ABS* 00000000 __main_stack_size__ |
1102 | 00018000 l *ABS* 00000000 __ram_size__ | 1105 | 00018000 l *ABS* 00000000 __ram_size__ |
1103 | -2000d638 l .bss 00000000 _end | ||
1104 | -0802e780 g F .text 00000006 libwismart_PBufQueue_RemoveFreeLast | ||
1105 | -0800c190 g F .text 0000001c SendSnrValueBack | ||
1106 | -08000130 g F .text 0000011c main | ||
1107 | -0802c940 g F .text 00000008 icmp_dest_unreach | ||
1108 | -08009aa4 g F .text 0000006a __aeabi_ul2d | ||
1109 | -0804bd30 g F .text 00000016 bignum_deinit | ||
1110 | -08047000 g F .text 00000078 des3_encrypt | ||
1111 | -0800a2d0 w F .text 00000010 VectorE8 | ||
1112 | -0800a2d0 w F .text 00000010 Vector9C | ||
1113 | -0803fc90 g F .text 00000034 wps_build_config_error | ||
1114 | -0800b0a0 g F .text 00000004 _write_r | ||
1115 | -0800a850 g F .text 00000010 chThdSleep | ||
1116 | -080162b0 g F .text 00000024 inc_byte_array | ||
1117 | -08013d90 g F .text 00000068 libwismart_TimerSet | ||
1118 | -08042d80 g F .text 000000a0 x509_name_compare | ||
1119 | -08016b50 g F .text 00000004 wpa_driver_WE_p2p_listen | ||
1120 | -08038180 g F .text 0000002c wpa_supplicant_delayed_sched_scan | ||
1121 | -08017810 g F .text 00000012 wpa_disconnect | ||
1122 | -080266c0 g F .text 00000040 DMA_Init | ||
1123 | -080256f0 g F .text 0000000e wpa_auth_pairwise_set | ||
1124 | -08009ab4 g F .text 0000005a __floatdidf | ||
1125 | -08000270 g F .text 00000062 memcmp | ||
1126 | -08000560 g F .text 000005ec qsort | ||
1127 | -0804c0a0 g F .text 00000042 pkcs5_get_alg | ||
1128 | -08005998 g F .text 00000032 _mbtowc_r | ||
1129 | -0800a2d0 w F .text 00000010 VectorA8 | ||
1130 | -08026a70 g F .text 00000082 FLASH_ErasePage | ||
1131 | -0802d700 g F .text 00000030 ip_reass_tmr | ||
1132 | -0802a8e0 g F .text 0000002c raw_new | ||
1133 | -080411e0 g F .text 0000005e wps_build_req_dev_type | ||
1134 | -080296d0 g F .text 000000c8 dhcp_renew | ||
1135 | -08030f80 g F .text 00000036 eap_allowed_method | ||
1136 | -080140d0 g F .text 00000068 VectorE4 | ||
1137 | -0802aa10 g F .text 0000001c tcp_seg_free | ||
1138 | -080462f0 g F .text 0000015e crypto_cipher_encrypt | ||
1139 | -0800b080 g F .text 0000000a _read_r | ||
1140 | -0802f460 g F .text 00000378 wpa_bss_update_scan_res | ||
1141 | -0803af60 g F .text 00000094 tlsv1_client_get_cipher | ||
1142 | -08036dc0 g F .text 00000040 mschapv2_verify_auth_response | ||
1143 | -08021b50 g F .text 0000001e ieee802_11_set_beacons | ||
1144 | -0803e3d0 g F .text 00000bee wpa_sm_rx_eapol | ||
1145 | -08023570 g F .text 0000000e hostapd_wps_ap_pin_disable | ||
1146 | -20002ba8 g O .bss 00000006 bssid_to_connect | ||
1147 | -0800a5e0 g F .text 00000020 chSchReadyI | ||
1148 | -08005f80 g F .text 000000ec __mdiff | ||
1149 | -080189e0 g F .text 000000ac wpa_supplicant_driver_init | ||
1150 | -2000d4fc g O .bss 00000004 wpa_debug_show_keys | ||
1151 | -0800a4e0 g F .text 00000018 _vt_init | ||
1152 | -080040e8 g F .text 00000ede _dtoa_r | ||
1153 | -08037400 g F .text 00000002 wpas_notify_wps_event_m2d | ||
1154 | -08017bb0 g F .text 00000018 os_zalloc | ||
1155 | -08009fdc g F .text 00000010 __aeabi_cdcmple | ||
1156 | -08008ad0 g F .text 0000007a __submore | ||
1157 | -08005778 g F .text 00000008 __locale_msgcharset | ||
1158 | -08037430 g F .text 00000002 wpas_notify_network_added | 1106 | +2000d520 l .bss 00000000 _end |
1107 | +0802e750 g F .text 00000006 libwismart_PBufQueue_RemoveFreeLast | ||
1108 | +0800c090 g F .text 0000001c SendSnrValueBack | ||
1109 | +08000130 g F .text 00000194 main | ||
1110 | +08009b24 g F .text 0000006a __aeabi_ul2d | ||
1111 | +0802c8e0 g F .text 00000008 icmp_dest_unreach | ||
1112 | +0804bbc0 g F .text 00000016 bignum_deinit | ||
1113 | +08046e90 g F .text 00000078 des3_encrypt | ||
1114 | +0800a350 w F .text 00000010 VectorE8 | ||
1115 | +0800a350 w F .text 00000010 Vector9C | ||
1116 | +0803fb20 g F .text 00000034 wps_build_config_error | ||
1117 | +0800b120 g F .text 00000004 _write_r | ||
1118 | +0800a8d0 g F .text 00000010 chThdSleep | ||
1119 | +08016060 g F .text 00000024 inc_byte_array | ||
1120 | +08013ca0 g F .text 00000068 libwismart_TimerSet | ||
1121 | +08042c10 g F .text 000000a0 x509_name_compare | ||
1122 | +08016900 g F .text 00000004 wpa_driver_WE_p2p_listen | ||
1123 | +08038010 g F .text 0000002c wpa_supplicant_delayed_sched_scan | ||
1124 | +080175c0 g F .text 00000012 wpa_disconnect | ||
1125 | +08026470 g F .text 00000040 DMA_Init | ||
1126 | +080254a0 g F .text 0000000e wpa_auth_pairwise_set | ||
1127 | +08009b34 g F .text 0000005a __floatdidf | ||
1128 | +080002f0 g F .text 00000062 memcmp | ||
1129 | +080005e0 g F .text 000005ec qsort | ||
1130 | +0804bf30 g F .text 00000042 pkcs5_get_alg | ||
1131 | +08005a18 g F .text 00000032 _mbtowc_r | ||
1132 | +0800a350 w F .text 00000010 VectorA8 | ||
1133 | +08026820 g F .text 00000082 FLASH_ErasePage | ||
1134 | +0802d6a0 g F .text 00000030 ip_reass_tmr | ||
1135 | +0802a7c0 g F .text 0000002c raw_new | ||
1136 | +08041070 g F .text 0000005e wps_build_req_dev_type | ||
1137 | +080295b0 g F .text 000000c8 dhcp_renew | ||
1138 | +08030e10 g F .text 00000036 eap_allowed_method | ||
1139 | +08013fe0 g F .text 00000068 VectorE4 | ||
1140 | +0802a8f0 g F .text 0000001c tcp_seg_free | ||
1141 | +08046180 g F .text 0000015e crypto_cipher_encrypt | ||
1142 | +0800b100 g F .text 0000000a _read_r | ||
1143 | +0802f2f0 g F .text 00000378 wpa_bss_update_scan_res | ||
1144 | +0803adf0 g F .text 00000094 tlsv1_client_get_cipher | ||
1145 | +08036c50 g F .text 00000040 mschapv2_verify_auth_response | ||
1146 | +08021900 g F .text 0000001e ieee802_11_set_beacons | ||
1147 | +0803e260 g F .text 00000bee wpa_sm_rx_eapol | ||
1148 | +08023320 g F .text 0000000e hostapd_wps_ap_pin_disable | ||
1149 | +20002a88 g O .bss 00000006 bssid_to_connect | ||
1150 | +0800a660 g F .text 00000020 chSchReadyI | ||
1151 | +08006000 g F .text 000000ec __mdiff | ||
1152 | +08018790 g F .text 000000ac wpa_supplicant_driver_init | ||
1153 | +2000d3e4 g O .bss 00000004 wpa_debug_show_keys | ||
1154 | +0800a560 g F .text 00000018 _vt_init | ||
1155 | +08004168 g F .text 00000ede _dtoa_r | ||
1156 | +08037290 g F .text 00000002 wpas_notify_wps_event_m2d | ||
1157 | +08017960 g F .text 00000018 os_zalloc | ||
1158 | +0800a05c g F .text 00000010 __aeabi_cdcmple | ||
1159 | +08008b50 g F .text 0000007a __submore | ||
1160 | +080057f8 g F .text 00000008 __locale_msgcharset | ||
1161 | +080372c0 g F .text 00000002 wpas_notify_network_added | ||
1159 | 200011a8 g O .data 00000004 dlm_mib_table_vaddr | 1162 | 200011a8 g O .data 00000004 dlm_mib_table_vaddr |
1160 | -08037470 g F .text 00000002 wpas_notify_bss_freq_changed | ||
1161 | -0801c0a0 g F .text 00000058 wps_registrar_process_msg | ||
1162 | -08016330 g F .text 00000060 wpa_snprintf_hex | ||
1163 | -08000250 g F .text 0000000e abort | ||
1164 | -0803a940 g F .text 0000000e tls_connection_resumed | ||
1165 | -0802aa80 g F .text 00000004 tcp_arg | ||
1166 | -2000d534 g O .bss 00000004 errno | ||
1167 | -08031c00 g F .text 00000018 eap_get_config_fragment_size | ||
1168 | -080304d0 g F .text 00000022 wpa_config_set_network_defaults | ||
1169 | -0800ae80 g F .text 00000018 chCoreStatus | ||
1170 | -0802a240 g F .text 00000012 netif_set_down | ||
1171 | -08036c80 g F .text 0000001c hmac_md5 | ||
1172 | -0800a1a0 w F .text 00000002 _default_exit | ||
1173 | -0802e4f0 g F .text 0000002a sys_mbox_new | ||
1174 | -0801e870 g F .text 0000019c hostapd_config_defaults | ||
1175 | -080270e0 g F .text 00000014 RTC_GetCounter | ||
1176 | -0800ae50 g F .text 0000002c chCoreAlloc | ||
1177 | -08005f44 g F .text 0000003c __mcmp | ||
1178 | -08001d10 g F .text 000012f4 _svfprintf_r | ||
1179 | -20004980 g O .bss 0000003c registryFileNextFreeAddress | ||
1180 | -0803fc50 g F .text 00000034 wps_build_dev_password_id | ||
1181 | -08026980 g F .text 0000003e FLASH_WaitForLastBank1Operation | ||
1182 | -080284f0 g F .text 00000044 do_recv | ||
1183 | -080062b0 g F .text 00000048 __copybits | ||
1184 | -080129c0 g F .text 0000001e wifi_multicast_list_init | ||
1185 | -0800ae20 g F .text 0000002c _core_init | ||
1186 | -0803a260 g F .text 00000104 hmac_sha1_vector | ||
1187 | -08026f20 g F .text 0000000c RCC_LSICmd | ||
1188 | -080182a0 g F .text 0000009c wpa_supplicant_set_state | 1163 | +08037300 g F .text 00000002 wpas_notify_bss_freq_changed |
1164 | +0801be50 g F .text 00000058 wps_registrar_process_msg | ||
1165 | +080160e0 g F .text 00000060 wpa_snprintf_hex | ||
1166 | +080002d0 g F .text 0000000e abort | ||
1167 | +0803a7d0 g F .text 0000000e tls_connection_resumed | ||
1168 | +0802a960 g F .text 00000004 tcp_arg | ||
1169 | +2000d41c g O .bss 00000004 errno | ||
1170 | +08031a90 g F .text 00000018 eap_get_config_fragment_size | ||
1171 | +08030360 g F .text 00000022 wpa_config_set_network_defaults | ||
1172 | +0800af00 g F .text 00000018 chCoreStatus | ||
1173 | +0802a120 g F .text 00000012 netif_set_down | ||
1174 | +08036b10 g F .text 0000001c hmac_md5 | ||
1175 | +0800a220 w F .text 00000002 _default_exit | ||
1176 | +0802e490 g F .text 0000002a sys_mbox_new | ||
1177 | +0801e620 g F .text 0000019c hostapd_config_defaults | ||
1178 | +08026e90 g F .text 00000014 RTC_GetCounter | ||
1179 | +0800aed0 g F .text 0000002c chCoreAlloc | ||
1180 | +08005fc4 g F .text 0000003c __mcmp | ||
1181 | +08001d90 g F .text 000012f4 _svfprintf_r | ||
1182 | +20004860 g O .bss 0000003c registryFileNextFreeAddress | ||
1183 | +0803fae0 g F .text 00000034 wps_build_dev_password_id | ||
1184 | +08026730 g F .text 0000003e FLASH_WaitForLastBank1Operation | ||
1185 | +080282a0 g F .text 00000044 do_recv | ||
1186 | +08006330 g F .text 00000048 __copybits | ||
1187 | +080128d0 g F .text 0000001e wifi_multicast_list_init | ||
1188 | +0800aea0 g F .text 0000002c _core_init | ||
1189 | +0803a0f0 g F .text 00000104 hmac_sha1_vector | ||
1190 | +08026cd0 g F .text 0000000c RCC_LSICmd | ||
1191 | +08018050 g F .text 0000009c wpa_supplicant_set_state | ||
1189 | 08000130 g startup 00000000 __init_array_end | 1192 | 08000130 g startup 00000000 __init_array_end |
1190 | -0800b0c0 g F .text 00000018 _fstat_r | ||
1191 | -08068cd0 g .textalign 00000000 _textdata | ||
1192 | -080321b0 g F .text 00000010 eapol_sm_register_scard_ctx | ||
1193 | -0800ec20 g F .text 0000005c WiFi_Client_Touch | ||
1194 | -200025ec g O .bss 00000004 DHCPfineTimer | ||
1195 | -0800a6d0 g F .text 00000040 chSchDoReschedule | ||
1196 | -0800c320 g F .text 00000010 _exit | ||
1197 | -0803ae30 g F .text 0000004a tlsv1_client_deinit | ||
1198 | -08045300 g F .text 00000082 aes_128_cbc_decrypt | ||
1199 | -08018070 g F .text 000000d4 wpa_supplicant_set_non_wpa_policy | ||
1200 | -080413f0 g F .text 00000072 wps_build_vendor_ext | ||
1201 | -08009a24 g F .text 0000001e __aeabi_ui2d | ||
1202 | -08034e30 g F .text 000000a8 wpa_supplicant_mark_disassoc | ||
1203 | -0801b180 g F .text 00000030 wps_registrar_complete | ||
1204 | -0800a2d0 w F .text 00000010 Vector100 | ||
1205 | -0800a2d0 w F .text 00000010 VectorEC | ||
1206 | -08026ea0 g F .text 00000014 RCC_HCLKConfig | ||
1207 | -08012b20 g F .text 00000004 wifi_arp_filter_init | ||
1208 | -0800d8c0 g F .text 00000024 roaming_timer | ||
1209 | -0802c460 g F .text 0000011c udp_sendto_if | ||
1210 | -080097a8 g F .text 0000027a __aeabi_dsub | ||
1211 | -0803a6c0 g F .text 00000004 tls_get_errors | ||
1212 | -08015640 g F .text 00000012 Vector104 | ||
1213 | -08027ad0 g F .text 00000048 netconn_new_with_proto_and_callback | 1193 | +0800b140 g F .text 00000018 _fstat_r |
1194 | +08068c90 g .textalign 00000000 _textdata | ||
1195 | +08032040 g F .text 00000010 eapol_sm_register_scard_ctx | ||
1196 | +0800eb30 g F .text 0000005c WiFi_Client_Touch | ||
1197 | +200024cc g O .bss 00000004 DHCPfineTimer | ||
1198 | +0800a750 g F .text 00000040 chSchDoReschedule | ||
1199 | +0800c220 g F .text 00000010 _exit | ||
1200 | +0803acc0 g F .text 0000004a tlsv1_client_deinit | ||
1201 | +08045190 g F .text 00000082 aes_128_cbc_decrypt | ||
1202 | +08017e20 g F .text 000000d4 wpa_supplicant_set_non_wpa_policy | ||
1203 | +08041280 g F .text 00000072 wps_build_vendor_ext | ||
1204 | +08009aa4 g F .text 0000001e __aeabi_ui2d | ||
1205 | +08034cc0 g F .text 000000a8 wpa_supplicant_mark_disassoc | ||
1206 | +0801af30 g F .text 00000030 wps_registrar_complete | ||
1207 | +0800a350 w F .text 00000010 Vector100 | ||
1208 | +0800a350 w F .text 00000010 VectorEC | ||
1209 | +08026c50 g F .text 00000014 RCC_HCLKConfig | ||
1210 | +08012a30 g F .text 00000004 wifi_arp_filter_init | ||
1211 | +0800d7c0 g F .text 00000024 roaming_timer | ||
1212 | +0802c340 g F .text 0000011c udp_sendto_if | ||
1213 | +08009828 g F .text 0000027a __aeabi_dsub | ||
1214 | +0803a550 g F .text 00000004 tls_get_errors | ||
1215 | +08015550 g F .text 00000012 Vector104 | ||
1216 | +08027880 g F .text 00000048 netconn_new_with_proto_and_callback | ||
1214 | 08000130 g startup 00000000 __fini_array_end | 1217 | 08000130 g startup 00000000 __fini_array_end |
1215 | -08017b90 g F .text 00000004 os_readfile | ||
1216 | -20002a94 g O .bss 00000006 MacAddress | ||
1217 | -080109c0 g F .text 00000036 SendMgmtPkt | ||
1218 | -08012c30 g F .text 0000001c wifi_scan_list_reset | ||
1219 | -08019cc0 g F .text 0000001c wps_free_pending_msgs | ||
1220 | -08016bc0 g F .text 00000004 wpa_driver_WE_set_noa | ||
1221 | -08000d20 g F .text 00000028 _kill_r | ||
1222 | -08016a20 g F .text 00000004 wpa_driver_WE_get_ssid | ||
1223 | -0804bfc0 g F .text 000000d8 peap_prfplus | ||
1224 | -0803e360 g F .text 00000022 wpa_sm_notify_disassoc | ||
1225 | -0803ca50 g F .text 00000044 tlsv1_set_dhparams | ||
1226 | -0800aa90 g F .text 00000020 chSemSignalI | ||
1227 | -08008b4c g F .text 000000e8 _ungetc_r | ||
1228 | -08037c30 g F .text 0000005c rsn_preauth_deinit | ||
1229 | -0801fd80 g F .text 000000a2 ieee802_1x_tx_key | ||
1230 | -0802a9d0 g F .text 00000036 tcp_recved | ||
1231 | -08048f50 g F .text 00000014 eap_peer_tls_reset_input | ||
1232 | -08016550 g F .text 0000003e wpa_config_write | ||
1233 | -08003010 g F .text 00000e34 __ssvfscanf_r | ||
1234 | -0800b1b0 g F .text 00000010 NMIVector | ||
1235 | -0803a9e0 g F .text 00000184 tls_derive_keys | ||
1236 | -08049cb0 g F .text 000000b2 pkcs1_decrypt_public_key | 1218 | +08017940 g F .text 00000004 os_readfile |
1219 | +20002974 g O .bss 00000006 MacAddress | ||
1220 | +080108d0 g F .text 00000036 SendMgmtPkt | ||
1221 | +08012b40 g F .text 0000001c wifi_scan_list_reset | ||
1222 | +08019a70 g F .text 0000001c wps_free_pending_msgs | ||
1223 | +08016970 g F .text 00000004 wpa_driver_WE_set_noa | ||
1224 | +08000da0 g F .text 00000028 _kill_r | ||
1225 | +080167d0 g F .text 00000004 wpa_driver_WE_get_ssid | ||
1226 | +0804be50 g F .text 000000d8 peap_prfplus | ||
1227 | +0803e1f0 g F .text 00000022 wpa_sm_notify_disassoc | ||
1228 | +0803c8e0 g F .text 00000044 tlsv1_set_dhparams | ||
1229 | +0800ab10 g F .text 00000020 chSemSignalI | ||
1230 | +08008bcc g F .text 000000e8 _ungetc_r | ||
1231 | +08037ac0 g F .text 0000005c rsn_preauth_deinit | ||
1232 | +0801fb30 g F .text 000000a2 ieee802_1x_tx_key | ||
1233 | +0802a8b0 g F .text 00000036 tcp_recved | ||
1234 | +08048de0 g F .text 00000014 eap_peer_tls_reset_input | ||
1235 | +08016300 g F .text 0000003e wpa_config_write | ||
1236 | +08003090 g F .text 00000e34 __ssvfscanf_r | ||
1237 | +0800b230 g F .text 00000010 NMIVector | ||
1238 | +0803a870 g F .text 00000184 tls_derive_keys | ||
1239 | +08049b40 g F .text 000000b2 pkcs1_decrypt_public_key | ||
1237 | 20000000 g .stacks 00000000 __main_stack_base__ | 1240 | 20000000 g .stacks 00000000 __main_stack_base__ |
1238 | -0802ae80 g F .text 00000070 tcp_pcb_remove | ||
1239 | -0802aa50 g F .text 00000028 tcp_seg_copy | ||
1240 | -08014060 g F .text 00000070 Vector108 | ||
1241 | -08005780 g F .text 00000004 __locale_cjk_lang | ||
1242 | -0800b850 g F .text 00000020 wifi_connect_ap_result_cb | ||
1243 | -08046a10 g F .text 00000020 crypto_public_key_encrypt_pkcs1_v15 | ||
1244 | -0802a1f0 g F .text 0000000c netif_set_default | ||
1245 | -080410e0 g F .text 00000068 wps_build_model_number | ||
1246 | -0800a600 g F .text 00000028 chSchGoSleepS | ||
1247 | -2000176c g O .bss 00000004 roam_lastrssi | ||
1248 | -08067730 g O .text 00000100 Td4s | ||
1249 | -0803d780 g F .text 00000022 wpa_parse_wpa_ie | ||
1250 | -08015ab0 g F .text 00000030 config_eeprom_read_str | ||
1251 | -0802a1d0 g F .text 00000008 netif_set_gw | ||
1252 | -08000ec0 g F .text 0000005a sscanf | ||
1253 | -08028fa0 g F .text 00000120 dhcp_discover | ||
1254 | -0801d220 g F .text 0000001e wpas_wps_searching | ||
1255 | -08032d30 g F .text 00000032 eap_register_methods | ||
1256 | -080126c0 g F .text 0000000e wifi_recover_end | ||
1257 | -08015d90 g F .text 0000002c libwismart_RegistryCreateKey | ||
1258 | -200029e0 g O .bss 00000006 softap_TIM | ||
1259 | -08049280 g F .text 00000048 eap_peer_tls_decrypt | ||
1260 | -08014cd0 g F .text 00000096 SD_LowLevel_DMA_TxConfig | ||
1261 | -08018a90 g F .text 0000041e wpa_supplicant_add_iface | ||
1262 | -08013ba0 g F .text 00000020 libwismart_LinkList_Init | ||
1263 | -08005784 g F .text 00000008 _localeconv_r | ||
1264 | -08009aa4 g F .text 0000006a __floatundidf | ||
1265 | -0800da60 g F .text 0000000e LwIP_FrameReceivedEvent | ||
1266 | -0802c700 g F .text 0000003c tcp_timer_needed | ||
1267 | -0803a980 g F .text 0000000a tls_alert | ||
1268 | -200048c8 g O .bss 00000004 tmpCC4 | ||
1269 | -08026a00 g F .text 00000070 FLASH_ProgramHalfWord | ||
1270 | -0800b7c0 g F .text 00000054 dhcp_connect_result_cb | ||
1271 | -20001768 g O .bss 00000004 roam_currrssi | ||
1272 | -08011bf0 g F .text 00000010 wifi_DisableConnectedBss | ||
1273 | -0802e790 g F .text 00000022 libwismart_PBufQueue_isEmpty | ||
1274 | -2000d3ac g O .bss 00000004 current_iphdr_src | ||
1275 | -08047080 g F .text 0000007e des3_decrypt | ||
1276 | -20001440 g O .bss 00000006 key_3 | ||
1277 | -080179b0 g F .text 00000032 wpa_ap_assoc_event | ||
1278 | -08030590 g F .text 0000001e wpa_config_get_blob | ||
1279 | -08000b50 g F .text 00000016 srand | ||
1280 | -20002598 g O .bss 00000004 ARPTimer | ||
1281 | -0802cbc0 g F .text 00000020 igmp_lookfor_group | ||
1282 | -20001428 g O .bss 00000006 key_5 | ||
1283 | -08030ad0 g F .text 00000020 eap_peer_get_methods | ||
1284 | -20001420 g O .bss 00000006 key_4 | ||
1285 | -0803d7b0 g F .text 00000212 wpa_gen_wpa_ie | ||
1286 | -0800ac90 g F .text 0000001e chEvtBroadcastFlagsI | ||
1287 | -080056a8 g F .text 0000004c _fwalk_reent | ||
1288 | -08031c40 g F .text 00000038 eap_notify_lower_layer_success | ||
1289 | -08041000 g F .text 00000068 wps_build_manufacturer | ||
1290 | -0803c500 g F .text 00000050 tls_verify_hash_free | ||
1291 | -08012340 g F .text 00000030 wifi_PsEnable | ||
1292 | -2000144c g O .bss 00000020 ssid | ||
1293 | -0800aa10 g F .text 0000003c chSemWaitTimeoutS | ||
1294 | -080126b0 g F .text 0000000e wifi_recover_start | ||
1295 | -0800b1d0 g F .text 00000010 BusFaultVector | ||
1296 | -08019a30 g F .text 00000052 wps_ap_priority_compar | ||
1297 | -0804bec0 g F .text 00000024 bignum_cmp_d | ||
1298 | -0800759c g F .text 00000a24 _svfiprintf_r | ||
1299 | -080135a0 g F .text 00000018 wifi_get_padding_len | ||
1300 | -0800c0e0 g F .text 00000038 libwismart_SetStaticIP | ||
1301 | -0803bcf0 g F .text 00000658 tlsv1_client_handshake_write | ||
1302 | -080306f0 g F .text 0000005a wpa_config_alloc_empty | ||
1303 | -0801d9f0 g F .text 00000034 wpas_wps_ap_pin_disable | ||
1304 | -0802b0f0 g F .text 00000006 tcp_new | ||
1305 | -0801cdf0 g F .text 000001a8 wpas_wps_init | ||
1306 | -0800c7b0 g F .text 00000044 libwismart_StartPeriodicScan | ||
1307 | -0803a690 g F .text 00000024 tls_deinit | ||
1308 | -08032ac0 g F .text 0000000a eapol_sm_notify_portValid | ||
1309 | -08026700 g F .text 00000018 DMA_Cmd | ||
1310 | -08016b20 g F .text 00000004 wpa_driver_WE_set_p2p_powersave | ||
1311 | -0800c330 g F .text 00000060 libwismart_WiFiDisconnect | ||
1312 | -0802a070 g F .text 00000060 netif_remove | ||
1313 | -08000db4 g F .text 0000006c snprintf | ||
1314 | -08013e40 g F .text 00000010 libwismart_TimerStop | ||
1315 | -080177c0 g F .text 00000044 wpa_assoc_event | ||
1316 | -08049160 g F .text 000000f6 eap_peer_tls_process_helper | ||
1317 | -0800a2d0 w F .text 00000010 VectorB0 | ||
1318 | -080283a0 g F .text 00000082 netconn_alloc | ||
1319 | -08017e50 g F .text 0000012c wpa_supplicant_rx_eapol | ||
1320 | -08009f40 g F .text 0000008a __gtdf2 | ||
1321 | -08012900 g F .text 0000009c wifi_filter_parse_packet | ||
1322 | -080107e0 g F .text 00000030 SendDisassocRequest | ||
1323 | -0800c310 g F .text 00000004 _getpid | ||
1324 | -0802e4a0 g F .text 00000010 sys_sem_free | ||
1325 | -08017b50 g F .text 00000006 os_gmtime | ||
1326 | -08037380 g F .text 00000002 wpas_notify_ap_scan_changed | ||
1327 | -0800a8b0 g F .text 00000030 chThdWait | ||
1328 | -08016230 g F .text 0000004a hwaddr_aton | ||
1329 | -0800dbc0 g F .text 00000080 LwIP_DHCP_Process_Handle | ||
1330 | -0800a2d0 w F .text 00000010 VectorB4 | ||
1331 | -08036190 g F .text 0000003c l2_packet_init | ||
1332 | -080376f0 g F .text 00000054 pmksa_cache_flush | ||
1333 | -0800ccb0 g F .text 00000092 libwismart_PowerSave_Init | ||
1334 | -0800a2d0 w F .text 00000010 VectorF0 | ||
1335 | -08012c10 g F .text 00000012 wifi_scan_init | ||
1336 | -080305d0 g F .text 000000b4 wpa_config_free | ||
1337 | -08037130 g F .text 00000050 get_master_key | ||
1338 | -08022240 g F .text 00000086 eap_server_sm_deinit | ||
1339 | -0800aec0 g F .text 00000084 chHeapAlloc | ||
1340 | -0803f2a0 g F .text 00000008 wpa_sm_pmksa_cache_flush | ||
1341 | -0802d2d0 g F .text 00000022 ip_output_if | ||
1342 | -0803c550 g F .text 00000076 tls_verify_hash_init | ||
1343 | -0800a540 g F .text 00000024 chVTResetI | ||
1344 | -080060b0 g F .text 000000ae __b2d | ||
1345 | -0803d080 g F .text 00000016 wpabuf_alloc_ext_data | ||
1346 | -08000ce0 g F .text 00000012 signal | ||
1347 | -08013e50 g F .text 000001b8 HW_RTC_Init | ||
1348 | -08037340 g F .text 00000004 wpas_notify_iface_added | ||
1349 | -08046a30 g F .text 00000020 crypto_private_key_sign_pkcs1 | ||
1350 | -08043b20 g F .text 0000004a hostapd_eid_time_adv | ||
1351 | -0803c450 g F .text 00000042 tls_parse_cert | ||
1352 | -0801e800 g F .text 00000020 hostapd_prune_associations | ||
1353 | -08009f48 g F .text 00000082 __ltdf2 | ||
1354 | -08037180 g F .text 00000090 get_asymetric_start_key | ||
1355 | -080374e0 g F .text 00000002 wpas_notify_bss_ies_changed | ||
1356 | -080138e0 g F .text 00000012 libwismart_ClearTraceMask | ||
1357 | -0800ab90 g F .text 0000000c chMtxLock | ||
1358 | -08021610 g F .text 0000004e hostapd_set_ap_wps_ie | ||
1359 | -08013cd0 g F .text 0000002a libwismart_LinkList_Exec | ||
1360 | -0801f4b0 g F .text 0000002e hostapd_free_stas | ||
1361 | -08036990 g F .text 00000034 NRX_MD5Init | ||
1362 | -20004a20 g O .bss 00000028 local_copy_key | ||
1363 | -0801f790 g F .text 00000002 mlme_michaelmicfailure_indication | ||
1364 | -08016b30 g F .text 00000004 wpa_driver_WE_p2p_find | ||
1365 | -0800a2d0 w F .text 00000010 Vector44 | ||
1366 | -08026ce0 g F .text 0000000a PWR_WakeUpPinCmd | ||
1367 | -08001200 g F .text 0000007e strcmp | ||
1368 | -0800b9a0 g F .text 00000046 join_strings | ||
1369 | -0804bf10 g F .text 00000012 bignum_sub | ||
1370 | -0800ca20 g F .text 00000060 libwismart_SoftAP_Client_Change_Ind | ||
1371 | -0800fa00 g F .text 0000002c set_trans_id | ||
1372 | -08043d40 g F .text 0000003a hostapd_notif_disassoc | 1241 | +0802ad60 g F .text 00000070 tcp_pcb_remove |
1242 | +0802a930 g F .text 00000028 tcp_seg_copy | ||
1243 | +08013f70 g F .text 00000070 Vector108 | ||
1244 | +08005800 g F .text 00000004 __locale_cjk_lang | ||
1245 | +0800b6e0 g F .text 00000020 wifi_connect_ap_result_cb | ||
1246 | +080468a0 g F .text 00000020 crypto_public_key_encrypt_pkcs1_v15 | ||
1247 | +0802a0d0 g F .text 0000000c netif_set_default | ||
1248 | +08040f70 g F .text 00000068 wps_build_model_number | ||
1249 | +0800a680 g F .text 00000028 chSchGoSleepS | ||
1250 | +2000164c g O .bss 00000004 roam_lastrssi | ||
1251 | +080676f0 g O .text 00000100 Td4s | ||
1252 | +0803d610 g F .text 00000022 wpa_parse_wpa_ie | ||
1253 | +08015930 g F .text 00000030 config_eeprom_read_str | ||
1254 | +0802a0b0 g F .text 00000008 netif_set_gw | ||
1255 | +08000f40 g F .text 0000005a sscanf | ||
1256 | +08028e80 g F .text 00000120 dhcp_discover | ||
1257 | +0801cfd0 g F .text 0000001e wpas_wps_searching | ||
1258 | +08032bc0 g F .text 00000032 eap_register_methods | ||
1259 | +080125d0 g F .text 0000000e wifi_recover_end | ||
1260 | +200028c0 g O .bss 00000006 softap_TIM | ||
1261 | +08049110 g F .text 00000048 eap_peer_tls_decrypt | ||
1262 | +08014be0 g F .text 00000096 SD_LowLevel_DMA_TxConfig | ||
1263 | +08018840 g F .text 0000041e wpa_supplicant_add_iface | ||
1264 | +08013ab0 g F .text 00000020 libwismart_LinkList_Init | ||
1265 | +08005804 g F .text 00000008 _localeconv_r | ||
1266 | +08009b24 g F .text 0000006a __floatundidf | ||
1267 | +0800d970 g F .text 0000000e LwIP_FrameReceivedEvent | ||
1268 | +0802c5e0 g F .text 0000003c tcp_timer_needed | ||
1269 | +0803a810 g F .text 0000000a tls_alert | ||
1270 | +200047a8 g O .bss 00000004 tmpCC4 | ||
1271 | +080267b0 g F .text 00000070 FLASH_ProgramHalfWord | ||
1272 | +0800b650 g F .text 00000054 dhcp_connect_result_cb | ||
1273 | +20001648 g O .bss 00000004 roam_currrssi | ||
1274 | +0802e560 g F .text 0000002e sys_thread_new | ||
1275 | +08011b00 g F .text 00000010 wifi_DisableConnectedBss | ||
1276 | +0802e760 g F .text 00000022 libwismart_PBufQueue_isEmpty | ||
1277 | +2000d298 g O .bss 00000004 current_iphdr_src | ||
1278 | +08046f10 g F .text 0000007e des3_decrypt | ||
1279 | +08017760 g F .text 00000032 wpa_ap_assoc_event | ||
1280 | +08030420 g F .text 0000001e wpa_config_get_blob | ||
1281 | +08000bd0 g F .text 00000016 srand | ||
1282 | +20002478 g O .bss 00000004 ARPTimer | ||
1283 | +0802cb60 g F .text 00000020 igmp_lookfor_group | ||
1284 | +08030960 g F .text 00000020 eap_peer_get_methods | ||
1285 | +0803d640 g F .text 00000212 wpa_gen_wpa_ie | ||
1286 | +0800ad10 g F .text 0000001e chEvtBroadcastFlagsI | ||
1287 | +08005728 g F .text 0000004c _fwalk_reent | ||
1288 | +08031ad0 g F .text 00000038 eap_notify_lower_layer_success | ||
1289 | +08040e90 g F .text 00000068 wps_build_manufacturer | ||
1290 | +0803c390 g F .text 00000050 tls_verify_hash_free | ||
1291 | +08012250 g F .text 00000030 wifi_PsEnable | ||
1292 | +0800aa90 g F .text 0000003c chSemWaitTimeoutS | ||
1293 | +080125c0 g F .text 0000000e wifi_recover_start | ||
1294 | +0800b250 g F .text 00000010 BusFaultVector | ||
1295 | +080197e0 g F .text 00000052 wps_ap_priority_compar | ||
1296 | +0804bd50 g F .text 00000024 bignum_cmp_d | ||
1297 | +0800761c g F .text 00000a24 _svfiprintf_r | ||
1298 | +080134b0 g F .text 00000018 wifi_get_padding_len | ||
1299 | +0800bfe0 g F .text 00000038 libwismart_SetStaticIP | ||
1300 | +0803bb80 g F .text 00000658 tlsv1_client_handshake_write | ||
1301 | +08030580 g F .text 0000005a wpa_config_alloc_empty | ||
1302 | +0801d7a0 g F .text 00000034 wpas_wps_ap_pin_disable | ||
1303 | +0802afd0 g F .text 00000006 tcp_new | ||
1304 | +0801cba0 g F .text 000001a8 wpas_wps_init | ||
1305 | +0800c6b0 g F .text 00000044 libwismart_StartPeriodicScan | ||
1306 | +0803a520 g F .text 00000024 tls_deinit | ||
1307 | +08032950 g F .text 0000000a eapol_sm_notify_portValid | ||
1308 | +080264b0 g F .text 00000018 DMA_Cmd | ||
1309 | +080168d0 g F .text 00000004 wpa_driver_WE_set_p2p_powersave | ||
1310 | +0800c230 g F .text 00000060 libwismart_WiFiDisconnect | ||
1311 | +08029f50 g F .text 00000060 netif_remove | ||
1312 | +08000e34 g F .text 0000006c snprintf | ||
1313 | +08013d50 g F .text 00000010 libwismart_TimerStop | ||
1314 | +08017570 g F .text 00000044 wpa_assoc_event | ||
1315 | +08048ff0 g F .text 000000f6 eap_peer_tls_process_helper | ||
1316 | +0800a350 w F .text 00000010 VectorB0 | ||
1317 | +08028150 g F .text 00000082 netconn_alloc | ||
1318 | +08017c00 g F .text 0000012c wpa_supplicant_rx_eapol | ||
1319 | +08009fc0 g F .text 0000008a __gtdf2 | ||
1320 | +08012810 g F .text 0000009c wifi_filter_parse_packet | ||
1321 | +080106f0 g F .text 00000030 SendDisassocRequest | ||
1322 | +0800c210 g F .text 00000004 _getpid | ||
1323 | +0802e440 g F .text 00000010 sys_sem_free | ||
1324 | +08017900 g F .text 00000006 os_gmtime | ||
1325 | +08037210 g F .text 00000002 wpas_notify_ap_scan_changed | ||
1326 | +0800a930 g F .text 00000030 chThdWait | ||
1327 | +08015fe0 g F .text 0000004a hwaddr_aton | ||
1328 | +0800dad0 g F .text 00000080 LwIP_DHCP_Process_Handle | ||
1329 | +0800a350 w F .text 00000010 VectorB4 | ||
1330 | +08036020 g F .text 0000003c l2_packet_init | ||
1331 | +08037580 g F .text 00000054 pmksa_cache_flush | ||
1332 | +0800cbb0 g F .text 00000092 libwismart_PowerSave_Init | ||
1333 | +0800a350 w F .text 00000010 VectorF0 | ||
1334 | +08012b20 g F .text 00000012 wifi_scan_init | ||
1335 | +08030460 g F .text 000000b4 wpa_config_free | ||
1336 | +08036fc0 g F .text 00000050 get_master_key | ||
1337 | +08021ff0 g F .text 00000086 eap_server_sm_deinit | ||
1338 | +0800af40 g F .text 00000084 chHeapAlloc | ||
1339 | +0803f130 g F .text 00000008 wpa_sm_pmksa_cache_flush | ||
1340 | +0802d270 g F .text 00000022 ip_output_if | ||
1341 | +0803c3e0 g F .text 00000076 tls_verify_hash_init | ||
1342 | +0800a5c0 g F .text 00000024 chVTResetI | ||
1343 | +08006130 g F .text 000000ae __b2d | ||
1344 | +0803cf10 g F .text 00000016 wpabuf_alloc_ext_data | ||
1345 | +08000d60 g F .text 00000012 signal | ||
1346 | +08013d60 g F .text 000001b8 HW_RTC_Init | ||
1347 | +080371d0 g F .text 00000004 wpas_notify_iface_added | ||
1348 | +080468c0 g F .text 00000020 crypto_private_key_sign_pkcs1 | ||
1349 | +080439b0 g F .text 0000004a hostapd_eid_time_adv | ||
1350 | +0803c2e0 g F .text 00000042 tls_parse_cert | ||
1351 | +0801e5b0 g F .text 00000020 hostapd_prune_associations | ||
1352 | +08009fc8 g F .text 00000082 __ltdf2 | ||
1353 | +08037010 g F .text 00000090 get_asymetric_start_key | ||
1354 | +08037370 g F .text 00000002 wpas_notify_bss_ies_changed | ||
1355 | +080137f0 g F .text 00000012 libwismart_ClearTraceMask | ||
1356 | +0800ac10 g F .text 0000000c chMtxLock | ||
1357 | +080213c0 g F .text 0000004e hostapd_set_ap_wps_ie | ||
1358 | +08013be0 g F .text 0000002a libwismart_LinkList_Exec | ||
1359 | +0801f260 g F .text 0000002e hostapd_free_stas | ||
1360 | +08036820 g F .text 00000034 NRX_MD5Init | ||
1361 | +20004900 g O .bss 00000028 local_copy_key | ||
1362 | +0801f540 g F .text 00000002 mlme_michaelmicfailure_indication | ||
1363 | +080168e0 g F .text 00000004 wpa_driver_WE_p2p_find | ||
1364 | +0800a350 w F .text 00000010 Vector44 | ||
1365 | +08026a90 g F .text 0000000a PWR_WakeUpPinCmd | ||
1366 | +08001280 g F .text 0000007e strcmp | ||
1367 | +0800b830 g F .text 00000046 join_strings | ||
1368 | +0804bda0 g F .text 00000012 bignum_sub | ||
1369 | +0800c920 g F .text 00000060 libwismart_SoftAP_Client_Change_Ind | ||
1370 | +0800f910 g F .text 0000002c set_trans_id | ||
1371 | +08043bd0 g F .text 0000003a hostapd_notif_disassoc | ||
1373 | 20000200 g .stacks 00000000 __main_stack_end__ | 1372 | 20000200 g .stacks 00000000 __main_stack_end__ |
1374 | -0803a1e0 g F .text 0000007a sha1_vector | ||
1375 | -0801d950 g F .text 00000002 ap_tx_status | ||
1376 | -08045e30 g F .text 000000de aes_unwrap | ||
1377 | -0803a640 g F .text 0000001c hmac_sha256 | ||
1378 | -0801d120 g F .text 0000009a wpas_wps_scan_pbc_overlap | 1373 | +0803a070 g F .text 0000007a sha1_vector |
1374 | +0801d700 g F .text 00000002 ap_tx_status | ||
1375 | +08045cc0 g F .text 000000de aes_unwrap | ||
1376 | +0803a4d0 g F .text 0000001c hmac_sha256 | ||
1377 | +0801ced0 g F .text 0000009a wpas_wps_scan_pbc_overlap | ||
1379 | 200011ac g O .data 00000002 dlm_mib_table_size_client | 1378 | 200011ac g O .data 00000002 dlm_mib_table_size_client |
1380 | -0800acf0 g F .text 0000002a chMBInit | ||
1381 | -0800a2d0 w F .text 00000010 Vector40 | ||
1382 | -080269c0 g F .text 0000003e FLASH_WaitForLastBank2Operation | ||
1383 | -08031a60 g F .text 00000002 eap_sm_request_password | ||
1384 | -08017ba0 g F .text 00000008 _nrx_os_malloc | ||
1385 | -0802ea60 g F .text 000000a8 EE_Init_ | ||
1386 | -0801ef90 g F .text 0000007c ap_sta_deauthenticate | ||
1387 | -080372c0 g F .text 0000001e nt_password_hash_encrypted_with_block | ||
1388 | -0802cf50 g F .text 000001e0 ip_input | 1379 | +0800ad70 g F .text 0000002a chMBInit |
1380 | +0800a350 w F .text 00000010 Vector40 | ||
1381 | +08026770 g F .text 0000003e FLASH_WaitForLastBank2Operation | ||
1382 | +080318f0 g F .text 00000002 eap_sm_request_password | ||
1383 | +08017950 g F .text 00000008 _nrx_os_malloc | ||
1384 | +0802e8f0 g F .text 000000a8 EE_Init_ | ||
1385 | +0801ed40 g F .text 0000007c ap_sta_deauthenticate | ||
1386 | +08037150 g F .text 0000001e nt_password_hash_encrypted_with_block | ||
1387 | +0802cef0 g F .text 000001e0 ip_input | ||
1389 | 20000c08 g O .data 00000004 _impure_ptr | 1388 | 20000c08 g O .data 00000004 _impure_ptr |
1390 | -0803ff80 g F .text 00000032 wps_build_encr_type_flags | ||
1391 | -0803e240 g F .text 00000060 wpa_sm_init | ||
1392 | -0803ad00 g F .text 000000b2 tlsv1_client_decrypt | ||
1393 | -0800d190 g F .text 00000038 Transport_ReadData | ||
1394 | -08015360 g F .text 0000007c HW_WiFiTransport_SendCMD53 | ||
1395 | -0802b2f0 g F .text 00000026 tcp_recv_null | ||
1396 | -0800a810 g F .text 00000028 chThdSetPriority | ||
1397 | -08000bb0 g F .text 00000036 _init_signal_r | ||
1398 | -0801f010 g F .text 0000007c ap_sta_disassociate | ||
1399 | -0802b390 g F .text 00000070 tcp_fasttmr | ||
1400 | -08049f70 g F .text 0000013a crypto_rsa_exptmod | ||
1401 | -0801ab90 g F .text 000002ec wps_build_cred | ||
1402 | -08026f50 g F .text 000000a8 RCC_GetClocksFreq | ||
1403 | -0804a0b0 g F .text 00000042 crypto_rsa_free | ||
1404 | -0802f280 g F .text 000000ac wpa_bss_get_vendor_ie_multi | ||
1405 | -0802a140 g F .text 0000001a netif_set_addr | ||
1406 | -08021660 g F .text 00000068 hostapd_set_authorized | ||
1407 | -080469b0 g F .text 00000002 crypto_global_deinit | ||
1408 | -08012870 g F .text 0000001a wifi_cmds_flow_is_blocked | ||
1409 | -0802aac0 g F .text 00000004 tcp_accept | ||
1410 | -08015940 g F .text 0000005a registryGetValue | ||
1411 | -08043e50 g F .text 00000002 lwip_socket_init | ||
1412 | -08000440 g F .text 00000098 memset | ||
1413 | -08020370 g F .text 00000012 ieee802_1x_get_key | ||
1414 | -08011dd0 g F .text 00000050 wifi_ps_sem_init | ||
1415 | -08027340 g F .text 0000000e SDIO_GetCommandResponse | 1389 | +0803fe10 g F .text 00000032 wps_build_encr_type_flags |
1390 | +0803e0d0 g F .text 00000060 wpa_sm_init | ||
1391 | +0803ab90 g F .text 000000b2 tlsv1_client_decrypt | ||
1392 | +0800d090 g F .text 00000038 Transport_ReadData | ||
1393 | +08015270 g F .text 0000007c HW_WiFiTransport_SendCMD53 | ||
1394 | +0802b1d0 g F .text 00000026 tcp_recv_null | ||
1395 | +0800a890 g F .text 00000028 chThdSetPriority | ||
1396 | +08000c30 g F .text 00000036 _init_signal_r | ||
1397 | +0801edc0 g F .text 0000007c ap_sta_disassociate | ||
1398 | +0802b270 g F .text 00000070 tcp_fasttmr | ||
1399 | +08049e00 g F .text 0000013a crypto_rsa_exptmod | ||
1400 | +0801a940 g F .text 000002ec wps_build_cred | ||
1401 | +08026d00 g F .text 000000a8 RCC_GetClocksFreq | ||
1402 | +08049f40 g F .text 00000042 crypto_rsa_free | ||
1403 | +0802f110 g F .text 000000ac wpa_bss_get_vendor_ie_multi | ||
1404 | +0802a020 g F .text 0000001a netif_set_addr | ||
1405 | +08021410 g F .text 00000068 hostapd_set_authorized | ||
1406 | +08046840 g F .text 00000002 crypto_global_deinit | ||
1407 | +08012780 g F .text 0000001a wifi_cmds_flow_is_blocked | ||
1408 | +0802a9a0 g F .text 00000004 tcp_accept | ||
1409 | +08015830 g F .text 0000005a registryGetValue | ||
1410 | +08043ce0 g F .text 00000002 lwip_socket_init | ||
1411 | +080004c0 g F .text 00000098 memset | ||
1412 | +08020120 g F .text 00000012 ieee802_1x_get_key | ||
1413 | +08011ce0 g F .text 00000050 wifi_ps_sem_init | ||
1414 | +080270f0 g F .text 0000000e SDIO_GetCommandResponse | ||
1416 | 200010b4 g O .data 00000004 __mbtowc | 1415 | 200010b4 g O .data 00000004 __mbtowc |
1417 | -08041150 g F .text 0000003c wps_build_primary_dev_type | ||
1418 | -0800eed0 g F .text 00000080 softAP_handle_associateInd | ||
1419 | -08009f40 g F .text 0000008a __gedf2 | ||
1420 | -08030aa0 g F .text 00000030 eap_peer_get_type | ||
1421 | -08015ae0 g F .text 00000030 config_eeprom_read_byte | ||
1422 | -08001010 g F .text 00000048 stpcpy | ||
1423 | -0801cdb0 g F .text 0000003a wpas_wps_cancel | ||
1424 | -0803c4a0 g F .text 00000058 tls_verify_hash_add | ||
1425 | -08030790 g F .text 00000002 dh5_free | ||
1426 | -08045d30 g F .text 00000016 aes_encrypt_deinit | ||
1427 | -0803eff0 g F .text 00000072 wpa_sm_set_config | ||
1428 | -08017b70 g F .text 00000014 os_get_random | ||
1429 | -0801a550 g F .text 00000076 wps_registrar_pbc_overlap | ||
1430 | -08032ad0 g F .text 0000000a eapol_sm_notify_portEnabled | ||
1431 | -08009d64 g F .text 000001d0 __aeabi_ddiv | ||
1432 | -08037350 g F .text 00000002 wpas_notify_iface_removed | ||
1433 | -0803d560 g F .text 0000018e wpa_parse_wpa_ie_wpa | ||
1434 | -0800c300 g F .text 00000004 _kill | ||
1435 | -0800a2d0 w F .text 00000010 Vector48 | ||
1436 | -08016190 g F .text 0000001e bootloader_get_client_fw_info | ||
1437 | -08016c70 g F .text 00000014 wpa_driver_WE_init | ||
1438 | -08049260 g F .text 0000001e eap_peer_tls_ssl_deinit | ||
1439 | -08043a00 g F .text 00000004 hostapd_eid_interworking | ||
1440 | -0800da70 g F .text 00000038 TimerEventHandlerSignal | ||
1441 | -080219e0 g F .text 00000026 hostapd_drv_sta_deauth | ||
1442 | -080136a0 g F .text 00000130 _wifi_send_mlme | ||
1443 | -080268b0 g F .text 00000022 FLASH_Unlock | ||
1444 | -200014f0 g O .bss 00000040 user | ||
1445 | -0803f170 g F .text 0000004e wpa_sm_set_assoc_wpa_ie | ||
1446 | -080469d0 g F .text 0000002c crypto_private_key_import | ||
1447 | -08016c00 g F .text 00000004 wpa_driver_WE_p2p_service_update | ||
1448 | -08009a68 g F .text 0000003a __extendsfdf2 | ||
1449 | -0802e4b0 g F .text 00000006 sys_sem_signal | ||
1450 | -0803cb70 g F .text 00000062 tlsv1_record_change_read_cipher | ||
1451 | -0803a550 g F .text 000000ea hmac_sha256_vector | ||
1452 | -0802aae0 g F .text 00000044 tcp_pcb_purge | ||
1453 | -0800f0a0 g F .text 0000002c softAP_Update_TIM_Field | ||
1454 | -08034b10 g F .text 00000030 eloop_is_timeout_registered | ||
1455 | -0802b450 g F .text 00000138 tcp_connect | ||
1456 | -0800b020 g F .text 00000050 chHeapMaxMinFraq | ||
1457 | -08037960 g F .text 0000000a pmksa_cache_clear_current | ||
1458 | -080063a0 g F .text 0000007c __sccl | ||
1459 | -0803f070 g F .text 00000010 wpa_sm_set_own_addr | ||
1460 | -0801cc20 g F .text 000000f0 wpas_wps_eapol_cb | ||
1461 | -0803ff40 g F .text 00000034 wps_build_auth_type_flags | ||
1462 | -08005e84 g F .text 000000c0 __lshift | ||
1463 | -08040f50 g F .text 0000004e wps_build_wsc_ack | ||
1464 | -0802aab0 g F .text 00000006 tcp_err | ||
1465 | -0800a2f0 g F .text 00000016 _port_switch_from_isr | ||
1466 | -08026470 g F .text 0000004e SystemInit | ||
1467 | -0802e8e0 g F .text 00000062 EE_ReadVariable_ | ||
1468 | -08036fb0 g F .text 00000036 generate_nt_response | ||
1469 | -080203b0 g F .text 00000010 ieee802_1x_notify_port_valid | ||
1470 | -08015620 g F .text 0000001e HW_WiFiTransport_SendCMD52 | ||
1471 | -080144f0 g F .text 000000c0 HW_SDIO_Write_Direct | ||
1472 | -08013910 g F .text 00000002 libwismart_DebugPin_Reset | ||
1473 | -0803c950 g F .text 00000006 tlsv1_cred_alloc | 1416 | +08040fe0 g F .text 0000003c wps_build_primary_dev_type |
1417 | +0800ede0 g F .text 00000080 softAP_handle_associateInd | ||
1418 | +08009fc0 g F .text 0000008a __gedf2 | ||
1419 | +08030930 g F .text 00000030 eap_peer_get_type | ||
1420 | +08015960 g F .text 00000030 config_eeprom_read_byte | ||
1421 | +08001090 g F .text 00000048 stpcpy | ||
1422 | +0801cb60 g F .text 0000003a wpas_wps_cancel | ||
1423 | +0803c330 g F .text 00000058 tls_verify_hash_add | ||
1424 | +08030620 g F .text 00000002 dh5_free | ||
1425 | +08045bc0 g F .text 00000016 aes_encrypt_deinit | ||
1426 | +0803ee80 g F .text 00000072 wpa_sm_set_config | ||
1427 | +08017920 g F .text 00000014 os_get_random | ||
1428 | +0801a300 g F .text 00000076 wps_registrar_pbc_overlap | ||
1429 | +08032960 g F .text 0000000a eapol_sm_notify_portEnabled | ||
1430 | +08009de4 g F .text 000001d0 __aeabi_ddiv | ||
1431 | +080371e0 g F .text 00000002 wpas_notify_iface_removed | ||
1432 | +0803d3f0 g F .text 0000018e wpa_parse_wpa_ie_wpa | ||
1433 | +0800c200 g F .text 00000004 _kill | ||
1434 | +0800a350 w F .text 00000010 Vector48 | ||
1435 | +08015f40 g F .text 0000001e bootloader_get_client_fw_info | ||
1436 | +08016a20 g F .text 00000014 wpa_driver_WE_init | ||
1437 | +080490f0 g F .text 0000001e eap_peer_tls_ssl_deinit | ||
1438 | +08043890 g F .text 00000004 hostapd_eid_interworking | ||
1439 | +0800d980 g F .text 00000038 TimerEventHandlerSignal | ||
1440 | +08021790 g F .text 00000026 hostapd_drv_sta_deauth | ||
1441 | +080135b0 g F .text 00000130 _wifi_send_mlme | ||
1442 | +08026660 g F .text 00000022 FLASH_Unlock | ||
1443 | +0803f000 g F .text 0000004e wpa_sm_set_assoc_wpa_ie | ||
1444 | +08046860 g F .text 0000002c crypto_private_key_import | ||
1445 | +080169b0 g F .text 00000004 wpa_driver_WE_p2p_service_update | ||
1446 | +08009ae8 g F .text 0000003a __extendsfdf2 | ||
1447 | +0802e450 g F .text 00000006 sys_sem_signal | ||
1448 | +0803ca00 g F .text 00000062 tlsv1_record_change_read_cipher | ||
1449 | +0803a3e0 g F .text 000000ea hmac_sha256_vector | ||
1450 | +0802a9c0 g F .text 00000044 tcp_pcb_purge | ||
1451 | +0800efb0 g F .text 0000002c softAP_Update_TIM_Field | ||
1452 | +080349a0 g F .text 00000030 eloop_is_timeout_registered | ||
1453 | +0802b330 g F .text 00000138 tcp_connect | ||
1454 | +0800b0a0 g F .text 00000050 chHeapMaxMinFraq | ||
1455 | +080377f0 g F .text 0000000a pmksa_cache_clear_current | ||
1456 | +08006420 g F .text 0000007c __sccl | ||
1457 | +0803ef00 g F .text 00000010 wpa_sm_set_own_addr | ||
1458 | +0801c9d0 g F .text 000000f0 wpas_wps_eapol_cb | ||
1459 | +0803fdd0 g F .text 00000034 wps_build_auth_type_flags | ||
1460 | +08005f04 g F .text 000000c0 __lshift | ||
1461 | +08040de0 g F .text 0000004e wps_build_wsc_ack | ||
1462 | +0802a990 g F .text 00000006 tcp_err | ||
1463 | +0800a370 g F .text 00000016 _port_switch_from_isr | ||
1464 | +08026220 g F .text 0000004e SystemInit | ||
1465 | +0802e840 g F .text 00000062 EE_ReadVariable_ | ||
1466 | +08036e40 g F .text 00000036 generate_nt_response | ||
1467 | +08020160 g F .text 00000010 ieee802_1x_notify_port_valid | ||
1468 | +08015530 g F .text 0000001e HW_WiFiTransport_SendCMD52 | ||
1469 | +08014400 g F .text 000000c0 HW_SDIO_Write_Direct | ||
1470 | +08013820 g F .text 00000002 libwismart_DebugPin_Reset | ||
1471 | +0803c7e0 g F .text 00000006 tlsv1_cred_alloc | ||
1474 | 20000200 g .stacks 00000000 __main_thread_stack_base__ | 1472 | 20000200 g .stacks 00000000 __main_thread_stack_base__ |
1475 | -0800a970 g F .text 00000008 chSemInit | ||
1476 | -08037210 g F .text 0000007a encrypt_pw_block_with_password_hash | ||
1477 | -08027270 g F .text 00000032 SDIO_Init | ||
1478 | -0802c150 g F .text 00000002 udp_init | ||
1479 | -08018340 g F .text 00000014 cipher_suite2driver | 1473 | +0800a9f0 g F .text 00000008 chSemInit |
1474 | +080370a0 g F .text 0000007a encrypt_pw_block_with_password_hash | ||
1475 | +08027020 g F .text 00000032 SDIO_Init | ||
1476 | +0802c030 g F .text 00000002 udp_init | ||
1477 | +080180f0 g F .text 00000014 cipher_suite2driver | ||
1480 | 20000c00 g .data 00000000 _data | 1478 | 20000c00 g .data 00000000 _data |
1481 | -0800ad90 g F .text 0000000c chMBPost | ||
1482 | -0803d0c0 g F .text 00000022 wpabuf_put | ||
1483 | -08028430 g F .text 000000bc do_connect | ||
1484 | -0803adc0 g F .text 00000004 tlsv1_client_global_init | ||
1485 | -08027100 g F .text 0000002a RTC_SetPrescaler | ||
1486 | -20002bc0 g O .bss 00000004 rate_table_len | ||
1487 | -080408d0 g F .text 0000009c wps_process_ap_settings | ||
1488 | -0802b430 g F .text 0000001e tcp_eff_send_mss | ||
1489 | -080415a0 g F .text 00000014 wps_process_rf_bands | ||
1490 | -08015e50 g F .text 00000004 libwismart_RegistryIsValueEmpty | ||
1491 | -080257d0 g F .text 0000016e wpa_write_rsn_ie | ||
1492 | -08041360 g F .text 00000046 wps_build_os_version | ||
1493 | -080105b0 g F .text 00000030 SendAuthRequest | ||
1494 | -08025ed0 g F .text 00000150 wpa_parse_kde_ies | ||
1495 | -08000380 g F .text 000000bc memmove | ||
1496 | -20001750 g O .bss 00000001 ifup | ||
1497 | -0800fab0 g F .text 000000cc wei_update_rate_table | ||
1498 | -08036ce0 g F .text 000000d8 mschapv2_derive_response | ||
1499 | -08037450 g F .text 00000002 wpas_notify_bss_added | ||
1500 | -08030280 g F .text 0000003a wpa_config_update_prio_list | ||
1501 | -0803ffc0 g F .text 00000032 wps_build_conn_type_flags | ||
1502 | -08027300 g F .text 0000000c SDIO_DMACmd | ||
1503 | -0800c080 g F .text 00000054 libwismart_DhcpResult | ||
1504 | -0802bb20 g F .text 00000062 tcp_send_empty_ack | ||
1505 | -0800dc40 g F .text 000000fc LwIP_Periodic_Handle | ||
1506 | -08031a10 g F .text 00000032 eap_peer_sm_deinit | ||
1507 | -20002bd8 g O .bss 0000000c connected_bss | ||
1508 | -08022a70 g F .text 00000034 eap_server_get_name | ||
1509 | -08031b80 g F .text 00000016 eap_get_config_password | ||
1510 | -080469c0 g F .text 00000004 crypto_public_key_import | ||
1511 | -0802cea0 g F .text 0000000c inet_chksum | ||
1512 | -080374a0 g F .text 00000002 wpas_notify_bss_mode_changed | ||
1513 | -080010b0 g F .text 0000004c strcat | ||
1514 | -2000d36c g O .bss 00000004 tcp_tw_pcbs | ||
1515 | -08031cc0 g F .text 0000000c eap_get_config_blob | ||
1516 | -08030420 g F .text 00000064 wpa_config_add_network | ||
1517 | -08026e60 g F .text 0000000a RCC_PLLCmd | ||
1518 | -0804c0f0 g F .text 00000200 pkcs5_decrypt | ||
1519 | -08000b68 g F .text 00000048 rand | ||
1520 | -08042d20 g F .text 00000032 x509_certificate_free | ||
1521 | -08026870 g F .text 00000014 FLASH_SetLatency | ||
1522 | -08013e00 g F .text 00000040 libwismart_TimerReset | ||
1523 | -0800515c g F .text 00000024 fflush | ||
1524 | -0800c620 g F .text 00000030 libwismart_WiFiDisconnectedInd | ||
1525 | -08021e30 g F .text 00000066 eap_user_get | ||
1526 | -080297a0 g F .text 00000060 dhcp_coarse_tmr | ||
1527 | -08024f80 g F .text 000005c4 wpa_receive | ||
1528 | -080374c0 g F .text 00000002 wpas_notify_bss_rsnie_changed | ||
1529 | -08026cd0 g F .text 0000000a PWR_PVDCmd | ||
1530 | -08001570 g F .text 000000aa strncmp | ||
1531 | -080412b0 g F .text 000000a6 wps_build_device_attrs | ||
1532 | -0803a8e0 g F .text 0000005e tls_connection_decrypt | ||
1533 | -2000d370 g O .bss 00000004 tcp_ticks | ||
1534 | -08017830 g F .text 00000020 wpa_eapol_handler | ||
1535 | -08016060 g F .text 0000005c HW_DebugTrace_SendBuff | ||
1536 | -0801ef50 g F .text 00000032 ap_sta_set_authorized | ||
1537 | -08026860 g F .text 0000000c EXTI_ClearITPendingBit | ||
1538 | -0803cfe0 g F .text 00000012 wpabuf_alloc | ||
1539 | -20002a14 g O .bss 00000080 rate_table | ||
1540 | -08017f80 g F .text 00000022 wpa_supplicant_cancel_auth_timeout | ||
1541 | -08019980 g F .text 000000a4 wps_is_addr_authorized | ||
1542 | -0803fef0 g F .text 00000044 wps_build_registrar_nonce | ||
1543 | -08032a40 g F .text 00000032 eapol_sm_notify_cached | ||
1544 | -0800b480 g F .text 00000040 int2string | ||
1545 | -08012470 g F .text 00000044 wifi_power_mgmt_cfm | ||
1546 | -08009fdc g F .text 00000010 __aeabi_cdcmpeq | ||
1547 | -0802eb10 g F .text 00000134 base64_encode | ||
1548 | -08014920 g F .text 000001a6 HW_WiFiTransport_Initialize | ||
1549 | -080321d0 g F .text 0000001c eapol_sm_notify_lower_layer_success | ||
1550 | -08040d00 g F .text 00000034 wps_pwd_auth_fail_event | ||
1551 | -08037100 g F .text 0000002c nt_challenge_response | ||
1552 | -08000c80 g F .text 00000050 __sigtramp_r | ||
1553 | -08016bd0 g F .text 00000004 wpa_driver_WE_p2p_prov_disc_req | ||
1554 | -08021930 g F .text 00000026 hostapd_set_tx_queue_params | ||
1555 | -08040c10 g F .text 00000090 wps_decrypt_encr_settings | ||
1556 | -0800e0f0 g F .text 0000004a mac_aton | ||
1557 | -080013e0 g F .text 000000ba strcpy | ||
1558 | -08026e90 g F .text 00000010 RCC_GetSYSCLKSource | ||
1559 | -08026c60 g F .text 00000036 GPIO_EXTILineConfig | ||
1560 | -0803a970 g F .text 00000004 tls_connection_get_failed | ||
1561 | -0800ea60 g F .text 00000190 DHCPServer_Init | ||
1562 | -08031ad0 g F .text 00000060 eap_get_phase2_types | ||
1563 | -08018780 g F .text 0000004a wpa_supplicant_deauthenticate | ||
1564 | -08046f30 g F .text 00000062 des_block_decrypt | ||
1565 | -0800bcb0 g F .text 00000050 put_message | ||
1566 | -08026940 g F .text 0000003e FLASH_WaitForLastOperation | ||
1567 | -08046ea0 g F .text 0000001e des_key_setup | ||
1568 | -0803c3a0 g F .text 00000030 tls_get_cipher_suite | ||
1569 | -0800afe0 g F .text 00000040 chHeapStatus | ||
1570 | -0803a950 g F .text 00000014 tls_get_cipher | ||
1571 | -08016bb0 g F .text 00000006 wpa_driver_WE_get_noa | ||
1572 | -08029ef0 g F .text 0000009c memp_init | ||
1573 | -080135c0 g F .text 000000e0 _wifi_set_mib_raw | ||
1574 | -0800a2d0 w F .text 00000010 Vector4C | ||
1575 | -08017be0 g F .text 00000036 os_realloc | ||
1576 | -08001690 g F .text 00000028 strrchr | ||
1577 | -080272b0 g F .text 0000000a SDIO_ClockCmd | ||
1578 | -0801ea40 g F .text 00000052 hostapd_setup_wpa_psk | ||
1579 | -0800a2d0 w F .text 00000010 VectorF8 | ||
1580 | -0800ee00 g F .text 00000060 WiFi_Client_Update_TIM | ||
1581 | -0800d210 g F .text 00000026 Transport_IRQHandler | ||
1582 | -0801ea10 g F .text 00000006 hostapd_mac_comp | ||
1583 | -0803fbd0 g F .text 00000034 wps_build_config_methods | ||
1584 | -0803a800 g F .text 0000007c tls_connection_handshake | ||
1585 | -0801b8b0 g F .text 0000004c wps_registrar_wps_cancel | ||
1586 | -080234a0 g F .text 00000004 hostapd_init_wps_complete | ||
1587 | -200025b0 g O .bss 0000003c netif_wifi | ||
1588 | -08034970 g F .text 00000074 eloop_timer | ||
1589 | -0802ab30 g F .text 00000350 tcp_slowtmr | ||
1590 | -08037370 g F .text 00000002 wpas_notify_network_changed | ||
1591 | -0803f260 g F .text 00000028 wpa_sm_parse_own_wpa_ie | ||
1592 | -0800a2d0 w F .text 00000010 VectorF4 | ||
1593 | -08049140 g F .text 00000020 eap_peer_tls_reauth_init | ||
1594 | -2000d38c g O .bss 00000004 udp_pcbs | ||
1595 | -0803d000 g F .text 0000007a wpabuf_resize | ||
1596 | -20002bc4 g O .bss 00000004 CmdCnt | ||
1597 | -0800a2d0 w F .text 00000010 VectorB8 | ||
1598 | -08041e30 g F .text 000007c8 wps_enrollee_process_msg | ||
1599 | -08014e10 g F .text 00000102 HW_WiFiTrasport_ProcessSDIRQ | ||
1600 | -080057b0 g F .text 000000ec __smakebuf_r | ||
1601 | -20001538 g O .bss 00000006 key_2 | ||
1602 | -080277f0 g F .text 0000001a DBGMCU_Config | ||
1603 | -0802bfb0 g F .text 00000054 tcp_rexmit_fast | ||
1604 | -08028e00 g F .text 000000dc dhcp_inform | ||
1605 | -0800ada0 g F .text 0000002e chMBPostI | ||
1606 | -20001530 g O .bss 00000006 key_1 | ||
1607 | -08009fcc g F .text 00000020 __aeabi_cdrcmple | ||
1608 | -0800a980 g F .text 00000028 chSemResetI | ||
1609 | -08031aa0 g F .text 0000002a eap_get_phase2_type | ||
1610 | -08016dc0 g F .text 000000a2 NataliaEngine_DeleteKey | ||
1611 | -080400a0 g F .text 000000a2 wps_build_encr_settings | ||
1612 | -08049320 g F .text 000000e8 eap_peer_select_phase2_methods | ||
1613 | -08005ac0 g F .text 00000012 _Bfree | ||
1614 | -08040de0 g F .text 0000005e uuid_gen_mac_addr | ||
1615 | -0801a5d0 g F .text 00000064 wps_authorized_macs | ||
1616 | -08040a40 g F .text 00000154 wps_derive_keys | ||
1617 | -0800fa30 g F .text 0000007c ScanConfigure | ||
1618 | -080278e0 g F .text 0000001a USART_Cmd | ||
1619 | -2000146c g O .bss 00000040 password | ||
1620 | -0800cfe0 g F .text 00000020 libwismart_UART_TXDMA_IRQHandler | ||
1621 | -0802e6e0 g F .text 00000052 libwismart_PBufQueue_Add | ||
1622 | -0800b130 g F .text 00000006 _malloc_r | ||
1623 | -08015df0 g F .text 0000002c libwismart_RegistrySet | ||
1624 | -08013130 g F .text 000000b0 wifi_scan_handle_ind | ||
1625 | -08022a10 g F .text 00000030 eap_server_get_type | ||
1626 | -200049c4 g O .bss 00000004 NVIC_InitStructure | ||
1627 | -20001754 g O .bss 00000004 rssi_cb | ||
1628 | -0803f920 g F .text 000000b0 wpa_supplicant_init_wpa | ||
1629 | -08025710 g F .text 0000001a wpa_auth_sta_clear_pmksa | ||
1630 | -0801d2e0 g F .text 0000001c wpas_ap_configured_cb | ||
1631 | -08031c20 g F .text 00000008 eap_key_available | ||
1632 | -0802aad0 g F .text 0000000a tcp_poll | ||
1633 | -080211f0 g F .text 0000018c eapol_auth_init | ||
1634 | -0802de50 g F .text 000000b4 etharp_request | ||
1635 | -2000d384 g O .bss 00000004 tcp_tmp_pcb | ||
1636 | -0800a710 g F .text 00000018 chSchRescheduleS | ||
1637 | -08008cd8 g F .text 00000010 fclose | ||
1638 | -08014d70 g F .text 00000096 SD_LowLevel_DMA_RxConfig | ||
1639 | -080124c0 g F .text 00000044 libwismart_PBufQueue_Send | ||
1640 | -0800a500 g F .text 0000003c chVTSetI | ||
1641 | -0802a010 g F .text 0000003c memp_free | ||
1642 | -0800b820 g F .text 0000002c wifi_connect_result_cb | ||
1643 | -08027130 g F .text 00000028 RTC_SetAlarm | ||
1644 | -0800cf40 g F .text 0000006c libwismart_UART_SendBuff | ||
1645 | -0803a660 g F .text 00000028 tls_init | ||
1646 | -08019ab0 g F .text 00000020 wps_is_20 | ||
1647 | -0804c990 g O .text 00000028 __mprec_bigtens | ||
1648 | -0800b0f0 g F .text 00000024 _realloc_r | ||
1649 | -0801d990 g F .text 00000002 ap_mgmt_tx_cb | ||
1650 | -0801dc10 g F .text 00000058 hostapd_new_assoc_sta | ||
1651 | -08031a90 g F .text 00000002 eap_sm_request_passphrase | ||
1652 | -08037500 g F .text 00000002 wpas_notify_sta_authorized | ||
1653 | -0803c350 g F .text 0000004a tlsv1_client_send_alert | ||
1654 | -0801cfa0 g F .text 0000006c wpas_wps_deinit | ||
1655 | -08016be0 g F .text 00000004 wpa_driver_WE_p2p_sd_request | ||
1656 | -0802b6b0 g F .text 00000328 tcp_write | ||
1657 | -20002a0c g O .bss 00000004 rate_bmask | ||
1658 | -0801ab10 g F .text 00000076 wps_build_credential_wrap | ||
1659 | -080129a0 g F .text 00000014 wifi_filter_allow_packet | ||
1660 | -08034ee0 g F .text 0000005a wpa_supplicant_connect | ||
1661 | -08005970 g F .text 00000028 __ascii_mbtowc | ||
1662 | -08026ca0 g F .text 0000001a PWR_DeInit | ||
1663 | -0801ae90 g F .text 000000c4 wps_registrar_selected_registrar_changed | ||
1664 | -0802e5a0 g F .text 0000000a sys_mbox_valid | ||
1665 | -2000d378 g O .bss 00000004 tcp_listen_pcbs | ||
1666 | -2000154c g O .bss 00000004 dhcp_result_cb | ||
1667 | -20002bc8 g O .bss 00000001 g_security | ||
1668 | -08046210 g F .text 000000de crypto_cipher_init | ||
1669 | -0802a160 g F .text 00000068 netif_add | ||
1670 | -08019860 g F .text 00000086 wps_deinit | ||
1671 | -0800c870 g F .text 00000058 libwismart_Scan_Enable_BG | ||
1672 | -080127c0 g F .text 0000002e wifi_cmds_flow_mgmt_release | ||
1673 | -0802c160 g F .text 00000240 udp_input | ||
1674 | -08045fe0 g F .text 0000009a asn1_parse_oid | ||
1675 | -080271f0 g F .text 00000024 RTC_GetITStatus | ||
1676 | -08038d50 g F .text 0000131e SHA1Transform | ||
1677 | -0802f060 g F .text 0000005c wpa_bss_flush_by_age | ||
1678 | -0802c950 g F .text 00000008 icmp_time_exceeded | ||
1679 | -080222e0 g F .text 0000000c eap_get_identity | ||
1680 | -080373c0 g F .text 00000002 wpas_notify_scanning | ||
1681 | -0802d4d0 g F .text 00000018 ipaddr_addr | ||
1682 | -0801f330 g F .text 0000017c ap_handle_timer | ||
1683 | -08025750 g F .text 0000000e wpa_auth_get_wpa_ie | ||
1684 | -0803dfc0 g F .text 00000180 wpa_supplicant_send_2_of_4 | ||
1685 | -080290c0 g F .text 0000003e dhcp_network_changed | ||
1686 | -08027b70 g F .text 000000c0 netconn_recv | ||
1687 | -0802cf10 g F .text 0000003c ip_route | ||
1688 | -08040d80 g F .text 0000005c wps_dev_type_bin2str | ||
1689 | -08016660 g F .text 00000068 wpa_config_find_and_add_pkey | ||
1690 | -08036b10 g F .text 0000006a md5_vector | ||
1691 | -08016140 g F .text 00000044 HW_Power_EnterMode | ||
1692 | -08011eb0 g F .text 00000258 wifi_request_resource_hic | ||
1693 | -0800606c g F .text 00000044 __ulp | ||
1694 | -08021980 g F .text 00000020 hostapd_drv_none | ||
1695 | -0801e830 g F .text 00000002 authsrv_deinit | ||
1696 | -08009a24 g F .text 0000001e __floatunsidf | ||
1697 | -200044a8 g O .bss 00000001 inLeaveState | ||
1698 | -0800576c g F .text 0000000c __locale_mb_cur_max | ||
1699 | -0802bf10 g F .text 00000034 tcp_rexmit_rto | ||
1700 | -08040040 g F .text 00000058 wps_build_key_wrap_auth | ||
1701 | -08037330 g F .text 00000002 wpas_notify_supplicant_deinitialized | ||
1702 | -08038200 g F .text 00000012 wpa_supplicant_notify_scanning | ||
1703 | -08022300 g F .text 00000014 eap_server_clear_identity | ||
1704 | -080158e0 g F .text 00000020 registryOpenFile | ||
1705 | -08009a68 g F .text 0000003a __aeabi_f2d | ||
1706 | -0802aa30 g F .text 00000012 tcp_segs_free | ||
1707 | -08019a90 g F .text 00000016 wps_get_uuid_e | ||
1708 | -08041190 g F .text 0000004c wps_build_secondary_dev_type | ||
1709 | -08015a50 g F .text 00000058 init_profile_registry_keys | ||
1710 | -08014ad0 g F .text 000001fc HW_WiFiTransport_Port | ||
1711 | -080256a0 g F .text 0000003c wpa_gtk_rekey | ||
1712 | -0801eaa0 g F .text 00000260 hostapd_config_free | ||
1713 | -08021850 g F .text 00000022 hostapd_get_seqnum | ||
1714 | -08037410 g F .text 00000002 wpas_notify_wps_event_fail | ||
1715 | -0802ef80 g F .text 0000000c wpa_bss_update_start | ||
1716 | -0801e010 g F .text 000001b6 hostapd_setup_interface | ||
1717 | -08017d90 g F .text 00000078 wpa_set_wep_keys | ||
1718 | -08012ae0 g F .text 0000001c wifi_arp_filter_set_ip | ||
1719 | -0800a440 g F .text 00000042 chSysInit | ||
1720 | -08012110 g F .text 00000030 wifi_PsDisable | ||
1721 | -08012b00 g F .text 0000001e wifi_arp_filter_forward_all | ||
1722 | -080160f0 g F .text 00000048 HW_DebugTrace_RXDMA_IRQHandler | ||
1723 | -0800c1c0 g F .text 00000098 CheckRoamThresholds | ||
1724 | -0803add0 g F .text 00000004 tlsv1_client_global_deinit | ||
1725 | -0804bf30 g F .text 00000012 bignum_mul | ||
1726 | -200025a8 g O .bss 00000004 IPaddress | ||
1727 | -08037290 g F .text 0000002c new_password_encrypted_with_old_nt_password_hash | ||
1728 | -08016b70 g F .text 00000004 wpa_driver_WE_wps_success_cb | ||
1729 | -2000d1e0 g O .bss 00000004 netif_default | ||
1730 | -08034760 g F .text 0000004c eap_peer_wsc_register | ||
1731 | -080166d0 g F .text 0000034c wpa_set_ssid_eap | ||
1732 | -08013890 g F .text 00000040 CheckRoamEvent | ||
1733 | -2000d37c g O .bss 00000004 tcp_active_pcbs | ||
1734 | -08043d80 g F .text 00000030 hostapd_event_sta_low_ack | ||
1735 | -2000155c g O .bss 00000024 WiFi_Statistics | ||
1736 | -08005300 g F .text 00000002 __sinit_lock_acquire | ||
1737 | -0800976c g F .text 0000001a __aeabi_uidivmod | ||
1738 | -0800a0a0 g F .text 00000040 __aeabi_d2uiz | ||
1739 | -08016540 g F .text 00000010 wpa_config_read | ||
1740 | -08040780 g F .text 0000005e wps_process_authenticator | ||
1741 | -08025680 g F .text 00000020 wpa_auth_sm_notify | ||
1742 | -080137d0 g F .text 00000028 checkId | ||
1743 | -08003ed0 g F .text 000000dc __swsetup_r | ||
1744 | -0803ae80 g F .text 0000000c tlsv1_client_established | ||
1745 | -08037e00 g F .text 000000cc pmksa_candidate_add | ||
1746 | -08016590 g F .text 000000c4 wpa_config_find_and_add_certificate | ||
1747 | -0801cd10 g F .text 00000022 wpas_wps_get_req_type | ||
1748 | -2000259c g O .bss 00000001 DHCP_state | ||
1749 | -080217b0 g F .text 0000001a hostapd_get_ssid | ||
1750 | -08015e60 g F .text 000001bc HW_DebugTrace_Init | ||
1751 | -080458b0 g F .text 0000043c rijndaelEncrypt | ||
1752 | -080019a0 g F .text 0000020e strstr | ||
1753 | -08010770 g F .text 0000006c libwismart_GetAssocReqIEs | ||
1754 | -0802b400 g F .text 00000024 tcp_tmr | ||
1755 | -0801c100 g F .text 000000f0 wps_registrar_add_pin | ||
1756 | -080285b0 g F .text 00000054 tcpip_callback_with_block | ||
1757 | -0801e820 g F .text 00000004 authsrv_init | ||
1758 | -08037420 g F .text 00000002 wpas_notify_wps_event_success | ||
1759 | -0803e300 g F .text 0000005e wpa_sm_notify_assoc | ||
1760 | -08027970 g F .text 0000001a USART_OverSampling8Cmd | ||
1761 | -08025740 g F .text 0000000e wpa_auth_sta_local_mic_failure_report | ||
1762 | -08027370 g F .text 0000002e SDIO_DataConfig | ||
1763 | -08046140 g F .text 00000092 asn1_bit_string_to_long | ||
1764 | -080373d0 g F .text 00000002 wpas_notify_scan_done | ||
1765 | -08049410 g F .text 0000006a eap_peer_tls_phase2_nak | ||
1766 | -0803d750 g F .text 0000002a wpa_compare_rsn_ie | ||
1767 | -08034890 g F .text 00000036 os_get_time_mono | ||
1768 | -080273a0 g F .text 0000000c SDIO_SetSDIOOperation | ||
1769 | -0800cee0 g F .text 0000005c libwismart_UART_Init | ||
1770 | -0803ab70 g F .text 00000150 tlsv1_client_handshake | ||
1771 | -08005ad4 g F .text 00000096 __multadd | ||
1772 | -080222d0 g F .text 00000008 eap_sm_notify_cached | ||
1773 | -08045390 g F .text 000000c8 rijndaelKeySetupDec | ||
1774 | -08010a00 g F .text 0000000c WiFi_SetMode | ||
1775 | -0803fcd0 g F .text 00000084 wps_build_authenticator | ||
1776 | -0800ad50 g F .text 00000038 chMBPostS | ||
1777 | -080469a0 g F .text 00000004 crypto_global_init | ||
1778 | -080270c0 g F .text 0000001c RTC_ITConfig | ||
1779 | -08015900 g F .text 0000001c registryValueIsEmpty | ||
1780 | -080246d0 g F .text 00000050 wpa_remove_ptk | ||
1781 | -0800ac40 g F .text 0000001a chEvtClearFlags | ||
1782 | -0801f7b0 g F .text 00000004 mlme_disassociate_indication | ||
1783 | -08001bb0 g F .text 00000140 _strtol_r | ||
1784 | -0800b0b0 g F .text 00000004 _close_r | ||
1785 | -0800ad20 g F .text 0000002c chMBReset | ||
1786 | -08037360 g F .text 00000002 wpas_notify_state_changed | ||
1787 | -08044810 g F .text 00000a68 tcp_input | ||
1788 | -20004944 g O .bss 0000003c registryFileMaxRegistryKeyAddressCount | ||
1789 | -08049480 g F .text 00000034 eap_wsc_build_frag_ack | ||
1790 | -08013bc0 g F .text 00000034 libwismart_LinkList_AddFirst | ||
1791 | -08037390 g F .text 00000002 wpas_notify_bssid_changed | ||
1792 | -08031d40 g F .text 00000038 eap_is_wps_pin_enrollee | ||
1793 | -08026cf0 g F .text 00000042 PWR_EnterSTOPMode | ||
1794 | -0803d160 g F .text 00000056 wpabuf_zeropad | ||
1795 | -0804beb0 g F .text 00000004 bignum_cmp | ||
1796 | -0803d2f0 g F .text 000000dc wpa_pmk_to_ptk | ||
1797 | -0802bf50 g F .text 00000054 tcp_rexmit | ||
1798 | -20001558 g O .bss 00000004 RXDataQueueMulticast | ||
1799 | -0802d300 g F .text 0000004c ip_output | ||
1800 | -0800b220 g F .text 0000000e Vector78 | ||
1801 | -2000d3b4 g O .bss 00000004 current_netif | ||
1802 | -0803e390 g F .text 00000014 wpa_sm_set_pmk | ||
1803 | -08037750 g F .text 000001a6 pmksa_cache_add | ||
1804 | -200029e8 g O .bss 00000022 ssid_to_connect | ||
1805 | -08042e20 g F .text 00000008 x509_name_string | 1479 | +0800ae10 g F .text 0000000c chMBPost |
1480 | +0803cf50 g F .text 00000022 wpabuf_put | ||
1481 | +080281e0 g F .text 000000bc do_connect | ||
1482 | +0803ac50 g F .text 00000004 tlsv1_client_global_init | ||
1483 | +08026eb0 g F .text 0000002a RTC_SetPrescaler | ||
1484 | +20002aa0 g O .bss 00000004 rate_table_len | ||
1485 | +08040760 g F .text 0000009c wps_process_ap_settings | ||
1486 | +0802b310 g F .text 0000001e tcp_eff_send_mss | ||
1487 | +08041430 g F .text 00000014 wps_process_rf_bands | ||
1488 | +08025580 g F .text 0000016e wpa_write_rsn_ie | ||
1489 | +080411f0 g F .text 00000046 wps_build_os_version | ||
1490 | +080104c0 g F .text 00000030 SendAuthRequest | ||
1491 | +08025c80 g F .text 00000150 wpa_parse_kde_ies | ||
1492 | +08000400 g F .text 000000bc memmove | ||
1493 | +20001630 g O .bss 00000001 ifup | ||
1494 | +0800f9c0 g F .text 000000cc wei_update_rate_table | ||
1495 | +08036b70 g F .text 000000d8 mschapv2_derive_response | ||
1496 | +080372e0 g F .text 00000002 wpas_notify_bss_added | ||
1497 | +08030110 g F .text 0000003a wpa_config_update_prio_list | ||
1498 | +0803fe50 g F .text 00000032 wps_build_conn_type_flags | ||
1499 | +080270b0 g F .text 0000000c SDIO_DMACmd | ||
1500 | +0800bf80 g F .text 00000054 libwismart_DhcpResult | ||
1501 | +0802ba00 g F .text 00000062 tcp_send_empty_ack | ||
1502 | +0800db50 g F .text 000000fc LwIP_Periodic_Handle | ||
1503 | +080318a0 g F .text 00000032 eap_peer_sm_deinit | ||
1504 | +20002ab8 g O .bss 0000000c connected_bss | ||
1505 | +08022820 g F .text 00000034 eap_server_get_name | ||
1506 | +08031a10 g F .text 00000016 eap_get_config_password | ||
1507 | +08046850 g F .text 00000004 crypto_public_key_import | ||
1508 | +0802ce40 g F .text 0000000c inet_chksum | ||
1509 | +08037330 g F .text 00000002 wpas_notify_bss_mode_changed | ||
1510 | +08001130 g F .text 0000004c strcat | ||
1511 | +2000d258 g O .bss 00000004 tcp_tw_pcbs | ||
1512 | +08031b50 g F .text 0000000c eap_get_config_blob | ||
1513 | +080302b0 g F .text 00000064 wpa_config_add_network | ||
1514 | +08026c10 g F .text 0000000a RCC_PLLCmd | ||
1515 | +0804bf80 g F .text 00000200 pkcs5_decrypt | ||
1516 | +08000be8 g F .text 00000048 rand | ||
1517 | +08042bb0 g F .text 00000032 x509_certificate_free | ||
1518 | +08026620 g F .text 00000014 FLASH_SetLatency | ||
1519 | +08013d10 g F .text 00000040 libwismart_TimerReset | ||
1520 | +080051dc g F .text 00000024 fflush | ||
1521 | +0800c520 g F .text 00000030 libwismart_WiFiDisconnectedInd | ||
1522 | +08021be0 g F .text 00000066 eap_user_get | ||
1523 | +08029680 g F .text 00000060 dhcp_coarse_tmr | ||
1524 | +08024d30 g F .text 000005c4 wpa_receive | ||
1525 | +08037350 g F .text 00000002 wpas_notify_bss_rsnie_changed | ||
1526 | +08026a80 g F .text 0000000a PWR_PVDCmd | ||
1527 | +080015f0 g F .text 000000aa strncmp | ||
1528 | +08041140 g F .text 000000a6 wps_build_device_attrs | ||
1529 | +0803a770 g F .text 0000005e tls_connection_decrypt | ||
1530 | +2000d25c g O .bss 00000004 tcp_ticks | ||
1531 | +080175e0 g F .text 00000020 wpa_eapol_handler | ||
1532 | +08015e10 g F .text 0000005c HW_DebugTrace_SendBuff | ||
1533 | +0801ed00 g F .text 00000032 ap_sta_set_authorized | ||
1534 | +08026610 g F .text 0000000c EXTI_ClearITPendingBit | ||
1535 | +0803ce70 g F .text 00000012 wpabuf_alloc | ||
1536 | +200028f4 g O .bss 00000080 rate_table | ||
1537 | +08017d30 g F .text 00000022 wpa_supplicant_cancel_auth_timeout | ||
1538 | +08019730 g F .text 000000a4 wps_is_addr_authorized | ||
1539 | +0803fd80 g F .text 00000044 wps_build_registrar_nonce | ||
1540 | +080328d0 g F .text 00000032 eapol_sm_notify_cached | ||
1541 | +0800b2f0 g F .text 00000040 int2string | ||
1542 | +08012380 g F .text 00000044 wifi_power_mgmt_cfm | ||
1543 | +0800a05c g F .text 00000010 __aeabi_cdcmpeq | ||
1544 | +0802e9a0 g F .text 00000134 base64_encode | ||
1545 | +08014830 g F .text 000001a6 HW_WiFiTransport_Initialize | ||
1546 | +08032060 g F .text 0000001c eapol_sm_notify_lower_layer_success | ||
1547 | +08040b90 g F .text 00000034 wps_pwd_auth_fail_event | ||
1548 | +08036f90 g F .text 0000002c nt_challenge_response | ||
1549 | +08000d00 g F .text 00000050 __sigtramp_r | ||
1550 | +08016980 g F .text 00000004 wpa_driver_WE_p2p_prov_disc_req | ||
1551 | +080216e0 g F .text 00000026 hostapd_set_tx_queue_params | ||
1552 | +08040aa0 g F .text 00000090 wps_decrypt_encr_settings | ||
1553 | +0800e000 g F .text 0000004a mac_aton | ||
1554 | +08001460 g F .text 000000ba strcpy | ||
1555 | +08026c40 g F .text 00000010 RCC_GetSYSCLKSource | ||
1556 | +08026a10 g F .text 00000036 GPIO_EXTILineConfig | ||
1557 | +0803a800 g F .text 00000004 tls_connection_get_failed | ||
1558 | +0800e970 g F .text 00000190 DHCPServer_Init | ||
1559 | +08031960 g F .text 00000060 eap_get_phase2_types | ||
1560 | +08018530 g F .text 0000004a wpa_supplicant_deauthenticate | ||
1561 | +08046dc0 g F .text 00000062 des_block_decrypt | ||
1562 | +0800bb90 g F .text 00000062 put_message | ||
1563 | +080266f0 g F .text 0000003e FLASH_WaitForLastOperation | ||
1564 | +08046d30 g F .text 0000001e des_key_setup | ||
1565 | +0803c230 g F .text 00000030 tls_get_cipher_suite | ||
1566 | +0800b060 g F .text 00000040 chHeapStatus | ||
1567 | +0803a7e0 g F .text 00000014 tls_get_cipher | ||
1568 | +08016960 g F .text 00000006 wpa_driver_WE_get_noa | ||
1569 | +08029dd0 g F .text 0000009c memp_init | ||
1570 | +080134d0 g F .text 000000e0 _wifi_set_mib_raw | ||
1571 | +0800a350 w F .text 00000010 Vector4C | ||
1572 | +08017990 g F .text 00000036 os_realloc | ||
1573 | +08001710 g F .text 00000028 strrchr | ||
1574 | +08027060 g F .text 0000000a SDIO_ClockCmd | ||
1575 | +0801e7f0 g F .text 00000052 hostapd_setup_wpa_psk | ||
1576 | +0800a350 w F .text 00000010 VectorF8 | ||
1577 | +0800ed10 g F .text 00000060 WiFi_Client_Update_TIM | ||
1578 | +0800d110 g F .text 00000026 Transport_IRQHandler | ||
1579 | +0801e7c0 g F .text 00000006 hostapd_mac_comp | ||
1580 | +0803fa60 g F .text 00000034 wps_build_config_methods | ||
1581 | +0803a690 g F .text 0000007c tls_connection_handshake | ||
1582 | +0801b660 g F .text 0000004c wps_registrar_wps_cancel | ||
1583 | +08023250 g F .text 00000004 hostapd_init_wps_complete | ||
1584 | +20002490 g O .bss 0000003c netif_wifi | ||
1585 | +08034800 g F .text 00000074 eloop_timer | ||
1586 | +0802aa10 g F .text 00000350 tcp_slowtmr | ||
1587 | +08037200 g F .text 00000002 wpas_notify_network_changed | ||
1588 | +0803f0f0 g F .text 00000028 wpa_sm_parse_own_wpa_ie | ||
1589 | +0800a350 w F .text 00000010 VectorF4 | ||
1590 | +08048fd0 g F .text 00000020 eap_peer_tls_reauth_init | ||
1591 | +2000d278 g O .bss 00000004 udp_pcbs | ||
1592 | +0803ce90 g F .text 0000007a wpabuf_resize | ||
1593 | +20002aa4 g O .bss 00000004 CmdCnt | ||
1594 | +0800a350 w F .text 00000010 VectorB8 | ||
1595 | +08041cc0 g F .text 000007c8 wps_enrollee_process_msg | ||
1596 | +08014d20 g F .text 00000102 HW_WiFiTrasport_ProcessSDIRQ | ||
1597 | +08005830 g F .text 000000ec __smakebuf_r | ||
1598 | +080275a0 g F .text 0000001a DBGMCU_Config | ||
1599 | +0802be90 g F .text 00000054 tcp_rexmit_fast | ||
1600 | +08028ce0 g F .text 000000dc dhcp_inform | ||
1601 | +0800ae20 g F .text 0000002e chMBPostI | ||
1602 | +0800a04c g F .text 00000020 __aeabi_cdrcmple | ||
1603 | +0800aa00 g F .text 00000028 chSemResetI | ||
1604 | +08031930 g F .text 0000002a eap_get_phase2_type | ||
1605 | +08016b70 g F .text 000000a2 NataliaEngine_DeleteKey | ||
1606 | +0803ff30 g F .text 000000a2 wps_build_encr_settings | ||
1607 | +080491b0 g F .text 000000e8 eap_peer_select_phase2_methods | ||
1608 | +08005b40 g F .text 00000012 _Bfree | ||
1609 | +08040c70 g F .text 0000005e uuid_gen_mac_addr | ||
1610 | +0801a380 g F .text 00000064 wps_authorized_macs | ||
1611 | +080408d0 g F .text 00000154 wps_derive_keys | ||
1612 | +0800f940 g F .text 0000007c ScanConfigure | ||
1613 | +08027690 g F .text 0000001a USART_Cmd | ||
1614 | +0800cee0 g F .text 00000020 libwismart_UART_TXDMA_IRQHandler | ||
1615 | +0802e6b0 g F .text 00000052 libwismart_PBufQueue_Add | ||
1616 | +0800b1b0 g F .text 00000006 _malloc_r | ||
1617 | +08013040 g F .text 000000b0 wifi_scan_handle_ind | ||
1618 | +080227c0 g F .text 00000030 eap_server_get_type | ||
1619 | +200048a4 g O .bss 00000004 NVIC_InitStructure | ||
1620 | +20001634 g O .bss 00000004 rssi_cb | ||
1621 | +0803f7b0 g F .text 000000b0 wpa_supplicant_init_wpa | ||
1622 | +080254c0 g F .text 0000001a wpa_auth_sta_clear_pmksa | ||
1623 | +0801d090 g F .text 0000001c wpas_ap_configured_cb | ||
1624 | +08031ab0 g F .text 00000008 eap_key_available | ||
1625 | +0802a9b0 g F .text 0000000a tcp_poll | ||
1626 | +08020fa0 g F .text 0000018c eapol_auth_init | ||
1627 | +0802ddf0 g F .text 000000b4 etharp_request | ||
1628 | +2000d270 g O .bss 00000004 tcp_tmp_pcb | ||
1629 | +0800a790 g F .text 00000018 chSchRescheduleS | ||
1630 | +08008d58 g F .text 00000010 fclose | ||
1631 | +08014c80 g F .text 00000096 SD_LowLevel_DMA_RxConfig | ||
1632 | +080123d0 g F .text 00000044 libwismart_PBufQueue_Send | ||
1633 | +0800a580 g F .text 0000003c chVTSetI | ||
1634 | +08029ef0 g F .text 0000003c memp_free | ||
1635 | +0800b6b0 g F .text 0000002c wifi_connect_result_cb | ||
1636 | +08026ee0 g F .text 00000028 RTC_SetAlarm | ||
1637 | +0800ce40 g F .text 0000006c libwismart_UART_SendBuff | ||
1638 | +0803a4f0 g F .text 00000028 tls_init | ||
1639 | +08019860 g F .text 00000020 wps_is_20 | ||
1640 | +0804c820 g O .text 00000028 __mprec_bigtens | ||
1641 | +0800b170 g F .text 00000024 _realloc_r | ||
1642 | +0801d740 g F .text 00000002 ap_mgmt_tx_cb | ||
1643 | +0801d9c0 g F .text 00000058 hostapd_new_assoc_sta | ||
1644 | +08031920 g F .text 00000002 eap_sm_request_passphrase | ||
1645 | +08037390 g F .text 00000002 wpas_notify_sta_authorized | ||
1646 | +0803c1e0 g F .text 0000004a tlsv1_client_send_alert | ||
1647 | +0801cd50 g F .text 0000006c wpas_wps_deinit | ||
1648 | +08016990 g F .text 00000004 wpa_driver_WE_p2p_sd_request | ||
1649 | +0802b590 g F .text 00000328 tcp_write | ||
1650 | +200028ec g O .bss 00000004 rate_bmask | ||
1651 | +0801a8c0 g F .text 00000076 wps_build_credential_wrap | ||
1652 | +080128b0 g F .text 00000014 wifi_filter_allow_packet | ||
1653 | +08034d70 g F .text 0000005a wpa_supplicant_connect | ||
1654 | +080059f0 g F .text 00000028 __ascii_mbtowc | ||
1655 | +08026a50 g F .text 0000001a PWR_DeInit | ||
1656 | +0801ac40 g F .text 000000c4 wps_registrar_selected_registrar_changed | ||
1657 | +0802e540 g F .text 0000000a sys_mbox_valid | ||
1658 | +2000d264 g O .bss 00000004 tcp_listen_pcbs | ||
1659 | +2000142c g O .bss 00000004 dhcp_result_cb | ||
1660 | +20002aa8 g O .bss 00000001 g_security | ||
1661 | +080460a0 g F .text 000000de crypto_cipher_init | ||
1662 | +0802a040 g F .text 00000068 netif_add | ||
1663 | +08019610 g F .text 00000086 wps_deinit | ||
1664 | +0800c770 g F .text 00000058 libwismart_Scan_Enable_BG | ||
1665 | +080126d0 g F .text 0000002e wifi_cmds_flow_mgmt_release | ||
1666 | +0802c040 g F .text 00000240 udp_input | ||
1667 | +08045e70 g F .text 0000009a asn1_parse_oid | ||
1668 | +08026fa0 g F .text 00000024 RTC_GetITStatus | ||
1669 | +08038be0 g F .text 0000131e SHA1Transform | ||
1670 | +0802eef0 g F .text 0000005c wpa_bss_flush_by_age | ||
1671 | +0802c8f0 g F .text 00000008 icmp_time_exceeded | ||
1672 | +08022090 g F .text 0000000c eap_get_identity | ||
1673 | +08037250 g F .text 00000002 wpas_notify_scanning | ||
1674 | +0802d470 g F .text 00000018 ipaddr_addr | ||
1675 | +0801f0e0 g F .text 0000017c ap_handle_timer | ||
1676 | +08025500 g F .text 0000000e wpa_auth_get_wpa_ie | ||
1677 | +0803de50 g F .text 00000180 wpa_supplicant_send_2_of_4 | ||
1678 | +08028fa0 g F .text 0000003e dhcp_network_changed | ||
1679 | +08027920 g F .text 000000c0 netconn_recv | ||
1680 | +0802ceb0 g F .text 0000003c ip_route | ||
1681 | +08040c10 g F .text 0000005c wps_dev_type_bin2str | ||
1682 | +08016410 g F .text 00000068 wpa_config_find_and_add_pkey | ||
1683 | +080369a0 g F .text 0000006a md5_vector | ||
1684 | +08015ef0 g F .text 00000044 HW_Power_EnterMode | ||
1685 | +08011dc0 g F .text 00000258 wifi_request_resource_hic | ||
1686 | +080060ec g F .text 00000044 __ulp | ||
1687 | +08021730 g F .text 00000020 hostapd_drv_none | ||
1688 | +0801e5e0 g F .text 00000002 authsrv_deinit | ||
1689 | +08009aa4 g F .text 0000001e __floatunsidf | ||
1690 | +20004388 g O .bss 00000001 inLeaveState | ||
1691 | +080057ec g F .text 0000000c __locale_mb_cur_max | ||
1692 | +0802bdf0 g F .text 00000034 tcp_rexmit_rto | ||
1693 | +0803fed0 g F .text 00000058 wps_build_key_wrap_auth | ||
1694 | +080371c0 g F .text 00000002 wpas_notify_supplicant_deinitialized | ||
1695 | +08038090 g F .text 00000012 wpa_supplicant_notify_scanning | ||
1696 | +080220b0 g F .text 00000014 eap_server_clear_identity | ||
1697 | +080157f0 g F .text 00000020 registryOpenFile | ||
1698 | +08009ae8 g F .text 0000003a __aeabi_f2d | ||
1699 | +0802a910 g F .text 00000012 tcp_segs_free | ||
1700 | +08019840 g F .text 00000016 wps_get_uuid_e | ||
1701 | +08041020 g F .text 0000004c wps_build_secondary_dev_type | ||
1702 | +080158d0 g F .text 00000058 init_profile_registry_keys | ||
1703 | +080149e0 g F .text 000001fc HW_WiFiTransport_Port | ||
1704 | +08025450 g F .text 0000003c wpa_gtk_rekey | ||
1705 | +0801e850 g F .text 00000260 hostapd_config_free | ||
1706 | +08021600 g F .text 00000022 hostapd_get_seqnum | ||
1707 | +080372a0 g F .text 00000002 wpas_notify_wps_event_fail | ||
1708 | +0802ee10 g F .text 0000000c wpa_bss_update_start | ||
1709 | +0801ddc0 g F .text 000001b6 hostapd_setup_interface | ||
1710 | +08017b40 g F .text 00000078 wpa_set_wep_keys | ||
1711 | +080129f0 g F .text 0000001c wifi_arp_filter_set_ip | ||
1712 | +0800a4c0 g F .text 00000042 chSysInit | ||
1713 | +08012020 g F .text 00000030 wifi_PsDisable | ||
1714 | +08012a10 g F .text 0000001e wifi_arp_filter_forward_all | ||
1715 | +08015ea0 g F .text 00000048 HW_DebugTrace_RXDMA_IRQHandler | ||
1716 | +0800c0c0 g F .text 00000098 CheckRoamThresholds | ||
1717 | +0803ac60 g F .text 00000004 tlsv1_client_global_deinit | ||
1718 | +0804bdc0 g F .text 00000012 bignum_mul | ||
1719 | +20002488 g O .bss 00000004 IPaddress | ||
1720 | +08037120 g F .text 0000002c new_password_encrypted_with_old_nt_password_hash | ||
1721 | +08016920 g F .text 00000004 wpa_driver_WE_wps_success_cb | ||
1722 | +2000d0cc g O .bss 00000004 netif_default | ||
1723 | +080345f0 g F .text 0000004c eap_peer_wsc_register | ||
1724 | +08016480 g F .text 0000034c wpa_set_ssid_eap | ||
1725 | +080137a0 g F .text 00000040 CheckRoamEvent | ||
1726 | +2000d268 g O .bss 00000004 tcp_active_pcbs | ||
1727 | +08043c10 g F .text 00000030 hostapd_event_sta_low_ack | ||
1728 | +2000143c g O .bss 00000024 WiFi_Statistics | ||
1729 | +08005380 g F .text 00000002 __sinit_lock_acquire | ||
1730 | +080097ec g F .text 0000001a __aeabi_uidivmod | ||
1731 | +0800a120 g F .text 00000040 __aeabi_d2uiz | ||
1732 | +080162f0 g F .text 00000010 wpa_config_read | ||
1733 | +08040610 g F .text 0000005e wps_process_authenticator | ||
1734 | +08025430 g F .text 00000020 wpa_auth_sm_notify | ||
1735 | +080136e0 g F .text 00000028 checkId | ||
1736 | +08003f50 g F .text 000000dc __swsetup_r | ||
1737 | +0803ad10 g F .text 0000000c tlsv1_client_established | ||
1738 | +08037c90 g F .text 000000cc pmksa_candidate_add | ||
1739 | +08016340 g F .text 000000c4 wpa_config_find_and_add_certificate | ||
1740 | +0801cac0 g F .text 00000022 wpas_wps_get_req_type | ||
1741 | +2000247c g O .bss 00000001 DHCP_state | ||
1742 | +08021560 g F .text 0000001a hostapd_get_ssid | ||
1743 | +08015c10 g F .text 000001bc HW_DebugTrace_Init | ||
1744 | +08045740 g F .text 0000043c rijndaelEncrypt | ||
1745 | +08001a20 g F .text 0000020e strstr | ||
1746 | +08010680 g F .text 0000006c libwismart_GetAssocReqIEs | ||
1747 | +0802b2e0 g F .text 00000024 tcp_tmr | ||
1748 | +0801beb0 g F .text 000000f0 wps_registrar_add_pin | ||
1749 | +08028440 g F .text 00000054 tcpip_callback_with_block | ||
1750 | +0801e5d0 g F .text 00000004 authsrv_init | ||
1751 | +080372b0 g F .text 00000002 wpas_notify_wps_event_success | ||
1752 | +0803e190 g F .text 0000005e wpa_sm_notify_assoc | ||
1753 | +08027720 g F .text 0000001a USART_OverSampling8Cmd | ||
1754 | +080254f0 g F .text 0000000e wpa_auth_sta_local_mic_failure_report | ||
1755 | +08027120 g F .text 0000002e SDIO_DataConfig | ||
1756 | +08045fd0 g F .text 00000092 asn1_bit_string_to_long | ||
1757 | +08037260 g F .text 00000002 wpas_notify_scan_done | ||
1758 | +080492a0 g F .text 0000006a eap_peer_tls_phase2_nak | ||
1759 | +0803d5e0 g F .text 0000002a wpa_compare_rsn_ie | ||
1760 | +08034720 g F .text 00000036 os_get_time_mono | ||
1761 | +08027150 g F .text 0000000c SDIO_SetSDIOOperation | ||
1762 | +0800cde0 g F .text 0000005c libwismart_UART_Init | ||
1763 | +0803aa00 g F .text 00000150 tlsv1_client_handshake | ||
1764 | +08005b54 g F .text 00000096 __multadd | ||
1765 | +08022080 g F .text 00000008 eap_sm_notify_cached | ||
1766 | +08045220 g F .text 000000c8 rijndaelKeySetupDec | ||
1767 | +08010910 g F .text 0000000c WiFi_SetMode | ||
1768 | +0803fb60 g F .text 00000084 wps_build_authenticator | ||
1769 | +0800add0 g F .text 00000038 chMBPostS | ||
1770 | +08046830 g F .text 00000004 crypto_global_init | ||
1771 | +08026e70 g F .text 0000001c RTC_ITConfig | ||
1772 | +08024480 g F .text 00000050 wpa_remove_ptk | ||
1773 | +0800acc0 g F .text 0000001a chEvtClearFlags | ||
1774 | +0801f560 g F .text 00000004 mlme_disassociate_indication | ||
1775 | +08001c30 g F .text 00000140 _strtol_r | ||
1776 | +0800b130 g F .text 00000004 _close_r | ||
1777 | +0800ada0 g F .text 0000002c chMBReset | ||
1778 | +080371f0 g F .text 00000002 wpas_notify_state_changed | ||
1779 | +080446a0 g F .text 00000a68 tcp_input | ||
1780 | +20004824 g O .bss 0000003c registryFileMaxRegistryKeyAddressCount | ||
1781 | +08049310 g F .text 00000034 eap_wsc_build_frag_ack | ||
1782 | +08013ad0 g F .text 00000034 libwismart_LinkList_AddFirst | ||
1783 | +08037220 g F .text 00000002 wpas_notify_bssid_changed | ||
1784 | +08031bd0 g F .text 00000038 eap_is_wps_pin_enrollee | ||
1785 | +08026aa0 g F .text 00000042 PWR_EnterSTOPMode | ||
1786 | +0803cff0 g F .text 00000056 wpabuf_zeropad | ||
1787 | +0804bd40 g F .text 00000004 bignum_cmp | ||
1788 | +0803d180 g F .text 000000dc wpa_pmk_to_ptk | ||
1789 | +0802be30 g F .text 00000054 tcp_rexmit | ||
1790 | +20001438 g O .bss 00000004 RXDataQueueMulticast | ||
1791 | +0802d2a0 g F .text 0000004c ip_output | ||
1792 | +0800b2a0 g F .text 0000000e Vector78 | ||
1793 | +2000d2a0 g O .bss 00000004 current_netif | ||
1794 | +0803e220 g F .text 00000014 wpa_sm_set_pmk | ||
1795 | +080375e0 g F .text 000001a6 pmksa_cache_add | ||
1796 | +200028c8 g O .bss 00000022 ssid_to_connect | ||
1797 | +08042cb0 g F .text 00000008 x509_name_string | ||
1806 | 08000000 g O startup 00000130 _vectors | 1798 | 08000000 g O startup 00000130 _vectors |
1807 | -080372e0 g F .text 00000038 old_nt_password_hash_encrypted_with_new_nt_password_hash | ||
1808 | -0800807c g F .text 00000076 _sfread_r | ||
1809 | -08009fec g F .text 00000012 __aeabi_dcmpeq | ||
1810 | -0800a2d0 w F .text 00000010 VectorC0 | ||
1811 | -08020070 g F .text 000000f0 ieee802_1x_new_station | ||
1812 | -0800a840 g F .text 0000000e chThdTerminate | ||
1813 | -08005b6c g F .text 0000009a __s2b | ||
1814 | -08009350 g F .text 000001bc __hexnan | ||
1815 | -200025f0 g O .bss 00000004 DHCP_Server_Connection | ||
1816 | -200044e0 g O .bss 0000000c PBufQueue_Send_sem | ||
1817 | -08023dc0 g F .text 0000004c wpa_deinit | ||
1818 | -08027180 g F .text 00000024 RTC_WaitForSynchro | ||
1819 | -0803a730 g F .text 0000000e tls_connection_shutdown | ||
1820 | -20001544 g O .bss 00000004 RXCmdQueue | ||
1821 | -2000d498 g O .bss 00000002 DataVar_ | ||
1822 | -0803d0a0 g F .text 00000018 wpabuf_free | ||
1823 | -0802c6b0 g F .text 00000050 sys_timeout | ||
1824 | -0800a2d0 w F .text 00000010 Vector54 | ||
1825 | -08010840 g F .text 0000008c SendDataPacket | ||
1826 | -08016e70 g F .text 000000be NataliaEngine_setKey | ||
1827 | -0800ae10 g F .text 0000000c chMBFetch | ||
1828 | -0802e540 g F .text 0000000a sys_mbox_post | ||
1829 | -0803a070 g F .text 0000003e SHA1Init | ||
1830 | -08016b40 g F .text 00000004 wpa_driver_WE_p2p_stop_find | ||
1831 | -0804c880 g O .text 00000004 _global_impure_ptr | ||
1832 | -08001100 g F .text 000000fe strchr | ||
1833 | -0800dde0 g F .text 00000048 LwIP_GetStaticIP | ||
1834 | -08019ad0 g F .text 00000070 wps_build_assoc_req_ie | ||
1835 | -080349f0 g F .text 000000a4 eloop_register_timeout | ||
1836 | -0800c650 g F .text 00000024 libwismart_IsConnected | ||
1837 | -08013b50 g F .text 00000050 print | ||
1838 | -0800ac60 g F .text 0000002e chEvtSignalFlagsI | ||
1839 | -0800af50 g F .text 00000086 chHeapFree | ||
1840 | -0800a2d0 w F .text 00000010 Vector50 | ||
1841 | -08046450 g F .text 0000016a crypto_cipher_decrypt | ||
1842 | -20001778 g O .bss 00000004 roam_currds | ||
1843 | -2000178c g O .bss 00000020 scan_timer | ||
1844 | -08035670 g F .text 000007fc wpa_supplicant_event | ||
1845 | -0803e230 g F .text 00000010 wpa_sm_aborted_cached | ||
1846 | -08027020 g F .text 0000001a RCC_APB2PeriphClockCmd | ||
1847 | -2000270c g O .bss 00000018 sSettings | ||
1848 | -20001775 g O .bss 00000001 wpa_has_be_init | ||
1849 | -08016c90 g F .text 00000014 wpa_driver_WE_get_bssid | ||
1850 | -2000d638 g .bss 00000000 _bss_end | ||
1851 | -08000268 g F .text 00000008 _atoi_r | ||
1852 | -0800b140 g F .text 00000006 _free_r | ||
1853 | -0802c580 g F .text 00000048 udp_sendto | ||
1854 | -0800a2d0 w F .text 00000010 Vector74 | ||
1855 | -0802ce10 g F .text 0000008e inet_chksum_pseudo | ||
1856 | -0800aac0 g F .text 000000c4 chMtxLockS | ||
1857 | -20001548 g O .bss 00000004 roam_lastds | ||
1858 | -08017e10 g F .text 00000040 wpa_supplicant_req_auth_timeout | ||
1859 | -0802e460 g F .text 00000002 sys_init | ||
1860 | -08028660 g F .text 0000000a lwip_ntohs | ||
1861 | -2000174c g O .bss 00000004 roam_currsnr | ||
1862 | -0804bd50 g F .text 00000004 bignum_get_unsigned_bin_len | ||
1863 | -08013c00 g F .text 00000030 libwismart_LinkList_RemoveFirst | ||
1864 | -0802a5f0 g F .text 0000001a pbuf_ref | ||
1865 | -0800bd00 g F .text 00000018 libwismart_GetDefaultHWIF | ||
1866 | -0802f170 g F .text 0000001e wpa_bss_deinit | ||
1867 | -08021380 g F .text 0000003c eapol_auth_deinit | ||
1868 | -080369d0 g F .text 000000b4 NRX_MD5Update | ||
1869 | -0802a910 g F .text 00000002 stats_init | ||
1870 | -2000d388 g O .bss 00000004 tcp_bound_pcbs | ||
1871 | -08012a60 g F .text 00000028 wifi_multicast_list_remove | ||
1872 | -08043a20 g F .text 00000004 hostapd_eid_roaming_consortium | ||
1873 | -08036170 g F .text 0000000e l2_packet_get_own_addr | ||
1874 | -0800a2d0 w F .text 00000010 Vector70 | ||
1875 | -0803f290 g F .text 0000000e wpa_sm_update_replay_ctr | ||
1876 | -0800b4c0 g F .text 000002fc httpRequest | ||
1877 | -080373a0 g F .text 00000002 wpas_notify_auth_changed | ||
1878 | -0803f1c0 g F .text 0000004e wpa_sm_set_ap_wpa_ie | ||
1879 | -08032150 g F .text 0000003e eapol_sm_get_key | ||
1880 | -08037970 g F .text 00000066 pmksa_cache_set_current | ||
1881 | -08012140 g F .text 00000170 wifi_release_resource_hic | ||
1882 | -200018fd g O .bss 00000001 allow_stop_mode | ||
1883 | -200029a8 g O .bss 00000002 softap_TIM_updated | ||
1884 | -08021a40 g F .text 0000010c ieee802_11_set_beacon | ||
1885 | -080277c0 g F .text 00000018 TIM_GetITStatus | ||
1886 | -08017a50 g F .text 000000f8 os_mktime | ||
1887 | -0802aa90 g F .text 00000006 tcp_recv | ||
1888 | -08016a30 g F .text 00000004 wpa_driver_WE_hapd_set_ssid | ||
1889 | -08043750 g F .text 00000126 x509_certificate_chain_validate | ||
1890 | -0800b210 g F .text 0000000e Vector58 | ||
1891 | -08025ab0 g F .text 00000058 wpa_add_kde | ||
1892 | -0804c968 g O .text 00000028 __mprec_tinytens | ||
1893 | -0802ed40 g F .text 00000022 wpa_blacklist_get | ||
1894 | -20002bbc g O .bss 00000001 Adapter_Status | ||
1895 | -08014140 g F .text 000000d4 HW_GPIOS_Init | ||
1896 | -08037460 g F .text 00000002 wpas_notify_bss_removed | ||
1897 | -0800a5c0 g F .text 0000001a _scheduler_init | ||
1898 | -0801ef10 g F .text 00000028 ap_get_sta | ||
1899 | -0800cd90 g F .text 0000004a libwismart_PowerSave_HigherProfile | ||
1900 | -08028680 g F .text 00000004 lwip_ntohl | ||
1901 | -08040200 g F .text 0000051c wps_parse_msg | ||
1902 | -0802e3f0 g F .text 00000070 ethernetif_init | ||
1903 | -080223c0 g F .text 00000622 eap_server_sm_step | ||
1904 | -08016b90 g F .text 00000004 wpa_driver_WE_p2p_set_params | ||
1905 | -08018360 g F .text 00000056 key_mgmt2driver | ||
1906 | -08009790 w F .text 00000002 __aeabi_ldiv0 | ||
1907 | -0801f090 g F .text 00000260 ap_free_sta | ||
1908 | -08026ee0 g F .text 00000016 RCC_PCLK2Config | ||
1909 | -0800ed70 g F .text 00000084 softAP_handle_authenticateInd | ||
1910 | -0800a670 g F .text 0000005c chSchWakeupS | ||
1911 | -0800a320 g F .text 00000032 _port_init | ||
1912 | -080438b0 g F .text 0000001a x509_certificate_self_signed | ||
1913 | -08036f60 g F .text 00000048 challenge_response | ||
1914 | -08030af0 g F .text 0000001c eap_peer_method_alloc | ||
1915 | -08017bd0 g F .text 00000008 _nrx_os_free | ||
1916 | -08015830 g F .text 00000030 registryInit | ||
1917 | -08037020 g F .text 00000094 generate_authenticator_response_pwhash | ||
1918 | -08037f70 g F .text 000000b6 rc4_skip | ||
1919 | -08012e50 g F .text 00000110 wifi_scan_handle_scan_complete_ind | ||
1920 | -08026df0 g F .text 00000038 RCC_HSEConfig | ||
1921 | -0804c720 g O .text 00000101 _ctype_ | ||
1922 | -08004fd0 g F .text 0000015e __sflush_r | ||
1923 | -08013820 g F .text 00000034 wifi_roam_init | ||
1924 | -08031c80 g F .text 00000014 eap_get_eapKeyData | ||
1925 | -0800a2d0 w F .text 00000010 DebugMonitorVector | ||
1926 | -080196f0 g F .text 00000014 wpas_driver_bss_selection | ||
1927 | -08047a30 g F .text 0000005c eap_peer_mschapv2_register | ||
1928 | -0800b1e0 g F .text 00000010 UsageFaultVector | ||
1929 | -08031b40 g F .text 00000006 eap_set_workaround | 1799 | +08037170 g F .text 00000038 old_nt_password_hash_encrypted_with_new_nt_password_hash |
1800 | +080080fc g F .text 00000076 _sfread_r | ||
1801 | +0800a06c g F .text 00000012 __aeabi_dcmpeq | ||
1802 | +0800a350 w F .text 00000010 VectorC0 | ||
1803 | +0801fe20 g F .text 000000f0 ieee802_1x_new_station | ||
1804 | +0800a8c0 g F .text 0000000e chThdTerminate | ||
1805 | +08005bec g F .text 0000009a __s2b | ||
1806 | +080093d0 g F .text 000001bc __hexnan | ||
1807 | +200024d0 g O .bss 00000004 DHCP_Server_Connection | ||
1808 | +200043c0 g O .bss 0000000c PBufQueue_Send_sem | ||
1809 | +08023b70 g F .text 0000004c wpa_deinit | ||
1810 | +08026f30 g F .text 00000024 RTC_WaitForSynchro | ||
1811 | +0803a5c0 g F .text 0000000e tls_connection_shutdown | ||
1812 | +20001424 g O .bss 00000004 RXCmdQueue | ||
1813 | +0803cf30 g F .text 00000018 wpabuf_free | ||
1814 | +0802c590 g F .text 00000050 sys_timeout | ||
1815 | +0800a350 w F .text 00000010 Vector54 | ||
1816 | +08010750 g F .text 0000008c SendDataPacket | ||
1817 | +08016c20 g F .text 000000be NataliaEngine_setKey | ||
1818 | +0800ae90 g F .text 0000000c chMBFetch | ||
1819 | +0802e4e0 g F .text 0000000a sys_mbox_post | ||
1820 | +08039f00 g F .text 0000003e SHA1Init | ||
1821 | +080168f0 g F .text 00000004 wpa_driver_WE_p2p_stop_find | ||
1822 | +0804c710 g O .text 00000004 _global_impure_ptr | ||
1823 | +08001180 g F .text 000000fe strchr | ||
1824 | +0800dcf0 g F .text 00000048 LwIP_GetStaticIP | ||
1825 | +08019880 g F .text 00000070 wps_build_assoc_req_ie | ||
1826 | +08034880 g F .text 000000a4 eloop_register_timeout | ||
1827 | +0800c550 g F .text 00000024 libwismart_IsConnected | ||
1828 | +08013a60 g F .text 00000050 print | ||
1829 | +0800ace0 g F .text 0000002e chEvtSignalFlagsI | ||
1830 | +0800afd0 g F .text 00000086 chHeapFree | ||
1831 | +0800a350 w F .text 00000010 Vector50 | ||
1832 | +080462e0 g F .text 0000016a crypto_cipher_decrypt | ||
1833 | +20001658 g O .bss 00000004 roam_currds | ||
1834 | +2000166c g O .bss 00000020 scan_timer | ||
1835 | +08035500 g F .text 000007fc wpa_supplicant_event | ||
1836 | +0803e0c0 g F .text 00000010 wpa_sm_aborted_cached | ||
1837 | +08026dd0 g F .text 0000001a RCC_APB2PeriphClockCmd | ||
1838 | +200025ec g O .bss 00000018 sSettings | ||
1839 | +20001655 g O .bss 00000001 wpa_has_be_init | ||
1840 | +08016a40 g F .text 00000014 wpa_driver_WE_get_bssid | ||
1841 | +2000d520 g .bss 00000000 _bss_end | ||
1842 | +080002e8 g F .text 00000008 _atoi_r | ||
1843 | +0800b1c0 g F .text 00000006 _free_r | ||
1844 | +0802c460 g F .text 00000048 udp_sendto | ||
1845 | +0800a350 w F .text 00000010 Vector74 | ||
1846 | +0802cdb0 g F .text 0000008e inet_chksum_pseudo | ||
1847 | +0800ab40 g F .text 000000c4 chMtxLockS | ||
1848 | +20001428 g O .bss 00000004 roam_lastds | ||
1849 | +08017bc0 g F .text 00000040 wpa_supplicant_req_auth_timeout | ||
1850 | +0802e400 g F .text 00000002 sys_init | ||
1851 | +08028540 g F .text 0000000a lwip_ntohs | ||
1852 | +2000162c g O .bss 00000004 roam_currsnr | ||
1853 | +0804bbe0 g F .text 00000004 bignum_get_unsigned_bin_len | ||
1854 | +08013b10 g F .text 00000030 libwismart_LinkList_RemoveFirst | ||
1855 | +0802a4d0 g F .text 0000001a pbuf_ref | ||
1856 | +0800bc00 g F .text 00000018 libwismart_GetDefaultHWIF | ||
1857 | +0802f000 g F .text 0000001e wpa_bss_deinit | ||
1858 | +08021130 g F .text 0000003c eapol_auth_deinit | ||
1859 | +08036860 g F .text 000000b4 NRX_MD5Update | ||
1860 | +0802a7f0 g F .text 00000002 stats_init | ||
1861 | +2000d274 g O .bss 00000004 tcp_bound_pcbs | ||
1862 | +08012970 g F .text 00000028 wifi_multicast_list_remove | ||
1863 | +080438b0 g F .text 00000004 hostapd_eid_roaming_consortium | ||
1864 | +08036000 g F .text 0000000e l2_packet_get_own_addr | ||
1865 | +0800a350 w F .text 00000010 Vector70 | ||
1866 | +0803f120 g F .text 0000000e wpa_sm_update_replay_ctr | ||
1867 | +0800b330 g F .text 00000314 httpRequest | ||
1868 | +08037230 g F .text 00000002 wpas_notify_auth_changed | ||
1869 | +0803f050 g F .text 0000004e wpa_sm_set_ap_wpa_ie | ||
1870 | +08031fe0 g F .text 0000003e eapol_sm_get_key | ||
1871 | +08037800 g F .text 00000066 pmksa_cache_set_current | ||
1872 | +08012050 g F .text 00000170 wifi_release_resource_hic | ||
1873 | +200017dd g O .bss 00000001 allow_stop_mode | ||
1874 | +20002888 g O .bss 00000002 softap_TIM_updated | ||
1875 | +080217f0 g F .text 0000010c ieee802_11_set_beacon | ||
1876 | +08027570 g F .text 00000018 TIM_GetITStatus | ||
1877 | +08017800 g F .text 000000f8 os_mktime | ||
1878 | +0802a970 g F .text 00000006 tcp_recv | ||
1879 | +080167e0 g F .text 00000004 wpa_driver_WE_hapd_set_ssid | ||
1880 | +080435e0 g F .text 00000126 x509_certificate_chain_validate | ||
1881 | +0800b290 g F .text 0000000e Vector58 | ||
1882 | +08025860 g F .text 00000058 wpa_add_kde | ||
1883 | +0804c7f8 g O .text 00000028 __mprec_tinytens | ||
1884 | +0802ebd0 g F .text 00000022 wpa_blacklist_get | ||
1885 | +20002a9c g O .bss 00000001 Adapter_Status | ||
1886 | +08014050 g F .text 000000d4 HW_GPIOS_Init | ||
1887 | +080372f0 g F .text 00000002 wpas_notify_bss_removed | ||
1888 | +0800a640 g F .text 0000001a _scheduler_init | ||
1889 | +0801ecc0 g F .text 00000028 ap_get_sta | ||
1890 | +0800cc90 g F .text 0000004a libwismart_PowerSave_HigherProfile | ||
1891 | +08028560 g F .text 00000004 lwip_ntohl | ||
1892 | +08040090 g F .text 0000051c wps_parse_msg | ||
1893 | +0802e390 g F .text 00000070 ethernetif_init | ||
1894 | +08022170 g F .text 00000622 eap_server_sm_step | ||
1895 | +08016940 g F .text 00000004 wpa_driver_WE_p2p_set_params | ||
1896 | +08018110 g F .text 00000056 key_mgmt2driver | ||
1897 | +08009810 w F .text 00000002 __aeabi_ldiv0 | ||
1898 | +0801ee40 g F .text 00000260 ap_free_sta | ||
1899 | +08026c90 g F .text 00000016 RCC_PCLK2Config | ||
1900 | +0800ec80 g F .text 00000084 softAP_handle_authenticateInd | ||
1901 | +0800a6f0 g F .text 0000005c chSchWakeupS | ||
1902 | +0800a3a0 g F .text 00000032 _port_init | ||
1903 | +08043740 g F .text 0000001a x509_certificate_self_signed | ||
1904 | +08036df0 g F .text 00000048 challenge_response | ||
1905 | +08030980 g F .text 0000001c eap_peer_method_alloc | ||
1906 | +08017980 g F .text 00000008 _nrx_os_free | ||
1907 | +08015740 g F .text 00000030 registryInit | ||
1908 | +08036eb0 g F .text 00000094 generate_authenticator_response_pwhash | ||
1909 | +08037e00 g F .text 000000b6 rc4_skip | ||
1910 | +08012d60 g F .text 00000110 wifi_scan_handle_scan_complete_ind | ||
1911 | +08026ba0 g F .text 00000038 RCC_HSEConfig | ||
1912 | +0804c5b0 g O .text 00000101 _ctype_ | ||
1913 | +08005050 g F .text 0000015e __sflush_r | ||
1914 | +08013730 g F .text 00000034 wifi_roam_init | ||
1915 | +08031b10 g F .text 00000014 eap_get_eapKeyData | ||
1916 | +0800a350 w F .text 00000010 DebugMonitorVector | ||
1917 | +080194a0 g F .text 00000014 wpas_driver_bss_selection | ||
1918 | +080478c0 g F .text 0000005c eap_peer_mschapv2_register | ||
1919 | +0800b260 g F .text 00000010 UsageFaultVector | ||
1920 | +080319d0 g F .text 00000006 eap_set_workaround | ||
1930 | 200013d8 g O .bss 00000020 rlist | 1921 | 200013d8 g O .bss 00000020 rlist |
1931 | -0803d6f0 g F .text 00000052 rsn_pmkid | ||
1932 | -080264c0 g F .text 0000007c NVIC_Init | ||
1933 | -0800b070 g F .text 0000000c chPoolFree | ||
1934 | -08021910 g F .text 00000018 hostapd_set_country | ||
1935 | -080052fc g F .text 00000002 __sfp_lock_release | ||
1936 | -080097a0 g F .text 00000000 __aeabi_drsub | ||
1937 | -0802d130 g F .text 00000194 ip_output_if_opt | ||
1938 | -0803b070 g F .text 00000042 tlsv1_client_get_keys | ||
1939 | -08049be0 g F .text 000000c6 pkcs1_encrypt | ||
1940 | -080307a0 g F .text 00000014 dh_groups_get | ||
1941 | -08034b50 g F .text 00000028 eloop_destroy | ||
1942 | -0800aa50 g F .text 0000000c chSemWaitTimeout | 1922 | +0803d580 g F .text 00000052 rsn_pmkid |
1923 | +08026270 g F .text 0000007c NVIC_Init | ||
1924 | +0800b0f0 g F .text 0000000c chPoolFree | ||
1925 | +080216c0 g F .text 00000018 hostapd_set_country | ||
1926 | +0800537c g F .text 00000002 __sfp_lock_release | ||
1927 | +08009820 g F .text 00000000 __aeabi_drsub | ||
1928 | +0802d0d0 g F .text 00000194 ip_output_if_opt | ||
1929 | +0803af00 g F .text 00000042 tlsv1_client_get_keys | ||
1930 | +08049a70 g F .text 000000c6 pkcs1_encrypt | ||
1931 | +08030630 g F .text 00000014 dh_groups_get | ||
1932 | +080349e0 g F .text 00000028 eloop_destroy | ||
1933 | +0800aad0 g F .text 0000000c chSemWaitTimeout | ||
1943 | 200011ae g O .data 00000002 trace_mask | 1934 | 200011ae g O .data 00000002 trace_mask |
1944 | -0800c120 g F .text 00000010 libwismart_GetCurrentIP | ||
1945 | -0803c400 g F .text 00000048 tls_server_key_exchange_allowed | ||
1946 | -08012f60 g F .text 00000042 wifi_scan_is_exist_better | ||
1947 | -0804ca60 g O .text 00000016 ch_debug | ||
1948 | -0801d980 g F .text 00000002 ap_mgmt_rx | ||
1949 | -0803efd0 g F .text 00000014 wpa_sm_set_scard_ctx | ||
1950 | -0803cf20 g F .text 000000a0 uuid_bin2str | ||
1951 | -08027040 g F .text 0000001a RCC_APB1PeriphClockCmd | ||
1952 | -08013b40 g F .text 0000000e print_init | ||
1953 | -08016ba0 g F .text 00000004 wpa_driver_WE_sta_set_flags | ||
1954 | -0802ddb0 g F .text 00000098 etharp_update_arp_entry | ||
1955 | -08046dd0 g F .text 000000c4 NRX_des_encrypt | ||
1956 | -0800a8e0 g F .text 00000044 chThdRelease | ||
1957 | -0802caf0 g F .text 00000034 igmp_start | ||
1958 | -080305b0 g F .text 0000001e wpa_config_free_blob | ||
1959 | -08005224 g F .text 0000004c __sinit | ||
1960 | -080361f0 g F .text 00000002 l2_packet_notify_auth_start | ||
1961 | -0802a050 g F .text 00000002 memp_status | ||
1962 | -0803a460 g F .text 000000f0 pbkdf2_sha1 | ||
1963 | -08036f00 g F .text 00000036 nt_password_hash | ||
1964 | -0802aef0 g F .text 00000098 tcp_abandon | ||
1965 | -0804c8a0 g O .text 000000c8 __mprec_tens | ||
1966 | -0803b500 g F .text 000004f4 tlsv1_client_process_handshake | ||
1967 | -20001764 g O .bss 00000004 roaming_enabled | ||
1968 | -08032100 g F .text 00000042 eapol_sm_notify_config | ||
1969 | -200025a0 g O .bss 00000004 TCPTimer | ||
1970 | -08014800 g F .text 00000118 HW_WiFiTransport_Interrupt | ||
1971 | -08017c40 g F .text 0000003a os_strlcpy | ||
1972 | -08065970 g O .text 00000004 ip_addr_broadcast | ||
1973 | -08035e70 g F .text 00000216 ieee802_11_parse_elems | ||
1974 | -08031bf0 g F .text 00000010 eap_get_config_phase1 | ||
1975 | -08011c60 g F .text 00000078 WiFi_RXCmdQueue_Add | ||
1976 | -0800a8a0 g F .text 00000006 chThdExit | ||
1977 | -0800bba0 g F .text 00000028 check_memory | ||
1978 | -0800c980 g F .text 000000a0 libwismart_SoftAP_Started_Ind | ||
1979 | -08028540 g F .text 0000003e do_write | ||
1980 | -08032ce0 g F .text 0000004c eapol_sm_deinit | ||
1981 | -0802a360 g F .text 00000078 pbuf_header | ||
1982 | -0800a2d0 w F .text 00000010 Vector128 | ||
1983 | -0803acc0 g F .text 00000038 tlsv1_client_encrypt | ||
1984 | -0800a050 g F .text 0000004e __aeabi_d2iz | ||
1985 | -080271b0 g F .text 00000014 RTC_GetFlagStatus | ||
1986 | -080256e0 g F .text 0000000a wpa_auth_countermeasures_start | ||
1987 | -0803f880 g F .text 0000009c wpa_supplicant_init_eapol | ||
1988 | -08009790 w F .text 00000002 __aeabi_idiv0 | ||
1989 | -0800a630 g F .text 00000040 chSchGoSleepTimeoutS | ||
1990 | -080218d0 g F .text 0000001a hostapd_set_rts | ||
1991 | -0802afa0 g F .text 00000144 tcp_alloc | ||
1992 | -20001900 g O .bss 00000006 res_counters | ||
1993 | -08030b20 g F .text 00000054 eap_peer_method_register | ||
1994 | -0802c810 g F .text 0000012c icmp_input | ||
1995 | -080373b0 g F .text 00000002 wpas_notify_network_enabled_changed | ||
1996 | -08026910 g F .text 0000002a FLASH_GetBank2Status | ||
1997 | -08017b60 g F .text 00000002 os_daemonize_terminate | ||
1998 | -0800a2d0 w F .text 00000010 Vector12C | ||
1999 | -08046080 g F .text 0000003a asn1_get_oid | ||
2000 | -08026560 g F .text 00000156 DMA_DeInit | ||
2001 | -0802b9e0 g F .text 000000e4 tcp_enqueue_flags | ||
2002 | -0800f610 g F .text 0000003c WiFi_SoftAP_MBPost | ||
2003 | -08000d50 g F .text 00000064 _snprintf_r | ||
2004 | -0802a200 g F .text 00000040 netif_set_up | ||
2005 | -08015dc0 g F .text 0000002c libwismart_RegistryOpen | ||
2006 | -08028610 g F .text 00000038 tcpip_apimsg | ||
2007 | -08034070 g F .text 0000007c eap_peer_ttls_register | ||
2008 | -08001620 g F .text 00000064 strncpy | ||
2009 | -080271d0 g F .text 00000014 RTC_ClearFlag | ||
2010 | -08042e30 g F .text 000006cc x509_certificate_parse | ||
2011 | -0800aea0 g F .text 00000020 _heap_init | ||
2012 | -0800f0d0 g F .text 00000104 WiFi_SoftAP_HandlePacket | ||
2013 | -0800fb80 g F .text 0000000e rate_configure | ||
2014 | -080277a0 g F .text 00000014 TIM_ITConfig | ||
2015 | -0802c680 g F .text 0000001c udp_new | ||
2016 | -080347b0 g F .text 00000016 eloop_init | ||
2017 | -200018fc g O .bss 00000001 enable_higher_profiler | ||
2018 | -20002bb0 g O .bss 00000004 alignment_req_bsema | ||
2019 | -080348d0 g F .text 00000098 eloop_reschedule | ||
2020 | -0802a2c0 g F .text 00000016 netif_set_link_down | ||
2021 | -08012c80 g F .text 00000138 wifi_scan_request | ||
2022 | -0800a2d0 w F .text 00000010 Vector1C | ||
2023 | -2000d638 g .bss 00000000 __heap_base__ | ||
2024 | -0800aa00 g F .text 0000000c chSemWait | ||
2025 | -0803efc0 g F .text 00000008 wpa_sm_set_fast_reauth | ||
2026 | -08030490 g F .text 0000003c wpa_config_remove_network | ||
2027 | -08009f50 g F .text 0000007a __cmpdf2 | ||
2028 | -08027990 g F .text 0000000c USART_GetFlagStatus | ||
2029 | -0800a2d0 w F .text 00000010 Vector5C | ||
2030 | -0800d1d0 g F .text 0000001e Transport_TargetSleep | 1935 | +0800c020 g F .text 00000010 libwismart_GetCurrentIP |
1936 | +0803c290 g F .text 00000048 tls_server_key_exchange_allowed | ||
1937 | +08012e70 g F .text 00000042 wifi_scan_is_exist_better | ||
1938 | +0804c8f0 g O .text 00000016 ch_debug | ||
1939 | +0801d730 g F .text 00000002 ap_mgmt_rx | ||
1940 | +0803ee60 g F .text 00000014 wpa_sm_set_scard_ctx | ||
1941 | +0803cdb0 g F .text 000000a0 uuid_bin2str | ||
1942 | +08026df0 g F .text 0000001a RCC_APB1PeriphClockCmd | ||
1943 | +08013a50 g F .text 0000000e print_init | ||
1944 | +08016950 g F .text 00000004 wpa_driver_WE_sta_set_flags | ||
1945 | +0802dd50 g F .text 00000098 etharp_update_arp_entry | ||
1946 | +08046c60 g F .text 000000c4 NRX_des_encrypt | ||
1947 | +0800a960 g F .text 00000044 chThdRelease | ||
1948 | +0802ca90 g F .text 00000034 igmp_start | ||
1949 | +08030440 g F .text 0000001e wpa_config_free_blob | ||
1950 | +080052a4 g F .text 0000004c __sinit | ||
1951 | +08036080 g F .text 00000002 l2_packet_notify_auth_start | ||
1952 | +08029f30 g F .text 00000002 memp_status | ||
1953 | +0803a2f0 g F .text 000000f0 pbkdf2_sha1 | ||
1954 | +08036d90 g F .text 00000036 nt_password_hash | ||
1955 | +0802add0 g F .text 00000098 tcp_abandon | ||
1956 | +0804c730 g O .text 000000c8 __mprec_tens | ||
1957 | +0803b390 g F .text 000004f4 tlsv1_client_process_handshake | ||
1958 | +20001644 g O .bss 00000004 roaming_enabled | ||
1959 | +08031f90 g F .text 00000042 eapol_sm_notify_config | ||
1960 | +20002480 g O .bss 00000004 TCPTimer | ||
1961 | +08014710 g F .text 00000118 HW_WiFiTransport_Interrupt | ||
1962 | +080179f0 g F .text 0000003a os_strlcpy | ||
1963 | +08065930 g O .text 00000004 ip_addr_broadcast | ||
1964 | +08035d00 g F .text 00000216 ieee802_11_parse_elems | ||
1965 | +08031a80 g F .text 00000010 eap_get_config_phase1 | ||
1966 | +08011b70 g F .text 00000078 WiFi_RXCmdQueue_Add | ||
1967 | +0800a920 g F .text 00000006 chThdExit | ||
1968 | +0800ba30 g F .text 00000016 check_memory | ||
1969 | +0800c880 g F .text 000000a0 libwismart_SoftAP_Started_Ind | ||
1970 | +080282f0 g F .text 0000003e do_write | ||
1971 | +08032b70 g F .text 0000004c eapol_sm_deinit | ||
1972 | +0802a240 g F .text 00000078 pbuf_header | ||
1973 | +0800a350 w F .text 00000010 Vector128 | ||
1974 | +0803ab50 g F .text 00000038 tlsv1_client_encrypt | ||
1975 | +0800a0d0 g F .text 0000004e __aeabi_d2iz | ||
1976 | +08026f60 g F .text 00000014 RTC_GetFlagStatus | ||
1977 | +08025490 g F .text 0000000a wpa_auth_countermeasures_start | ||
1978 | +0803f710 g F .text 0000009c wpa_supplicant_init_eapol | ||
1979 | +08009810 w F .text 00000002 __aeabi_idiv0 | ||
1980 | +0800a6b0 g F .text 00000040 chSchGoSleepTimeoutS | ||
1981 | +08021680 g F .text 0000001a hostapd_set_rts | ||
1982 | +0802ae80 g F .text 00000144 tcp_alloc | ||
1983 | +200017e0 g O .bss 00000006 res_counters | ||
1984 | +080309b0 g F .text 00000054 eap_peer_method_register | ||
1985 | +0802c7b0 g F .text 0000012c icmp_input | ||
1986 | +08037240 g F .text 00000002 wpas_notify_network_enabled_changed | ||
1987 | +080266c0 g F .text 0000002a FLASH_GetBank2Status | ||
1988 | +08017910 g F .text 00000002 os_daemonize_terminate | ||
1989 | +0800a350 w F .text 00000010 Vector12C | ||
1990 | +08045f10 g F .text 0000003a asn1_get_oid | ||
1991 | +08026310 g F .text 00000156 DMA_DeInit | ||
1992 | +0802b8c0 g F .text 000000e4 tcp_enqueue_flags | ||
1993 | +0800f520 g F .text 0000003c WiFi_SoftAP_MBPost | ||
1994 | +08000dd0 g F .text 00000064 _snprintf_r | ||
1995 | +0802a0e0 g F .text 00000040 netif_set_up | ||
1996 | +080284a0 g F .text 00000038 tcpip_apimsg | ||
1997 | +08033f00 g F .text 0000007c eap_peer_ttls_register | ||
1998 | +080016a0 g F .text 00000064 strncpy | ||
1999 | +08026f80 g F .text 00000014 RTC_ClearFlag | ||
2000 | +08042cc0 g F .text 000006cc x509_certificate_parse | ||
2001 | +0800af20 g F .text 00000020 _heap_init | ||
2002 | +0800efe0 g F .text 00000104 WiFi_SoftAP_HandlePacket | ||
2003 | +0800fa90 g F .text 0000000e rate_configure | ||
2004 | +08027550 g F .text 00000014 TIM_ITConfig | ||
2005 | +0802c560 g F .text 0000001c udp_new | ||
2006 | +08034640 g F .text 00000016 eloop_init | ||
2007 | +200017dc g O .bss 00000001 enable_higher_profiler | ||
2008 | +20002a90 g O .bss 00000004 alignment_req_bsema | ||
2009 | +08034760 g F .text 00000098 eloop_reschedule | ||
2010 | +0802a1a0 g F .text 00000016 netif_set_link_down | ||
2011 | +08012b90 g F .text 00000138 wifi_scan_request | ||
2012 | +0800a350 w F .text 00000010 Vector1C | ||
2013 | +2000d520 g .bss 00000000 __heap_base__ | ||
2014 | +0800aa80 g F .text 0000000c chSemWait | ||
2015 | +0803ee50 g F .text 00000008 wpa_sm_set_fast_reauth | ||
2016 | +08030320 g F .text 0000003c wpa_config_remove_network | ||
2017 | +08009fd0 g F .text 0000007a __cmpdf2 | ||
2018 | +08027740 g F .text 0000000c USART_GetFlagStatus | ||
2019 | +0800a350 w F .text 00000010 Vector5C | ||
2020 | +0800d0d0 g F .text 0000001e Transport_TargetSleep | ||
2031 | 20000c00 g .stacks 00000000 __main_thread_stack_end__ | 2021 | 20000c00 g .stacks 00000000 __main_thread_stack_end__ |
2032 | -08046810 g F .text 00000026 crypto_hash_update | ||
2033 | -0800a2d0 w F .text 00000010 VectorC8 | ||
2034 | -08005760 g F .text 0000000a __locale_charset | ||
2035 | -0802e520 g F .text 0000001a sys_mbox_free | ||
2036 | -08012fb0 g F .text 00000174 isAcceptableBSS | ||
2037 | -08038b50 g F .text 000000ac wpa_scan_get_vendor_ie_multi | ||
2038 | -08012710 g F .text 000000a4 wifi_cmds_flow_data_request | ||
2039 | -0802e470 g F .text 00000022 sys_sem_new | ||
2040 | -0802bb90 g F .text 000002cc tcp_output | ||
2041 | -08043500 g F .text 00000242 x509_certificate_check_signature | ||
2042 | -08030a60 g F .text 00000018 eap_get_type | ||
2043 | -0800c800 g F .text 00000044 libwismart_StopPeriodicScan | ||
2044 | -080381b0 g F .text 00000010 wpa_supplicant_cancel_scan | ||
2045 | -08007fc0 g F .text 00000080 _sungetc_r | ||
2046 | -08030a20 g F .text 0000001e eap_update_len | ||
2047 | -080178c0 g F .text 000000e4 nr_softap_start | ||
2048 | -20001908 g O .bss 00000001 enable_power_save | ||
2049 | -200025ac g O .bss 00000004 DNSTimer | ||
2050 | -0800f470 g F .text 0000002c WiFi_SoftAP_MBInit | ||
2051 | -0800a2d0 w F .text 00000010 VectorC4 | ||
2052 | -0800b230 g F .text 0000000e Vector7C | ||
2053 | -08018f10 g F .text 00000088 wpa_supplicant_deinit | ||
2054 | -08030990 g F .text 00000082 eap_msg_alloc | ||
2055 | -080159a0 g F .text 00000012 registrySetAddressContents | ||
2056 | -0801d240 g F .text 00000020 wpas_wps_in_progress | ||
2057 | -0800bb10 g F .text 00000090 prepare_json_observation_statement | ||
2058 | -0802a980 g F .text 00000002 tcp_init | ||
2059 | -200025a4 g O .bss 00000004 IGMPTimer | ||
2060 | -0800acb0 g F .text 00000010 chEvtBroadcastFlags | ||
2061 | -08049d70 g F .text 0000011e pkcs8_key_import | ||
2062 | -08040970 g F .text 000000c4 wps_kdf | 2022 | +080466a0 g F .text 00000026 crypto_hash_update |
2023 | +0800a350 w F .text 00000010 VectorC8 | ||
2024 | +080057e0 g F .text 0000000a __locale_charset | ||
2025 | +0802e4c0 g F .text 0000001a sys_mbox_free | ||
2026 | +08012ec0 g F .text 00000174 isAcceptableBSS | ||
2027 | +080389e0 g F .text 000000ac wpa_scan_get_vendor_ie_multi | ||
2028 | +08012620 g F .text 000000a4 wifi_cmds_flow_data_request | ||
2029 | +0802e410 g F .text 00000022 sys_sem_new | ||
2030 | +0802ba70 g F .text 000002cc tcp_output | ||
2031 | +08043390 g F .text 00000242 x509_certificate_check_signature | ||
2032 | +080308f0 g F .text 00000018 eap_get_type | ||
2033 | +0800c700 g F .text 00000044 libwismart_StopPeriodicScan | ||
2034 | +08038040 g F .text 00000010 wpa_supplicant_cancel_scan | ||
2035 | +08008040 g F .text 00000080 _sungetc_r | ||
2036 | +080308b0 g F .text 0000001e eap_update_len | ||
2037 | +08017670 g F .text 000000e4 nr_softap_start | ||
2038 | +200017e8 g O .bss 00000001 enable_power_save | ||
2039 | +2000248c g O .bss 00000004 DNSTimer | ||
2040 | +0800f380 g F .text 0000002c WiFi_SoftAP_MBInit | ||
2041 | +0800a350 w F .text 00000010 VectorC4 | ||
2042 | +0800b2b0 g F .text 0000000e Vector7C | ||
2043 | +08018cc0 g F .text 00000088 wpa_supplicant_deinit | ||
2044 | +08030820 g F .text 00000082 eap_msg_alloc | ||
2045 | +0801cff0 g F .text 00000020 wpas_wps_in_progress | ||
2046 | +0800b9a0 g F .text 00000090 prepare_json_observation_statement | ||
2047 | +0802a860 g F .text 00000002 tcp_init | ||
2048 | +20002484 g O .bss 00000004 IGMPTimer | ||
2049 | +0800ad30 g F .text 00000010 chEvtBroadcastFlags | ||
2050 | +08049c00 g F .text 0000011e pkcs8_key_import | ||
2051 | +08040800 g F .text 000000c4 wps_kdf | ||
2063 | 20000c00 g .stacks 00000000 __process_stack_end__ | 2052 | 20000c00 g .stacks 00000000 __process_stack_end__ |
2064 | -08036b80 g F .text 000000fe hmac_md5_vector | ||
2065 | -20002bb4 g O .bss 00000001 Joining_HT_AP | ||
2066 | -0802edf0 g F .text 0000001e wpa_blacklist_clear | ||
2067 | -08015860 g F .text 0000007c registryCreateKey | ||
2068 | -08016280 g F .text 0000002c hexstr2bin | ||
2069 | -080298c0 g F .text 000000a0 dhcp_fine_tmr | ||
2070 | -08028580 g F .text 00000022 netbuf_delete | ||
2071 | -08049e90 g F .text 0000008e pkcs8_enc_key_import | ||
2072 | -080198f0 g F .text 0000000c wps_process_msg | ||
2073 | -0800db20 g F .text 0000006c LwIP_Init | ||
2074 | -08019080 g F .text 00000100 wpas_connection_failed | ||
2075 | -0800aa60 g F .text 00000026 chSemSignal | ||
2076 | -0803e2a0 g F .text 00000058 wpa_sm_deinit | ||
2077 | -0802a480 g F .text 00000146 pbuf_alloc | ||
2078 | -08031a80 g F .text 00000002 eap_sm_request_pin | ||
2079 | -08000cd0 g F .text 00000010 raise | ||
2080 | -0801e7c0 g F .text 0000003e hostapd_register_probereq_cb | ||
2081 | -0802f130 g F .text 0000003c wpa_bss_flush | ||
2082 | -08011c00 g F .text 0000001c wifi_ResetConnectedBss | ||
2083 | -08029f90 g F .text 00000074 memp_malloc | ||
2084 | -08031cb0 g F .text 00000008 eap_register_scard_ctx | ||
2085 | -0801a4a0 g F .text 000000aa wps_device_store | 2053 | +08036a10 g F .text 000000fe hmac_md5_vector |
2054 | +20002a94 g O .bss 00000001 Joining_HT_AP | ||
2055 | +0802ec80 g F .text 0000001e wpa_blacklist_clear | ||
2056 | +08015770 g F .text 0000007c registryCreateKey | ||
2057 | +08016030 g F .text 0000002c hexstr2bin | ||
2058 | +080297a0 g F .text 000000a0 dhcp_fine_tmr | ||
2059 | +08028330 g F .text 00000022 netbuf_delete | ||
2060 | +08049d20 g F .text 0000008e pkcs8_enc_key_import | ||
2061 | +080196a0 g F .text 0000000c wps_process_msg | ||
2062 | +0800da30 g F .text 0000006c LwIP_Init | ||
2063 | +08018e30 g F .text 00000100 wpas_connection_failed | ||
2064 | +0800aae0 g F .text 00000026 chSemSignal | ||
2065 | +0803e130 g F .text 00000058 wpa_sm_deinit | ||
2066 | +0802a360 g F .text 00000146 pbuf_alloc | ||
2067 | +08031910 g F .text 00000002 eap_sm_request_pin | ||
2068 | +08000d50 g F .text 00000010 raise | ||
2069 | +0801e570 g F .text 0000003e hostapd_register_probereq_cb | ||
2070 | +0802efc0 g F .text 0000003c wpa_bss_flush | ||
2071 | +08011b10 g F .text 0000001c wifi_ResetConnectedBss | ||
2072 | +08029e70 g F .text 00000074 memp_malloc | ||
2073 | +08031b40 g F .text 00000008 eap_register_scard_ctx | ||
2074 | +0801a250 g F .text 000000aa wps_device_store | ||
2086 | 200012c4 g O .data 00000004 g_SoftAP_fwSize | 2075 | 200012c4 g O .data 00000004 g_SoftAP_fwSize |
2087 | -0802a3e0 g F .text 0000005a pbuf_free | ||
2088 | -0803a7d0 g F .text 00000010 tls_connection_get_keys | ||
2089 | -200018f0 g O .bss 0000000c power_sem | ||
2090 | -08027080 g F .text 0000000c RCC_BackupResetCmd | ||
2091 | -08027310 g F .text 0000002e SDIO_SendCommand | ||
2092 | -080659a0 g O .text 00000006 ethzero | ||
2093 | -08005304 g F .text 00000002 __sinit_lock_release | ||
2094 | -0800a190 w F .text 00000002 __late_init | ||
2095 | -08030b10 g F .text 00000004 eap_peer_method_free | ||
2096 | -08023c40 g F .text 00000014 wpa_auth_for_each_auth | ||
2097 | -08036a90 g F .text 00000078 NRX_MD5Final | ||
2098 | -08019710 g F .text 00000144 wps_init | ||
2099 | -0800a0e0 g F .text 0000009e __aeabi_d2f | ||
2100 | -0800ee60 g F .text 0000006c softAP_handle_deauthenticate | ||
2101 | -08012e20 g F .text 0000002c wifi_scan_dec_bss_count | ||
2102 | -200049bc g O .bss 00000002 wifi_registryFile | ||
2103 | -0800ed00 g F .text 0000006c softAP_Force_TIM_Field | ||
2104 | -080374b0 g F .text 00000002 wpas_notify_bss_wpaie_changed | ||
2105 | -200047a0 g O .bss 00000004 dlm_mib_table_rootindex | ||
2106 | -08049f60 g F .text 00000006 crypto_rsa_get_modulus_len | ||
2107 | -0801f6a0 g F .text 00000010 ieee80211_tkip_countermeasures_deinit | ||
2108 | -08018680 g F .text 0000004a wpa_supplicant_disassociate | ||
2109 | -08032190 g F .text 00000012 eapol_sm_notify_pmkid_attempt | ||
2110 | -0800a2d0 w F .text 00000010 VectorCC | ||
2111 | -0803a9c0 g F .text 0000001e tls_derive_pre_master_secret | ||
2112 | -080320c0 g F .text 00000022 eapol_sm_configure | ||
2113 | -08006160 g F .text 000000bc __d2b | ||
2114 | -08029df0 g F .text 00000064 dns_init | ||
2115 | -2000d3a4 g O .bss 00000004 current_header | ||
2116 | -0800cd50 g F .text 00000040 libwismart_PowerSave_Enable | ||
2117 | -0802c630 g F .text 00000006 udp_recv | 2076 | +0802a2c0 g F .text 0000005a pbuf_free |
2077 | +0803a660 g F .text 00000010 tls_connection_get_keys | ||
2078 | +200017d0 g O .bss 0000000c power_sem | ||
2079 | +08026e30 g F .text 0000000c RCC_BackupResetCmd | ||
2080 | +080270c0 g F .text 0000002e SDIO_SendCommand | ||
2081 | +08065960 g O .text 00000006 ethzero | ||
2082 | +08005384 g F .text 00000002 __sinit_lock_release | ||
2083 | +0800a210 w F .text 00000002 __late_init | ||
2084 | +080309a0 g F .text 00000004 eap_peer_method_free | ||
2085 | +080239f0 g F .text 00000014 wpa_auth_for_each_auth | ||
2086 | +08036920 g F .text 00000078 NRX_MD5Final | ||
2087 | +080194c0 g F .text 00000144 wps_init | ||
2088 | +0800a160 g F .text 0000009e __aeabi_d2f | ||
2089 | +0800ed70 g F .text 0000006c softAP_handle_deauthenticate | ||
2090 | +08012d30 g F .text 0000002c wifi_scan_dec_bss_count | ||
2091 | +2000489c g O .bss 00000002 wifi_registryFile | ||
2092 | +0800ec10 g F .text 0000006c softAP_Force_TIM_Field | ||
2093 | +08037340 g F .text 00000002 wpas_notify_bss_wpaie_changed | ||
2094 | +20004680 g O .bss 00000004 dlm_mib_table_rootindex | ||
2095 | +08049df0 g F .text 00000006 crypto_rsa_get_modulus_len | ||
2096 | +0801f450 g F .text 00000010 ieee80211_tkip_countermeasures_deinit | ||
2097 | +08018430 g F .text 0000004a wpa_supplicant_disassociate | ||
2098 | +08032020 g F .text 00000012 eapol_sm_notify_pmkid_attempt | ||
2099 | +0800a350 w F .text 00000010 VectorCC | ||
2100 | +0803a850 g F .text 0000001e tls_derive_pre_master_secret | ||
2101 | +08031f50 g F .text 00000022 eapol_sm_configure | ||
2102 | +080061e0 g F .text 000000bc __d2b | ||
2103 | +08029cd0 g F .text 00000064 dns_init | ||
2104 | +2000d290 g O .bss 00000004 current_header | ||
2105 | +0800cc50 g F .text 00000040 libwismart_PowerSave_Enable | ||
2106 | +0802c510 g F .text 00000006 udp_recv | ||
2118 | 200012c8 g O .data 00000004 g_Client_fwSize | 2107 | 200012c8 g O .data 00000004 g_Client_fwSize |
2119 | -0800a2d0 w F .text 00000010 Vector124 | ||
2120 | -0804a2a0 g F .text 00000118 tls_prf | ||
2121 | -0800a490 g F .text 0000004c chSysTimerHandlerI | ||
2122 | -0801ed70 g F .text 000000e4 hostapd_get_eap_user | ||
2123 | -08037490 g F .text 00000002 wpas_notify_bss_privacy_changed | ||
2124 | -0800bbd0 g F .text 00000042 send | ||
2125 | -080460c0 g F .text 00000078 asn1_oid_to_str | ||
2126 | -08021a10 g F .text 00000026 hostapd_drv_sta_disassoc | ||
2127 | -0800a0a0 g F .text 00000040 __fixunsdfsi | ||
2128 | -0804a230 g F .text 00000068 crypto_rsa_import_public_key | ||
2129 | -08021880 g F .text 0000001a hostapd_flush | ||
2130 | -08016aa0 g F .text 00000004 wpa_driver_WE_set_supp_port | ||
2131 | -0802df10 g F .text 0000014c etharp_query | ||
2132 | -08006430 g F .text 00000eac _strtod_r | ||
2133 | -08014010 g F .text 00000034 HW_RTC_SetAlarm_ms | ||
2134 | -0800a2d0 w F .text 00000010 Vector120 | ||
2135 | -08000be8 g F .text 00000040 _signal_r | ||
2136 | -08016040 g F .text 0000001c HW_DebugTrace_IRQHandler | ||
2137 | -08005ca0 g F .text 00000012 __i2b | ||
2138 | -08015a10 g F .text 00000038 init_registry_key | ||
2139 | -08031b50 g F .text 0000000c eap_get_config | ||
2140 | -08037900 g F .text 00000044 pmksa_cache_get_opportunistic | ||
2141 | -20002594 g O .bss 00000004 DHCPcoarseTimer | ||
2142 | -0800a7f0 g F .text 0000001e chThdCreateStatic | ||
2143 | -080374f0 g F .text 00000002 wpas_notify_bss_rates_changed | ||
2144 | -080052f8 g F .text 00000002 __sfp_lock_acquire | ||
2145 | -20004a90 g O .bss 00000061 wps_final_creds | ||
2146 | -08008da0 g F .text 00000050 __hexdig_init | ||
2147 | -0800a028 g F .text 00000012 __aeabi_dcmpge | ||
2148 | -0802e5c0 g F .text 00000006 sys_arch_protect | ||
2149 | -080164b0 g F .text 00000090 wpa_set_ssid_psk | ||
2150 | -08005660 g F .text 00000048 _fwalk | ||
2151 | -08034830 g F .text 00000058 eloop_unregister_read_sock | ||
2152 | -08013500 g F .text 000000a0 wifi_get_raw_mib | ||
2153 | -0800c260 g F .text 00000016 libwismart_GetMemFree_PBufPool | 2108 | +0800a350 w F .text 00000010 Vector124 |
2109 | +0804a130 g F .text 00000118 tls_prf | ||
2110 | +0800a510 g F .text 0000004c chSysTimerHandlerI | ||
2111 | +0801eb20 g F .text 000000e4 hostapd_get_eap_user | ||
2112 | +08037320 g F .text 00000002 wpas_notify_bss_privacy_changed | ||
2113 | +0800ba50 g F .text 00000094 send | ||
2114 | +08045f50 g F .text 00000078 asn1_oid_to_str | ||
2115 | +080217c0 g F .text 00000026 hostapd_drv_sta_disassoc | ||
2116 | +0800a120 g F .text 00000040 __fixunsdfsi | ||
2117 | +0804a0c0 g F .text 00000068 crypto_rsa_import_public_key | ||
2118 | +08021630 g F .text 0000001a hostapd_flush | ||
2119 | +08016850 g F .text 00000004 wpa_driver_WE_set_supp_port | ||
2120 | +0802deb0 g F .text 0000014c etharp_query | ||
2121 | +080064b0 g F .text 00000eac _strtod_r | ||
2122 | +08013f20 g F .text 00000034 HW_RTC_SetAlarm_ms | ||
2123 | +0800a350 w F .text 00000010 Vector120 | ||
2124 | +08000c68 g F .text 00000040 _signal_r | ||
2125 | +08015df0 g F .text 0000001c HW_DebugTrace_IRQHandler | ||
2126 | +08005d20 g F .text 00000012 __i2b | ||
2127 | +08015890 g F .text 00000038 init_registry_key | ||
2128 | +080319e0 g F .text 0000000c eap_get_config | ||
2129 | +08037790 g F .text 00000044 pmksa_cache_get_opportunistic | ||
2130 | +20002474 g O .bss 00000004 DHCPcoarseTimer | ||
2131 | +0800a870 g F .text 0000001e chThdCreateStatic | ||
2132 | +08037380 g F .text 00000002 wpas_notify_bss_rates_changed | ||
2133 | +08005378 g F .text 00000002 __sfp_lock_acquire | ||
2134 | +20004970 g O .bss 00000061 wps_final_creds | ||
2135 | +08008e20 g F .text 00000050 __hexdig_init | ||
2136 | +0800a0a8 g F .text 00000012 __aeabi_dcmpge | ||
2137 | +0802e590 g F .text 00000006 sys_arch_protect | ||
2138 | +08016260 g F .text 00000090 wpa_set_ssid_psk | ||
2139 | +080056e0 g F .text 00000048 _fwalk | ||
2140 | +080346c0 g F .text 00000058 eloop_unregister_read_sock | ||
2141 | +08013410 g F .text 000000a0 wifi_get_raw_mib | ||
2142 | +0800c160 g F .text 00000016 libwismart_GetMemFree_PBufPool | ||
2154 | 08000130 g startup 00000000 __fini_array_start | 2143 | 08000130 g startup 00000000 __fini_array_start |
2155 | -0800b1f0 g F .text 00000002 HardFaultVector | ||
2156 | -08025550 g F .text 0000007c wpa_auth_sta_associated | ||
2157 | -08019b40 g F .text 0000006e wps_build_assoc_resp_ie | ||
2158 | -08029e60 g F .text 00000028 dns_setserver | ||
2159 | -08045490 g F .text 00000400 aes_decrypt | ||
2160 | -08026ec0 g F .text 00000014 RCC_PCLK1Config | ||
2161 | -08016c50 g F .text 00000004 wpa_driver_WE_deinit | ||
2162 | -0803a140 g F .text 000000a0 SHA1Final | ||
2163 | -0802cb30 g F .text 00000060 igmp_stop | ||
2164 | -080273c0 g F .text 00000014 SDIO_GetITStatus | ||
2165 | -08026b00 g F .text 000000be GPIO_Init | ||
2166 | -080407e0 g F .text 00000042 wps_process_key_wrap_auth | ||
2167 | -08013220 g F .text 00000058 GetBssid | ||
2168 | -08005320 g F .text 00000016 __fp_unlock_all | ||
2169 | -08026840 g F .text 0000001e EXTI_GetITStatus | ||
2170 | -080105e0 g F .text 00000028 SendDeAuthRequest | ||
2171 | -080301c0 g F .text 000000be wpa_config_add_prio_network | ||
2172 | -080183c0 g F .text 000002b2 wpa_supplicant_set_suites | ||
2173 | -0800b270 g F .text 00000210 init_registry | ||
2174 | -08027510 g F .text 000000be TIM_TimeBaseInit | ||
2175 | -080347d0 g F .text 00000054 eloop_register_read_sock | ||
2176 | -08000fa8 g F .text 0000003c __swrite | ||
2177 | -08032c40 g F .text 0000000a eapol_sm_invalidate_cached_session | ||
2178 | -08005308 g F .text 00000016 __fp_lock_all | ||
2179 | -0803ded0 g F .text 000000de wpa_sm_key_request | ||
2180 | -0801f7c0 g F .text 00000004 mlme_deauthenticate_indication | ||
2181 | -0800dbb0 g F .text 0000000e LwIP_DHCP_Init | ||
2182 | -08018940 g F .text 00000006 wpa_supplicant_get_ssid | ||
2183 | -0801f7a0 g F .text 0000000c mlme_deletekeys_request | ||
2184 | -08012c50 g F .text 00000026 wifi_scan_remove | ||
2185 | -08067830 g O .text 0000000a rcons | ||
2186 | -20001770 g O .bss 00000004 roam_lastsnr | ||
2187 | -08001500 g F .text 00000064 strncat | 2144 | +0800b270 g F .text 00000002 HardFaultVector |
2145 | +08025300 g F .text 0000007c wpa_auth_sta_associated | ||
2146 | +080198f0 g F .text 0000006e wps_build_assoc_resp_ie | ||
2147 | +08029d40 g F .text 00000028 dns_setserver | ||
2148 | +08045320 g F .text 00000400 aes_decrypt | ||
2149 | +08026c70 g F .text 00000014 RCC_PCLK1Config | ||
2150 | +08016a00 g F .text 00000004 wpa_driver_WE_deinit | ||
2151 | +08039fd0 g F .text 000000a0 SHA1Final | ||
2152 | +0802cad0 g F .text 00000060 igmp_stop | ||
2153 | +08027170 g F .text 00000014 SDIO_GetITStatus | ||
2154 | +080268b0 g F .text 000000be GPIO_Init | ||
2155 | +08040670 g F .text 00000042 wps_process_key_wrap_auth | ||
2156 | +08013130 g F .text 00000058 GetBssid | ||
2157 | +080053a0 g F .text 00000016 __fp_unlock_all | ||
2158 | +080265f0 g F .text 0000001e EXTI_GetITStatus | ||
2159 | +080104f0 g F .text 00000028 SendDeAuthRequest | ||
2160 | +08030050 g F .text 000000be wpa_config_add_prio_network | ||
2161 | +08018170 g F .text 000002b2 wpa_supplicant_set_suites | ||
2162 | +080272c0 g F .text 000000be TIM_TimeBaseInit | ||
2163 | +08034660 g F .text 00000054 eloop_register_read_sock | ||
2164 | +08001028 g F .text 0000003c __swrite | ||
2165 | +08032ad0 g F .text 0000000a eapol_sm_invalidate_cached_session | ||
2166 | +08005388 g F .text 00000016 __fp_lock_all | ||
2167 | +0803dd60 g F .text 000000de wpa_sm_key_request | ||
2168 | +0801f570 g F .text 00000004 mlme_deauthenticate_indication | ||
2169 | +0800dac0 g F .text 0000000e LwIP_DHCP_Init | ||
2170 | +080186f0 g F .text 00000006 wpa_supplicant_get_ssid | ||
2171 | +0801f550 g F .text 0000000c mlme_deletekeys_request | ||
2172 | +08012b60 g F .text 00000026 wifi_scan_remove | ||
2173 | +080677f0 g O .text 0000000a rcons | ||
2174 | +20001650 g O .bss 00000004 roam_lastsnr | ||
2175 | +08001580 g F .text 00000064 strncat | ||
2188 | 20000200 g .stacks 00000000 __process_stack_base__ | 2176 | 20000200 g .stacks 00000000 __process_stack_base__ |
2189 | -08008c50 g F .text 00000088 _fclose_r | ||
2190 | -08009b10 g F .text 00000254 __aeabi_dmul | ||
2191 | -0800a930 g F .text 00000036 chThdCreateFromHeap | ||
2192 | -0800746c g F .text 0000001a strtoul | ||
2193 | -080273b0 g F .text 0000000c SDIO_ClearFlag | ||
2194 | -08030a80 g F .text 00000020 eap_peer_get_eap_method | ||
2195 | -08007490 g F .text 0000010a __ssprint_r | ||
2196 | -08036f40 g F .text 0000001a hash_nt_password_hash | ||
2197 | -080657e0 g O .text 0000000d tcp_backoff | ||
2198 | -0803d3d0 g F .text 00000186 wpa_parse_wpa_ie_rsn | ||
2199 | -08021410 g F .text 000001da hostapd_build_ap_extra_ies | ||
2200 | -0802c6a0 g F .text 00000002 sys_timeouts_init | ||
2201 | -0803a880 g F .text 0000005a tls_connection_encrypt | ||
2202 | -200029ac g O .bss 00000004 SoftAPQueue_Handler_Thread | ||
2203 | -080161b0 g F .text 0000001e bootloader_get_softap_fw_info | ||
2204 | -0802a840 g F .text 00000078 raw_input | ||
2205 | -08005a70 g F .text 0000004e _Balloc | ||
2206 | -08027900 g F .text 00000038 USART_ITConfig | ||
2207 | -08015b10 g F .text 000000d0 libwismart_ProfileGet_Str | ||
2208 | -08027960 g F .text 00000008 USART_SendData | ||
2209 | -0800bd20 g F .text 000000cc libwismart_Init | ||
2210 | -08025700 g F .text 0000000e wpa_auth_sta_key_mgmt | ||
2211 | -0800d7b0 g F .text 00000034 Transport_Init | ||
2212 | -0800a014 g F .text 00000012 __aeabi_dcmple | ||
2213 | -0800c570 g F .text 000000a0 libwismart_WiFiConnectedInd | ||
2214 | -0803d2a0 g F .text 00000042 wpa_eapol_key_mic | ||
2215 | -0801b220 g F .text 00000688 wps_registrar_get_msg | ||
2216 | -08040fa0 g F .text 0000005a wps_build_wsc_nack | ||
2217 | -08023ee0 g F .text 000003c0 __wpa_send_eapol | ||
2218 | -0802c640 g F .text 00000034 udp_remove | ||
2219 | -0802e570 g F .text 0000002c sys_arch_mbox_fetch | ||
2220 | -08026e70 g F .text 00000014 RCC_SYSCLKConfig | ||
2221 | -08036090 g F .text 000000bc ieee802_11_vendor_ie_concat | ||
2222 | -08027810 g F .text 000000ca USART_Init | ||
2223 | -08005188 g F .text 0000000c _cleanup_r | ||
2224 | -0800a2d0 w F .text 00000010 Vector88 | ||
2225 | -0800c280 g F .text 0000003e libwismart_GetMemFree_Ram | ||
2226 | -08046fa0 g F .text 00000056 des3_key_setup | ||
2227 | -0802a810 g F .text 00000028 pbuf_coalesce | ||
2228 | -08016bf0 g F .text 00000004 wpa_driver_WE_p2p_sd_response | ||
2229 | -08031ba0 g F .text 00000024 eap_get_config_password2 | ||
2230 | -0801d090 g F .text 0000008e wpas_wps_ssid_wildcard_ok | ||
2231 | -08038120 g F .text 00000060 wpa_supplicant_req_scan | ||
2232 | -0802a1e0 g F .text 00000008 netif_set_netmask | ||
2233 | -0800f040 g F .text 00000060 WiFi_Flush_Clients_Packet_to_Air | ||
2234 | -08067840 g O .text 00000400 Td0 | ||
2235 | -080320f0 g F .text 0000000a eapol_sm_notify_tx_eapol_key | ||
2236 | -08046680 g F .text 00000186 crypto_hash_init | ||
2237 | -080389d0 g F .text 0000005e wpa_scan_get_vendor_ie | ||
2238 | -0800ec80 g F .text 00000074 WiFi_send_frame_req | ||
2239 | -08034aa0 g F .text 0000006c eloop_cancel_timeout | ||
2240 | -08006420 g F .text 00000008 nanf | ||
2241 | -0800a3f0 g F .text 00000010 _port_switch | ||
2242 | -0800c470 g F .text 000000f4 libwismart_WiFiWPSFinalConnect | ||
2243 | -0801d9a0 g F .text 0000000c wpa_supplicant_ap_rx_eapol | ||
2244 | -08046840 g F .text 0000015c crypto_hash_finish | 2177 | +08008cd0 g F .text 00000088 _fclose_r |
2178 | +08009b90 g F .text 00000254 __aeabi_dmul | ||
2179 | +0800a9b0 g F .text 00000036 chThdCreateFromHeap | ||
2180 | +080074ec g F .text 0000001a strtoul | ||
2181 | +08027160 g F .text 0000000c SDIO_ClearFlag | ||
2182 | +08030910 g F .text 00000020 eap_peer_get_eap_method | ||
2183 | +08007510 g F .text 0000010a __ssprint_r | ||
2184 | +08036dd0 g F .text 0000001a hash_nt_password_hash | ||
2185 | +080657a0 g O .text 0000000d tcp_backoff | ||
2186 | +0803d260 g F .text 00000186 wpa_parse_wpa_ie_rsn | ||
2187 | +080211c0 g F .text 000001da hostapd_build_ap_extra_ies | ||
2188 | +0802c580 g F .text 00000002 sys_timeouts_init | ||
2189 | +0803a710 g F .text 0000005a tls_connection_encrypt | ||
2190 | +2000288c g O .bss 00000004 SoftAPQueue_Handler_Thread | ||
2191 | +08015f60 g F .text 0000001e bootloader_get_softap_fw_info | ||
2192 | +0802a720 g F .text 00000078 raw_input | ||
2193 | +08005af0 g F .text 0000004e _Balloc | ||
2194 | +080276b0 g F .text 00000038 USART_ITConfig | ||
2195 | +08015990 g F .text 000000d0 libwismart_ProfileGet_Str | ||
2196 | +08027710 g F .text 00000008 USART_SendData | ||
2197 | +0800bc20 g F .text 000000cc libwismart_Init | ||
2198 | +080254b0 g F .text 0000000e wpa_auth_sta_key_mgmt | ||
2199 | +0800d6b0 g F .text 00000034 Transport_Init | ||
2200 | +0800a094 g F .text 00000012 __aeabi_dcmple | ||
2201 | +0800c470 g F .text 000000a0 libwismart_WiFiConnectedInd | ||
2202 | +0803d130 g F .text 00000042 wpa_eapol_key_mic | ||
2203 | +0801afd0 g F .text 00000688 wps_registrar_get_msg | ||
2204 | +08040e30 g F .text 0000005a wps_build_wsc_nack | ||
2205 | +08023c90 g F .text 000003c0 __wpa_send_eapol | ||
2206 | +0802c520 g F .text 00000034 udp_remove | ||
2207 | +0802e510 g F .text 0000002c sys_arch_mbox_fetch | ||
2208 | +08026c20 g F .text 00000014 RCC_SYSCLKConfig | ||
2209 | +08035f20 g F .text 000000bc ieee802_11_vendor_ie_concat | ||
2210 | +080275c0 g F .text 000000ca USART_Init | ||
2211 | +08005208 g F .text 0000000c _cleanup_r | ||
2212 | +0800a350 w F .text 00000010 Vector88 | ||
2213 | +0800c180 g F .text 0000003e libwismart_GetMemFree_Ram | ||
2214 | +08046e30 g F .text 00000056 des3_key_setup | ||
2215 | +0802a6f0 g F .text 00000028 pbuf_coalesce | ||
2216 | +080169a0 g F .text 00000004 wpa_driver_WE_p2p_sd_response | ||
2217 | +08031a30 g F .text 00000024 eap_get_config_password2 | ||
2218 | +0801ce40 g F .text 0000008e wpas_wps_ssid_wildcard_ok | ||
2219 | +08037fb0 g F .text 00000060 wpa_supplicant_req_scan | ||
2220 | +0802a0c0 g F .text 00000008 netif_set_netmask | ||
2221 | +0800ef50 g F .text 00000060 WiFi_Flush_Clients_Packet_to_Air | ||
2222 | +08067800 g O .text 00000400 Td0 | ||
2223 | +08031f80 g F .text 0000000a eapol_sm_notify_tx_eapol_key | ||
2224 | +08046510 g F .text 00000186 crypto_hash_init | ||
2225 | +08038860 g F .text 0000005e wpa_scan_get_vendor_ie | ||
2226 | +0800eb90 g F .text 00000074 WiFi_send_frame_req | ||
2227 | +08034930 g F .text 0000006c eloop_cancel_timeout | ||
2228 | +080064a0 g F .text 00000008 nanf | ||
2229 | +0800a470 g F .text 00000010 _port_switch | ||
2230 | +0800c370 g F .text 000000f4 libwismart_WiFiWPSFinalConnect | ||
2231 | +0801d750 g F .text 0000000c wpa_supplicant_ap_rx_eapol | ||
2232 | +080466d0 g F .text 0000015c crypto_hash_finish | ||
2245 | 20018000 g *ABS* 00000000 __heap_end__ | 2233 | 20018000 g *ABS* 00000000 __heap_end__ |
2246 | -0802c5d0 g F .text 00000058 udp_connect | ||
2247 | -08005214 g F .text 0000000e _cleanup | ||
2248 | -08000fe4 g F .text 00000020 __sseek | ||
2249 | -08037680 g F .text 0000002c pmksa_cache_deinit | ||
2250 | -08000e20 g F .text 00000044 _sprintf_r | ||
2251 | -0800578c g F .text 00000012 setlocale | ||
2252 | -2000d1ec g O .bss 0000017c lwip_stats | ||
2253 | -0800a2d0 w F .text 00000010 VectorD0 | ||
2254 | -080156d0 g F .text 00000158 HW_RCC_Init | ||
2255 | -08048e60 g F .text 00000038 eap_peer_tls_status | ||
2256 | -0802f0f0 g F .text 00000038 wpa_bss_init | ||
2257 | -0801ed00 g F .text 00000018 hostapd_get_vlan_id_ifname | ||
2258 | -2000d4a0 g O .bss 00000050 eloop | ||
2259 | -0800a2d0 w F .text 00000010 VectorAC | ||
2260 | -08013c30 g F .text 00000034 libwismart_LinkList_Find | ||
2261 | -0800a2d0 w F .text 00000010 Vector20 | ||
2262 | -0801e280 g F .text 0000004c hostapd_interface_free | ||
2263 | -080267c0 g F .text 0000007c EXTI_Init | ||
2264 | -0800a2d0 w F .text 00000010 Vector64 | ||
2265 | -2000d368 g O .bss 00000001 tcp_active_pcbs_changed | ||
2266 | -0803fa20 g F .text 00000144 wps_build_public_key | ||
2267 | -0803bb60 g F .text 00000184 tls_send_client_hello | ||
2268 | -080128e0 g F .text 00000016 wifi_filter_parse_hic | ||
2269 | -0800c8d0 g F .text 000000a4 libwismart_WiFi_SoftAP_Start | ||
2270 | -0800d0a0 g F .text 0000000e Transport_AckIRQ | ||
2271 | -080222f0 g F .text 00000004 eap_get_interface | ||
2272 | -0800a9b0 g F .text 00000010 chSemReset | ||
2273 | -0802ef30 g F .text 00000050 wpa_bss_get | ||
2274 | -0800a2d0 w F .text 00000010 Vector60 | ||
2275 | -08006350 g F .text 00000050 __fpclassifyd | ||
2276 | -08005700 g F .text 0000001c iswspace | ||
2277 | -0803cbe0 g F .text 00000152 tlsv1_record_send | ||
2278 | -08031cd0 g F .text 00000006 eap_set_force_disabled | ||
2279 | -0800a2d0 w F .text 00000010 Vector84 | ||
2280 | -0800d250 g F .text 0000000c Transport_Unlock | ||
2281 | -08012dc0 g F .text 00000054 wifi_scan_handle_add_scanjob_cfm | ||
2282 | -0800da50 g F .text 0000000c LwIP_PeriodicEventStop | ||
2283 | -0801f6b0 g F .text 000000e0 michael_mic_failure | ||
2284 | -08011bb0 g F .text 00000036 FindIE | ||
2285 | -08012a90 g F .text 00000050 wifi_multicast_list_add | ||
2286 | -080273e0 g F .text 0000000c SDIO_ClearITPendingBit | ||
2287 | -0800a9c0 g F .text 00000034 chSemWaitS | ||
2288 | -200029c0 g O .bss 00000006 softap_TIM_old | ||
2289 | -08009b10 g F .text 00000254 __muldf3 | ||
2290 | -0802e7d0 g F .text 00000038 libwismart_ThreadExec | ||
2291 | -0800dd40 g F .text 00000094 LwIP_SetStaticIP | ||
2292 | -0800cde0 g F .text 0000003e libwismart_PowerSave_ResetResource | ||
2293 | -080492d0 g F .text 00000050 eap_peer_tls_encrypt | ||
2294 | -08023da0 g F .text 0000001c wpa_init_keys | ||
2295 | -08007320 g F .text 0000014c _strtoul_r | ||
2296 | -080413b0 g F .text 00000036 wps_build_rf_bands | ||
2297 | -08023c60 g F .text 0000005e wpa_auth_vlogger | ||
2298 | -0800bf50 g F .text 000000e4 libwismart_WiFiReInit | ||
2299 | -080177a0 g F .text 00000014 wpa_wifiengine_config | ||
2300 | -0800a2d0 w F .text 00000010 Vector80 | ||
2301 | -08015e20 g F .text 0000002c libwismart_RegistryGet | 2234 | +0802c4b0 g F .text 00000058 udp_connect |
2235 | +08005294 g F .text 0000000e _cleanup | ||
2236 | +08001064 g F .text 00000020 __sseek | ||
2237 | +08037510 g F .text 0000002c pmksa_cache_deinit | ||
2238 | +08000ea0 g F .text 00000044 _sprintf_r | ||
2239 | +0800580c g F .text 00000012 setlocale | ||
2240 | +2000d0d8 g O .bss 0000017c lwip_stats | ||
2241 | +0800a350 w F .text 00000010 VectorD0 | ||
2242 | +080155e0 g F .text 00000158 HW_RCC_Init | ||
2243 | +08048cf0 g F .text 00000038 eap_peer_tls_status | ||
2244 | +0802ef80 g F .text 00000038 wpa_bss_init | ||
2245 | +0801eab0 g F .text 00000018 hostapd_get_vlan_id_ifname | ||
2246 | +2000d388 g O .bss 00000050 eloop | ||
2247 | +0800a350 w F .text 00000010 VectorAC | ||
2248 | +08013b40 g F .text 00000034 libwismart_LinkList_Find | ||
2249 | +0800a350 w F .text 00000010 Vector20 | ||
2250 | +0801e030 g F .text 0000004c hostapd_interface_free | ||
2251 | +08026570 g F .text 0000007c EXTI_Init | ||
2252 | +0800a350 w F .text 00000010 Vector64 | ||
2253 | +2000d254 g O .bss 00000001 tcp_active_pcbs_changed | ||
2254 | +0803f8b0 g F .text 00000144 wps_build_public_key | ||
2255 | +0803b9f0 g F .text 00000184 tls_send_client_hello | ||
2256 | +080127f0 g F .text 00000016 wifi_filter_parse_hic | ||
2257 | +0800c7d0 g F .text 000000a4 libwismart_WiFi_SoftAP_Start | ||
2258 | +0800cfa0 g F .text 0000000e Transport_AckIRQ | ||
2259 | +080220a0 g F .text 00000004 eap_get_interface | ||
2260 | +0800aa30 g F .text 00000010 chSemReset | ||
2261 | +0802edc0 g F .text 00000050 wpa_bss_get | ||
2262 | +0800a350 w F .text 00000010 Vector60 | ||
2263 | +080063d0 g F .text 00000050 __fpclassifyd | ||
2264 | +08005780 g F .text 0000001c iswspace | ||
2265 | +0803ca70 g F .text 00000152 tlsv1_record_send | ||
2266 | +08031b60 g F .text 00000006 eap_set_force_disabled | ||
2267 | +0800a350 w F .text 00000010 Vector84 | ||
2268 | +0800d150 g F .text 0000000c Transport_Unlock | ||
2269 | +08012cd0 g F .text 00000054 wifi_scan_handle_add_scanjob_cfm | ||
2270 | +0800d950 g F .text 0000000c LwIP_PeriodicEventStop | ||
2271 | +0801f460 g F .text 000000e0 michael_mic_failure | ||
2272 | +08011ac0 g F .text 00000036 FindIE | ||
2273 | +080129a0 g F .text 00000050 wifi_multicast_list_add | ||
2274 | +08027190 g F .text 0000000c SDIO_ClearITPendingBit | ||
2275 | +0800aa40 g F .text 00000034 chSemWaitS | ||
2276 | +200028a0 g O .bss 00000006 softap_TIM_old | ||
2277 | +08009b90 g F .text 00000254 __muldf3 | ||
2278 | +0802e7a0 g F .text 00000038 libwismart_ThreadExec | ||
2279 | +0800dc50 g F .text 00000094 LwIP_SetStaticIP | ||
2280 | +0800cce0 g F .text 0000003e libwismart_PowerSave_ResetResource | ||
2281 | +08049160 g F .text 00000050 eap_peer_tls_encrypt | ||
2282 | +08023b50 g F .text 0000001c wpa_init_keys | ||
2283 | +080073a0 g F .text 0000014c _strtoul_r | ||
2284 | +08041240 g F .text 00000036 wps_build_rf_bands | ||
2285 | +08023a10 g F .text 0000005e wpa_auth_vlogger | ||
2286 | +0800be50 g F .text 000000e4 libwismart_WiFiReInit | ||
2287 | +08017550 g F .text 00000014 wpa_wifiengine_config | ||
2288 | +0800a350 w F .text 00000010 Vector80 | ||
2302 | 200010ec g O .data 00000020 Alignment | 2289 | 200010ec g O .data 00000020 Alignment |
2303 | -08023e30 g F .text 000000a8 wpa_auth_sta_deinit | ||
2304 | -2000d530 g O .bss 00000004 tcp_input_pcb | ||
2305 | -08000d48 g F .text 00000004 _getpid_r | ||
2306 | -08048ea0 g F .text 000000ac eap_peer_tls_process_init | ||
2307 | -0800d100 g F .text 00000088 Transport_SendData | ||
2308 | -0802a990 g F .text 0000003c tcp_update_rcv_ann_wnd | ||
2309 | -08000fa4 g F .text 00000004 __seofread | ||
2310 | -08026f40 g F .text 0000000c RCC_RTCCLKCmd | ||
2311 | -0802a8d0 g F .text 00000006 raw_recv | ||
2312 | -080062f8 g F .text 00000056 __any_on | ||
2313 | -08040ce0 g F .text 00000014 wps_success_event | ||
2314 | -0803de10 g F .text 000000ba wpa_eapol_key_send | ||
2315 | -08005340 g F .text 0000031c __sfvwrite_r | ||
2316 | -080058a0 g F .text 0000005c _mbrtowc_r | ||
2317 | -08046a50 g F .text 00000004 crypto_public_key_free | ||
2318 | -0802cb90 g F .text 00000028 igmp_report_groups | ||
2319 | -08028ee0 g F .text 000000b4 dhcp_arp_reply | ||
2320 | -0801ae80 g F .text 00000004 wps_registrar_update_ie | ||
2321 | -08025760 g F .text 00000048 wpa_auth_pmksa_add | ||
2322 | -08048aa0 g F .text 0000007c eap_peer_peap_register | ||
2323 | -0803a700 g F .text 0000001a tls_connection_deinit | ||
2324 | -0802ceb0 g F .text 00000054 inet_chksum_pbuf | ||
2325 | -08048bc0 g F .text 000001cc eap_peer_tls_ssl_init | ||
2326 | -0803ae90 g F .text 000000c4 tlsv1_client_prf | ||
2327 | -08026d70 g F .text 00000014 PWR_GetFlagStatus | ||
2328 | -08016b60 g F .text 00000004 wpa_driver_WE_p2p_connect | ||
2329 | -08038d30 g F .text 0000001a wpa_supplicant_update_scan_results | ||
2330 | -08027350 g F .text 0000001a SDIO_GetResponse | ||
2331 | -0800a2d0 w F .text 00000010 Vector24 | ||
2332 | -08043880 g F .text 00000026 x509_certificate_get_subject | ||
2333 | -080373f0 g F .text 00000002 wpas_notify_wps_credential | ||
2334 | -0802af90 g F .text 00000006 tcp_abort | ||
2335 | -0800a2d0 w F .text 00000010 Vector68 | ||
2336 | -0802cbe0 g F .text 00000158 igmp_input | ||
2337 | -0804be00 g F .text 000000a8 bignum_set_unsigned_bin | ||
2338 | -08015690 g F .text 0000003e HW_RCC_InitStop | ||
2339 | -0802d380 g F .text 00000144 ipaddr_aton | ||
2340 | -08063c30 g O .text 000001bc wpa_driver_WE_ops | ||
2341 | -080379e0 g F .text 00000018 pmksa_cache_init | ||
2342 | -0800aba0 g F .text 00000054 chMtxUnlock | ||
2343 | -08026890 g F .text 00000018 FLASH_PrefetchBufferCmd | ||
2344 | -0800a2d0 w F .text 00000010 Vector28 | ||
2345 | -080255d0 g F .text 000000a8 wpa_auth_sm_event | ||
2346 | -080229f0 g F .text 00000020 eap_server_get_eap_method | ||
2347 | -0801d300 g F .text 00000044 wpa_supplicant_ap_deinit | ||
2348 | -08018950 g F .text 00000090 wpa_supplicant_update_mac_addr | ||
2349 | -0800f4a0 g F .text 0000003c WiFi_SoftAP_MBDeInit | 2290 | +08023be0 g F .text 000000a8 wpa_auth_sta_deinit |
2291 | +2000d418 g O .bss 00000004 tcp_input_pcb | ||
2292 | +08000dc8 g F .text 00000004 _getpid_r | ||
2293 | +08048d30 g F .text 000000ac eap_peer_tls_process_init | ||
2294 | +0800d000 g F .text 00000088 Transport_SendData | ||
2295 | +0802a870 g F .text 0000003c tcp_update_rcv_ann_wnd | ||
2296 | +08001024 g F .text 00000004 __seofread | ||
2297 | +08026cf0 g F .text 0000000c RCC_RTCCLKCmd | ||
2298 | +0802a7b0 g F .text 00000006 raw_recv | ||
2299 | +08006378 g F .text 00000056 __any_on | ||
2300 | +08040b70 g F .text 00000014 wps_success_event | ||
2301 | +0803dca0 g F .text 000000ba wpa_eapol_key_send | ||
2302 | +080053c0 g F .text 0000031c __sfvwrite_r | ||
2303 | +08005920 g F .text 0000005c _mbrtowc_r | ||
2304 | +080468e0 g F .text 00000004 crypto_public_key_free | ||
2305 | +0802cb30 g F .text 00000028 igmp_report_groups | ||
2306 | +08028dc0 g F .text 000000b4 dhcp_arp_reply | ||
2307 | +0801ac30 g F .text 00000004 wps_registrar_update_ie | ||
2308 | +08025510 g F .text 00000048 wpa_auth_pmksa_add | ||
2309 | +08048930 g F .text 0000007c eap_peer_peap_register | ||
2310 | +0803a590 g F .text 0000001a tls_connection_deinit | ||
2311 | +0802ce50 g F .text 00000054 inet_chksum_pbuf | ||
2312 | +08048a50 g F .text 000001cc eap_peer_tls_ssl_init | ||
2313 | +0803ad20 g F .text 000000c4 tlsv1_client_prf | ||
2314 | +08026b20 g F .text 00000014 PWR_GetFlagStatus | ||
2315 | +08016910 g F .text 00000004 wpa_driver_WE_p2p_connect | ||
2316 | +08038bc0 g F .text 0000001a wpa_supplicant_update_scan_results | ||
2317 | +08027100 g F .text 0000001a SDIO_GetResponse | ||
2318 | +0800a350 w F .text 00000010 Vector24 | ||
2319 | +08043710 g F .text 00000026 x509_certificate_get_subject | ||
2320 | +08037280 g F .text 00000002 wpas_notify_wps_credential | ||
2321 | +0802ae70 g F .text 00000006 tcp_abort | ||
2322 | +0800a350 w F .text 00000010 Vector68 | ||
2323 | +0802cb80 g F .text 00000158 igmp_input | ||
2324 | +0804bc90 g F .text 000000a8 bignum_set_unsigned_bin | ||
2325 | +080155a0 g F .text 0000003e HW_RCC_InitStop | ||
2326 | +0802d320 g F .text 00000144 ipaddr_aton | ||
2327 | +08063bd0 g O .text 000001bc wpa_driver_WE_ops | ||
2328 | +08037870 g F .text 00000018 pmksa_cache_init | ||
2329 | +0800ac20 g F .text 00000054 chMtxUnlock | ||
2330 | +08026640 g F .text 00000018 FLASH_PrefetchBufferCmd | ||
2331 | +0800a350 w F .text 00000010 Vector28 | ||
2332 | +08025380 g F .text 000000a8 wpa_auth_sm_event | ||
2333 | +080227a0 g F .text 00000020 eap_server_get_eap_method | ||
2334 | +0801d0b0 g F .text 00000044 wpa_supplicant_ap_deinit | ||
2335 | +08018700 g F .text 00000090 wpa_supplicant_update_mac_addr | ||
2336 | +0800f3b0 g F .text 0000003c WiFi_SoftAP_MBDeInit | ||
2350 | 20001308 g O .data 00000008 wpa_drivers | 2337 | 20001308 g O .data 00000008 wpa_drivers |
2351 | -08040d40 g F .text 00000014 wps_pbc_overlap_event | ||
2352 | -08036180 g F .text 0000000c l2_packet_send | ||
2353 | -0803c990 g F .text 0000002a tlsv1_set_ca_cert | 2338 | +08040bd0 g F .text 00000014 wps_pbc_overlap_event |
2339 | +08036010 g F .text 0000000c l2_packet_send | ||
2340 | +0803c820 g F .text 0000002a tlsv1_set_ca_cert | ||
2354 | 2000110c g O .data 0000001e supportedRateSet | 2341 | 2000110c g O .data 0000001e supportedRateSet |
2355 | -08015240 g F .text 0000011c HW_WiFiTransport_Send_pbuf | ||
2356 | -0801eee0 g F .text 00000026 ap_for_each_sta | ||
2357 | -0800da40 g F .text 0000000c LwIP_PeriodicEventStart | ||
2358 | -08017a40 g F .text 00000004 os_get_time | ||
2359 | -08048e30 g F .text 00000024 eap_peer_tls_build_ack | ||
2360 | -08041070 g F .text 00000068 wps_build_model_name | ||
2361 | -0801a8f0 g F .text 00000094 wps_registrar_deinit | ||
2362 | -08032a30 g F .text 0000000a eapol_sm_notify_portControl | ||
2363 | -08008df0 g F .text 00000552 __gethex | ||
2364 | -08049010 g F .text 00000012 eap_peer_tls_reset_output | ||
2365 | -080657d0 g O .text 00000010 tcp_pcb_lists | ||
2366 | -0803fc10 g F .text 00000040 wps_build_uuid_e | ||
2367 | -080080f4 g F .text 000009da __ssvfiscanf_r | ||
2368 | -0800ac00 g F .text 0000001e chEvtRegisterMask | ||
2369 | -080004e0 g F .text 00000064 _puts_r | ||
2370 | -08041570 g F .text 00000026 wps_process_os_version | ||
2371 | -08026e30 g F .text 0000000a RCC_HSICmd | ||
2372 | -20001448 g O .bss 00000001 connected | ||
2373 | -0802b2d0 g F .text 00000014 tcp_close | ||
2374 | -08065990 g O .text 00000006 ethbroadcast | ||
2375 | -0800d1f0 g F .text 0000001e Transport_TargetWakeup | ||
2376 | -08027220 g F .text 00000014 RTC_ClearITPendingBit | ||
2377 | -08020180 g F .text 00000024 ieee802_1x_abort_auth | ||
2378 | -200029b4 g O .bss 0000000c softap_TIM_updated_sem | ||
2379 | -0800b240 g F .text 00000028 initLibwismart | ||
2380 | -08026160 g F .text 00000046 pmksa_cache_to_eapol_data | ||
2381 | -20001580 g O .bss 000001cc _wismart_hw | ||
2382 | -0802ec50 g F .text 000000f0 base64_decode | ||
2383 | -0803b0e0 g F .text 0000000e tlsv1_client_set_time_checks | ||
2384 | -08026290 g F .text 00000052 pmksa_cache_auth_get | ||
2385 | -08011ce0 g F .text 000000bc WiFi_RxQueues_Init | ||
2386 | -080153e0 g F .text 000001b8 _HW_WiFiTransport_ReadCMD53 | 2342 | +08015150 g F .text 0000011c HW_WiFiTransport_Send_pbuf |
2343 | +0801ec90 g F .text 00000026 ap_for_each_sta | ||
2344 | +0800d940 g F .text 0000000c LwIP_PeriodicEventStart | ||
2345 | +080177f0 g F .text 00000004 os_get_time | ||
2346 | +08048cc0 g F .text 00000024 eap_peer_tls_build_ack | ||
2347 | +08040f00 g F .text 00000068 wps_build_model_name | ||
2348 | +0801a6a0 g F .text 00000094 wps_registrar_deinit | ||
2349 | +080328c0 g F .text 0000000a eapol_sm_notify_portControl | ||
2350 | +08008e70 g F .text 00000552 __gethex | ||
2351 | +08048ea0 g F .text 00000012 eap_peer_tls_reset_output | ||
2352 | +08065790 g O .text 00000010 tcp_pcb_lists | ||
2353 | +0803faa0 g F .text 00000040 wps_build_uuid_e | ||
2354 | +08008174 g F .text 000009da __ssvfiscanf_r | ||
2355 | +0800ac80 g F .text 0000001e chEvtRegisterMask | ||
2356 | +08000560 g F .text 00000064 _puts_r | ||
2357 | +08041400 g F .text 00000026 wps_process_os_version | ||
2358 | +08026be0 g F .text 0000000a RCC_HSICmd | ||
2359 | +20001420 g O .bss 00000001 connected | ||
2360 | +0802b1b0 g F .text 00000014 tcp_close | ||
2361 | +08065950 g O .text 00000006 ethbroadcast | ||
2362 | +0800d0f0 g F .text 0000001e Transport_TargetWakeup | ||
2363 | +08026fd0 g F .text 00000014 RTC_ClearITPendingBit | ||
2364 | +0801ff30 g F .text 00000024 ieee802_1x_abort_auth | ||
2365 | +20002894 g O .bss 0000000c softap_TIM_updated_sem | ||
2366 | +0800b2c0 g F .text 00000028 initLibwismart | ||
2367 | +08025f10 g F .text 00000046 pmksa_cache_to_eapol_data | ||
2368 | +20001460 g O .bss 000001cc _wismart_hw | ||
2369 | +0802eae0 g F .text 000000f0 base64_decode | ||
2370 | +0803af70 g F .text 0000000e tlsv1_client_set_time_checks | ||
2371 | +08026040 g F .text 00000052 pmksa_cache_auth_get | ||
2372 | +08011bf0 g F .text 000000bc WiFi_RxQueues_Init | ||
2373 | +080152f0 g F .text 000001b8 _HW_WiFiTransport_ReadCMD53 | ||
2387 | 20001184 g O .data 00000004 rate_htmask | 2374 | 20001184 g O .data 00000004 rate_htmask |
2388 | -08029800 g F .text 000000b8 dhcp_release | ||
2389 | -0801e740 g F .text 00000038 hostapd_deinit_wpa | ||
2390 | -0800a180 w F .text 00000002 __early_init | ||
2391 | -08016f90 g F .text 00000288 NataliaEngine_AddKey_Client | ||
2392 | -08031ce0 g F .text 0000001a eap_invalidate_cached_session | ||
2393 | -2000d1e5 g O .bss 00000001 pbuf_free_ooseq_pending | ||
2394 | -080058fc g F .text 00000068 mbrtowc | ||
2395 | -200047a4 g O .bss 00000004 dlm_mib_table_rootentries | ||
2396 | -0800a310 g F .text 0000000c PendSVVector | ||
2397 | -0803fd90 g F .text 000000dc wps_build_wfa_ext | ||
2398 | -0803ade0 g F .text 0000004e tlsv1_client_init | ||
2399 | -0802b270 g F .text 00000056 tcp_shutdown | ||
2400 | -2000d4f4 g O .bss 00000004 wpa_debug_timestamp | ||
2401 | -08025b10 g F .text 000003b4 wpa_validate_wpa_ie | ||
2402 | -080213c0 g F .text 00000004 hostapd_acl_init | ||
2403 | -0800c040 g F .text 00000022 libwismart_Reboot | ||
2404 | -080123f0 g F .text 0000007c wifi_PsDisableRF | ||
2405 | -080658f0 g O .text 00000007 tcp_persist_backoff | ||
2406 | -08037ef0 g F .text 0000007e rsn_preauth_scan_result | ||
2407 | -08038220 g F .text 000001fc wpa_supplicant_req_sched_scan | ||
2408 | -2000d538 g O .bss 00000100 __hexdig | ||
2409 | -08013920 g F .text 00000002 libwismart_DebugPin_Init | ||
2410 | -080219a0 g F .text 00000034 hostapd_drv_set_key | ||
2411 | -200029c8 g O .bss 00000014 bcast_queue | ||
2412 | -08009a44 g F .text 00000022 __aeabi_i2d | ||
2413 | -08030900 g F .text 00000086 eap_hdr_validate | ||
2414 | -0801ef40 g F .text 00000004 ap_sta_bind_vlan | ||
2415 | -08037440 g F .text 0000000c wpas_notify_network_removed | ||
2416 | -080216d0 g F .text 0000005a hostapd_set_drv_ieee8021x | ||
2417 | -0804bfa0 g F .text 0000001e bignum_exptmod | ||
2418 | -080261b0 g F .text 0000008a pmksa_cache_add_okc | ||
2419 | -08031bd0 g F .text 0000001a eap_get_config_new_password | ||
2420 | -08026240 g F .text 00000048 pmksa_cache_auth_deinit | ||
2421 | -0800c070 g F .text 0000000c libwismart_RegisterDhcpCB | ||
2422 | -08021960 g F .text 0000001a hostapd_driver_commit | ||
2423 | -080206e0 g F .text 0000001e eapol_auth_step | ||
2424 | -08020390 g F .text 00000014 ieee802_1x_notify_port_enabled | ||
2425 | -08027090 g F .text 00000030 RCC_GetFlagStatus | ||
2426 | -0802edb0 g F .text 00000040 wpa_blacklist_del | ||
2427 | -20004bd4 g O .bss 0000002c dhcp_rx_options_val | ||
2428 | -0802c3a0 g F .text 000000b4 udp_bind | ||
2429 | -0802e5d0 g F .text 00000004 sys_arch_unprotect | ||
2430 | -0802bad0 g F .text 00000046 tcp_send_fin | ||
2431 | -0801b950 g F .text 0000004a wps_registrar_unlock_pin | ||
2432 | -0803a7e0 g F .text 00000020 tls_connection_prf | ||
2433 | -08051150 g O .text 000001cc libwismart_default_hwif | ||
2434 | -080307c0 g F .text 000000b2 dh_init | ||
2435 | -08016d40 g F .text 00000078 NataliaEngine_SetProtectionReq | ||
2436 | -0802e5b0 g F .text 00000006 sys_mbox_set_invalid | ||
2437 | -0800b1a0 g F .text 00000010 evtStop | ||
2438 | -0802a8c0 g F .text 0000000a raw_connect | ||
2439 | -0802e740 g F .text 0000002e libwismart_PBufQueue_GetLast | ||
2440 | -08027000 g F .text 0000001a RCC_AHBPeriphClockCmd | ||
2441 | -08019940 g F .text 00000032 wps_is_selected_pin_registrar | ||
2442 | -0800a2d0 w F .text 00000010 Vector11C | ||
2443 | -08031ca0 g F .text 00000010 eap_get_eapRespData | ||
2444 | -0802ef90 g F .text 000000ca wpa_bss_update_end | ||
2445 | -08001004 g F .text 00000008 __sclose | ||
2446 | -08026be0 g F .text 00000076 GPIO_PinRemapConfig | ||
2447 | -08019900 g F .text 0000000c wps_get_msg | ||
2448 | -08046a60 g F .text 00000004 crypto_private_key_free | ||
2449 | -08021770 g F .text 0000001a hostapd_set_privacy | ||
2450 | -080319e0 g F .text 0000002c eap_sm_abort | ||
2451 | -08026db0 g F .text 00000040 RCC_DeInit | ||
2452 | -0803fd60 g F .text 0000002e wps_build_version | ||
2453 | -0802e4c0 g F .text 0000002c sys_arch_sem_wait | ||
2454 | -08017a20 g F .text 0000001c os_sleep | ||
2455 | -2000d500 g O .bss 00000004 auth_retries | ||
2456 | -08027940 g F .text 00000014 USART_DMACmd | ||
2457 | -080159c0 g F .text 0000004e registrySetValue | ||
2458 | -0802a0d0 g F .text 00000064 netif_set_ipaddr | ||
2459 | -0802ea20 g F .text 0000003c EE_Format_ | ||
2460 | -0800a2d0 w F .text 00000010 VectorD8 | ||
2461 | -0802e1e0 g F .text 000001c8 ethernet_input | ||
2462 | -080361d0 g F .text 0000001c l2_packet_deinit | ||
2463 | -0801d010 g F .text 0000007c wpas_wps_ssid_bss_match | ||
2464 | -0800a2d0 w F .text 00000010 Vector8C | ||
2465 | -0800a2d0 w F .text 00000010 Vector6C | ||
2466 | -080267a0 g F .text 00000012 DMA_ClearITPendingBit | ||
2467 | -0800b9f0 g F .text 00000114 prepare_observation | ||
2468 | -0800ce20 g F .text 00000054 libwismart_PowerSave_ReqResource | ||
2469 | -0801e620 g F .text 00000120 hostapd_setup_wpa | ||
2470 | -0801d1c0 g F .text 0000005e wpas_wps_notify_scan_results | ||
2471 | -08016ab0 g F .text 00000068 wpa_driver_WE_scan2 | ||
2472 | -0800c860 g F .text 0000000e clear_scan_runs | ||
2473 | -08026f00 g F .text 00000020 RCC_LSEConfig | ||
2474 | -0800d8a0 g F .text 0000000c libwismart_LwIP_lock | ||
2475 | -0800b200 g F .text 0000000e VectorD4 | ||
2476 | -080234b0 g F .text 000000b4 hostapd_deinit_wps | ||
2477 | -08016200 g F .text 00000024 hex2byte | ||
2478 | -08040830 g F .text 0000009a wps_process_cred | ||
2479 | -080132c0 g F .text 00000042 RegisterMIBTable | ||
2480 | -08022a40 g F .text 0000002c eap_server_unregister_methods | ||
2481 | -0802e550 g F .text 00000018 sys_mbox_trypost | ||
2482 | -08030b80 g F .text 0000002c eap_peer_unregister_methods | ||
2483 | -08031a50 g F .text 00000002 eap_sm_request_identity | ||
2484 | -080213d0 g F .text 0000001e hostapd_acl_deinit | ||
2485 | -08014220 g F .text 00000018 HW_GPIOS_Wifi_1_2v | ||
2486 | -08013310 g F .text 000001e8 wei_get_mib_object | ||
2487 | -0800add0 g F .text 00000038 chMBFetchS | ||
2488 | -08026780 g F .text 0000001a DMA_GetITStatus | ||
2489 | -0800fb90 g F .text 000002a8 WiFi_Init | ||
2490 | -2000d4f8 g O .bss 00000004 wpa_debug_level | ||
2491 | -08032c50 g F .text 00000090 eapol_sm_init | ||
2492 | -08028300 g F .text 00000098 do_newconn | ||
2493 | -08021830 g F .text 0000001c hostapd_if_remove | ||
2494 | -0800a3d0 g F .text 00000012 SysTickVector | ||
2495 | -08036ca0 g F .text 00000034 mschapv2_remove_domain | 2375 | +080296e0 g F .text 000000b8 dhcp_release |
2376 | +0801e4f0 g F .text 00000038 hostapd_deinit_wpa | ||
2377 | +0800a200 w F .text 00000002 __early_init | ||
2378 | +08016d40 g F .text 00000288 NataliaEngine_AddKey_Client | ||
2379 | +08031b70 g F .text 0000001a eap_invalidate_cached_session | ||
2380 | +2000d0d1 g O .bss 00000001 pbuf_free_ooseq_pending | ||
2381 | +0800597c g F .text 00000068 mbrtowc | ||
2382 | +20004684 g O .bss 00000004 dlm_mib_table_rootentries | ||
2383 | +0800a390 g F .text 0000000c PendSVVector | ||
2384 | +0803fc20 g F .text 000000dc wps_build_wfa_ext | ||
2385 | +0803ac70 g F .text 0000004e tlsv1_client_init | ||
2386 | +0802b150 g F .text 00000056 tcp_shutdown | ||
2387 | +2000d3dc g O .bss 00000004 wpa_debug_timestamp | ||
2388 | +080258c0 g F .text 000003b4 wpa_validate_wpa_ie | ||
2389 | +08021170 g F .text 00000004 hostapd_acl_init | ||
2390 | +0800bf40 g F .text 00000022 libwismart_Reboot | ||
2391 | +08012300 g F .text 0000007c wifi_PsDisableRF | ||
2392 | +080658b0 g O .text 00000007 tcp_persist_backoff | ||
2393 | +08037d80 g F .text 0000007e rsn_preauth_scan_result | ||
2394 | +080380b0 g F .text 000001fc wpa_supplicant_req_sched_scan | ||
2395 | +2000d420 g O .bss 00000100 __hexdig | ||
2396 | +08013830 g F .text 00000002 libwismart_DebugPin_Init | ||
2397 | +08021750 g F .text 00000034 hostapd_drv_set_key | ||
2398 | +200028a8 g O .bss 00000014 bcast_queue | ||
2399 | +08009ac4 g F .text 00000022 __aeabi_i2d | ||
2400 | +08030790 g F .text 00000086 eap_hdr_validate | ||
2401 | +0801ecf0 g F .text 00000004 ap_sta_bind_vlan | ||
2402 | +080372d0 g F .text 0000000c wpas_notify_network_removed | ||
2403 | +08021480 g F .text 0000005a hostapd_set_drv_ieee8021x | ||
2404 | +0804be30 g F .text 0000001e bignum_exptmod | ||
2405 | +08025f60 g F .text 0000008a pmksa_cache_add_okc | ||
2406 | +08031a60 g F .text 0000001a eap_get_config_new_password | ||
2407 | +08025ff0 g F .text 00000048 pmksa_cache_auth_deinit | ||
2408 | +0800bf70 g F .text 0000000c libwismart_RegisterDhcpCB | ||
2409 | +08021710 g F .text 0000001a hostapd_driver_commit | ||
2410 | +08020490 g F .text 0000001e eapol_auth_step | ||
2411 | +08020140 g F .text 00000014 ieee802_1x_notify_port_enabled | ||
2412 | +08026e40 g F .text 00000030 RCC_GetFlagStatus | ||
2413 | +0802ec40 g F .text 00000040 wpa_blacklist_del | ||
2414 | +20004ac0 g O .bss 0000002c dhcp_rx_options_val | ||
2415 | +0802c280 g F .text 000000b4 udp_bind | ||
2416 | +0802e5a0 g F .text 00000004 sys_arch_unprotect | ||
2417 | +0802b9b0 g F .text 00000046 tcp_send_fin | ||
2418 | +0801b700 g F .text 0000004a wps_registrar_unlock_pin | ||
2419 | +0803a670 g F .text 00000020 tls_connection_prf | ||
2420 | +080510f0 g O .text 000001cc libwismart_default_hwif | ||
2421 | +08030650 g F .text 000000b2 dh_init | ||
2422 | +08016af0 g F .text 00000078 NataliaEngine_SetProtectionReq | ||
2423 | +0802e550 g F .text 00000006 sys_mbox_set_invalid | ||
2424 | +0800b220 g F .text 00000010 evtStop | ||
2425 | +0802a7a0 g F .text 0000000a raw_connect | ||
2426 | +0802e710 g F .text 0000002e libwismart_PBufQueue_GetLast | ||
2427 | +08026db0 g F .text 0000001a RCC_AHBPeriphClockCmd | ||
2428 | +080196f0 g F .text 00000032 wps_is_selected_pin_registrar | ||
2429 | +0800a350 w F .text 00000010 Vector11C | ||
2430 | +08031b30 g F .text 00000010 eap_get_eapRespData | ||
2431 | +0802ee20 g F .text 000000ca wpa_bss_update_end | ||
2432 | +08001084 g F .text 00000008 __sclose | ||
2433 | +08026990 g F .text 00000076 GPIO_PinRemapConfig | ||
2434 | +080196b0 g F .text 0000000c wps_get_msg | ||
2435 | +080468f0 g F .text 00000004 crypto_private_key_free | ||
2436 | +08021520 g F .text 0000001a hostapd_set_privacy | ||
2437 | +08031870 g F .text 0000002c eap_sm_abort | ||
2438 | +08026b60 g F .text 00000040 RCC_DeInit | ||
2439 | +0803fbf0 g F .text 0000002e wps_build_version | ||
2440 | +0802e460 g F .text 0000002c sys_arch_sem_wait | ||
2441 | +080177d0 g F .text 0000001c os_sleep | ||
2442 | +2000d3e8 g O .bss 00000004 auth_retries | ||
2443 | +080276f0 g F .text 00000014 USART_DMACmd | ||
2444 | +08029fb0 g F .text 00000064 netif_set_ipaddr | ||
2445 | +0802e8b0 g F .text 0000003c EE_Format_ | ||
2446 | +0800a350 w F .text 00000010 VectorD8 | ||
2447 | +0802e180 g F .text 000001c8 ethernet_input | ||
2448 | +08036060 g F .text 0000001c l2_packet_deinit | ||
2449 | +0801cdc0 g F .text 0000007c wpas_wps_ssid_bss_match | ||
2450 | +0800a350 w F .text 00000010 Vector8C | ||
2451 | +0800a350 w F .text 00000010 Vector6C | ||
2452 | +08026550 g F .text 00000012 DMA_ClearITPendingBit | ||
2453 | +0800b880 g F .text 00000114 prepare_observation | ||
2454 | +0800cd20 g F .text 00000054 libwismart_PowerSave_ReqResource | ||
2455 | +0801e3d0 g F .text 00000120 hostapd_setup_wpa | ||
2456 | +0801cf70 g F .text 0000005e wpas_wps_notify_scan_results | ||
2457 | +08016860 g F .text 00000068 wpa_driver_WE_scan2 | ||
2458 | +0800c760 g F .text 0000000e clear_scan_runs | ||
2459 | +08026cb0 g F .text 00000020 RCC_LSEConfig | ||
2460 | +0800d7a0 g F .text 0000000c libwismart_LwIP_lock | ||
2461 | +0800b280 g F .text 0000000e VectorD4 | ||
2462 | +08023260 g F .text 000000b4 hostapd_deinit_wps | ||
2463 | +08015fb0 g F .text 00000024 hex2byte | ||
2464 | +080406c0 g F .text 0000009a wps_process_cred | ||
2465 | +080131d0 g F .text 00000042 RegisterMIBTable | ||
2466 | +080227f0 g F .text 0000002c eap_server_unregister_methods | ||
2467 | +0802e4f0 g F .text 00000018 sys_mbox_trypost | ||
2468 | +08030a10 g F .text 0000002c eap_peer_unregister_methods | ||
2469 | +080318e0 g F .text 00000002 eap_sm_request_identity | ||
2470 | +08021180 g F .text 0000001e hostapd_acl_deinit | ||
2471 | +08014130 g F .text 00000018 HW_GPIOS_Wifi_1_2v | ||
2472 | +08013220 g F .text 000001e8 wei_get_mib_object | ||
2473 | +0800ae50 g F .text 00000038 chMBFetchS | ||
2474 | +08026530 g F .text 0000001a DMA_GetITStatus | ||
2475 | +0800faa0 g F .text 000002a8 WiFi_Init | ||
2476 | +2000d3e0 g O .bss 00000004 wpa_debug_level | ||
2477 | +08032ae0 g F .text 00000090 eapol_sm_init | ||
2478 | +080280b0 g F .text 00000098 do_newconn | ||
2479 | +080215e0 g F .text 0000001c hostapd_if_remove | ||
2480 | +0800a450 g F .text 00000012 SysTickVector | ||
2481 | +08036b30 g F .text 00000034 mschapv2_remove_domain | ||
2496 | 08000130 g startup 00000000 __init_array_start | 2482 | 08000130 g startup 00000000 __init_array_start |
2497 | -080217f0 g F .text 00000034 hostapd_if_add | ||
2498 | -08048d90 g F .text 000000a0 eap_peer_tls_derive_key | ||
2499 | -0800a360 g F .text 00000070 _port_irq_epilogue | ||
2500 | -0800b120 g F .text 0000000a _calloc_r | ||
2501 | -08003ea8 g F .text 00000024 vsnprintf | ||
2502 | -08011c50 g F .text 0000000c wifi_ConnectedBssIsAvailable | ||
2503 | -08021fe0 g F .text 0000008a eap_sm_process_nak | ||
2504 | -08031050 g F .text 00000068 eap_peer_sm_init | ||
2505 | -08041470 g F .text 000000f6 wps_process_device_attrs | ||
2506 | -080310c0 g F .text 00000918 eap_peer_sm_step | ||
2507 | -08030500 g F .text 00000060 wpa_config_set | 2483 | +080215a0 g F .text 00000034 hostapd_if_add |
2484 | +08048c20 g F .text 000000a0 eap_peer_tls_derive_key | ||
2485 | +0800a3e0 g F .text 00000070 _port_irq_epilogue | ||
2486 | +0800b1a0 g F .text 0000000a _calloc_r | ||
2487 | +08003f28 g F .text 00000024 vsnprintf | ||
2488 | +08011b60 g F .text 0000000c wifi_ConnectedBssIsAvailable | ||
2489 | +08021d90 g F .text 0000008a eap_sm_process_nak | ||
2490 | +08030ee0 g F .text 00000068 eap_peer_sm_init | ||
2491 | +08041300 g F .text 000000f6 wps_process_device_attrs | ||
2492 | +08030f50 g F .text 00000918 eap_peer_sm_step | ||
2493 | +08030390 g F .text 00000060 wpa_config_set | ||
2508 | 20000c00 g O .data 00000004 __ctype_ptr__ | 2494 | 20000c00 g O .data 00000004 __ctype_ptr__ |
2509 | -0801ed20 g F .text 00000042 hostapd_get_psk | ||
2510 | -08010a10 g F .text 0000000c WiFi_GetMode | ||
2511 | -08030560 g F .text 00000026 wpa_config_update_psk | ||
2512 | -08032a80 g F .text 0000000e eapol_sm_notify_eap_fail | ||
2513 | -0803b000 g F .text 00000058 tlsv1_client_shutdown | ||
2514 | -08037c90 g F .text 000000ea rsn_preauth_candidate_process | ||
2515 | -08005720 g F .text 00000040 _setlocale_r | ||
2516 | -08026e40 g F .text 00000016 RCC_PLLConfig | ||
2517 | -080160c0 g F .text 00000028 HW_DebugTrace_TXDMA_IRQHandler | ||
2518 | -08040ba0 g F .text 0000006e wps_derive_psk | ||
2519 | -0802a260 g F .text 0000005e netif_set_link_up | ||
2520 | -080471e0 g F .text 0000004c eap_peer_md5_register | ||
2521 | -08027160 g F .text 00000016 RTC_WaitForLastTask | ||
2522 | -0801f5a0 g F .text 000000d4 ap_sta_add | ||
2523 | -20004bc4 g O .bss 0000000b dhcp_rx_options_given | ||
2524 | -0800f650 g F .text 00000144 wei_handle_mlme_p2p_frame_ind | ||
2525 | -0803d9d0 g F .text 00000220 wpa_supplicant_parse_ies | ||
2526 | -20004538 g O .bss 00000230 wa_cmd_flow_check_thread | ||
2527 | -0801b900 g F .text 00000046 wps_registrar_invalidate_pin | ||
2528 | -08013860 g F .text 00000020 wifi_roam_complete | ||
2529 | -080272c0 g F .text 00000018 SDIO_SetPowerState | ||
2530 | -0803c9e0 g F .text 00000062 tlsv1_set_private_key | ||
2531 | -08013d60 g F .text 00000030 libwismart_ElapsedTime | ||
2532 | -08040e40 g F .text 00000104 wps_config_methods_str2bin | ||
2533 | -08028650 g F .text 0000000a lwip_htons | ||
2534 | -0803f210 g F .text 0000004e wpa_sm_set_ap_rsn_ie | ||
2535 | -20001780 g O .bss 00000004 wifi_connect_cb | ||
2536 | -0800cfb0 g F .text 00000024 libwismart_UART_IRQHandler | ||
2537 | -0801d350 g F .text 00000600 wpa_supplicant_create_ap | ||
2538 | -08043db0 g F .text 00000070 hostapd_probe_req_rx | ||
2539 | -0802a610 g F .text 0000004c pbuf_cat | ||
2540 | -0800d020 g F .text 00000078 Transport_DownloadFW | ||
2541 | -20004924 g O .bss 0000001e registryFileOpened | ||
2542 | -0800a2d0 w F .text 00000010 VectorDC | ||
2543 | -0802d350 g F .text 00000030 ip4_addr_isbroadcast | ||
2544 | -08026bc0 g F .text 00000004 GPIO_SetBits | ||
2545 | -0803c9c0 g F .text 00000020 tlsv1_set_cert | ||
2546 | -080272e0 g F .text 0000001a SDIO_ITConfig | ||
2547 | -080306d0 g F .text 00000014 wpa_config_set_blob | ||
2548 | -0804bd60 g F .text 00000092 bignum_get_unsigned_bin | ||
2549 | -0800b870 g F .text 0000012c send_json | ||
2550 | -08029960 g F .text 00000048 dhcp_stop | ||
2551 | -08005cb4 g F .text 0000013a __multiply | ||
2552 | -08030770 g F .text 0000001a dh5_derive_shared | ||
2553 | -08005df0 g F .text 00000094 __pow5mult | ||
2554 | -0804a510 g F .text 0000020c sha256_vector | ||
2555 | -08045cf0 g F .text 00000022 aes_encrypt_init | ||
2556 | -08040000 g F .text 00000032 wps_build_assoc_state | ||
2557 | -080129e0 g F .text 00000078 wifi_multicast_update_fw | ||
2558 | -20001430 g O .bss 0000000d net_key | ||
2559 | -0800c1b0 g F .text 0000000c libwismart_isRoamingEnabled | ||
2560 | -080162e0 g F .text 00000042 wpa_get_ntp_timestamp | ||
2561 | -0803a740 g F .text 00000086 tls_connection_set_params | ||
2562 | -0800de30 g F .text 00000022 LwIP_StartDHCPServer | ||
2563 | -08037510 g F .text 00000036 wpas_notify_certification | ||
2564 | -080373e0 g F .text 00000004 wpas_notify_scan_results | ||
2565 | -080277e0 g F .text 00000008 TIM_ClearITPendingBit | ||
2566 | -08015660 g F .text 00000030 libwismart_WiFi_IRQHandler | ||
2567 | -08012600 g F .text 000000ac wifi_cmds_flow_init | ||
2568 | -08045f10 g F .text 000000ca asn1_get_next | ||
2569 | -0803f0a0 g F .text 00000074 wpa_sm_set_param | ||
2570 | -080415c0 g F .text 00000030 wps_device_data_free | ||
2571 | -08049ac0 g F .text 0000011c md4_vector | ||
2572 | -0802e690 g F .text 0000004a libwismart_PBufQueue_Init | ||
2573 | -0801aa30 g F .text 000000e0 wps_registrar_probe_req_rx | ||
2574 | -0801dcc0 g F .text 0000034c hostapd_setup_interface_complete | ||
2575 | -0800a2d0 w F .text 00000010 Vector110 | ||
2576 | -08023cc0 g F .text 000000d4 wpa_auth_init | ||
2577 | -080323e0 g F .text 0000053c eapol_sm_step | ||
2578 | -0803fb70 g F .text 00000030 wps_build_req_type | ||
2579 | -0800a780 g F .text 00000068 chThdCreateI | ||
2580 | -0800a860 g F .text 00000040 chThdExitS | ||
2581 | -08025730 g F .text 00000008 wpa_auth_sta_get_pmksa | ||
2582 | -0803a990 g F .text 0000002c tlsv1_client_free_dh | ||
2583 | -08000c28 g F .text 00000056 _raise_r | ||
2584 | -08037ac0 g F .text 00000032 pmksa_candidate_free | ||
2585 | -200014ec g O .bss 00000001 timeout | ||
2586 | -08041610 g F .text 0000081c wps_enrollee_get_msg | ||
2587 | -08015cb0 g F .text 000000d4 libwismart_ProfileGet_Int | ||
2588 | -08026760 g F .text 00000012 DMA_ClearFlag | ||
2589 | -0802daa0 g F .text 0000013e ip_frag | ||
2590 | -0800a730 g F .text 00000042 _thread_init | ||
2591 | -08045890 g F .text 00000016 aes_decrypt_deinit | ||
2592 | -0800a2d0 w F .text 00000010 Vector118 | ||
2593 | -08016b80 g F .text 00000004 wpa_driver_WE_p2p_group_formation_failed | ||
2594 | -08022150 g F .text 000000f0 eap_server_sm_init | ||
2595 | -08028670 g F .text 00000004 lwip_htonl | ||
2596 | -0803e3b0 g F .text 0000001c wpa_sm_set_pmk_from_pmksa | ||
2597 | -08013880 g F .text 0000000c wifi_roam_get_state | ||
2598 | -20001550 g O .bss 00000004 snr_cb | ||
2599 | -0800ce80 g F .text 0000004a libwismart_PowerSave_RelResource | ||
2600 | -08009510 g F .text 0000025c __udivsi3 | ||
2601 | -0800b1c0 g F .text 00000010 MemManageVector | ||
2602 | -08013c70 g F .text 0000005c libwismart_LinkList_FindAndRemove | ||
2603 | -08000cf4 g F .text 0000000e _init_signal | ||
2604 | -08017300 g F .text 0000004a NataliaEngine_AddKey | ||
2605 | -0800627c g F .text 00000034 _mprec_log10 | ||
2606 | -0800a2d0 w F .text 00000010 Vector114 | ||
2607 | -0803c3d0 g F .text 00000030 tls_get_cipher_data | ||
2608 | -080375d0 g F .text 00000032 pmksa_cache_get | ||
2609 | -0802e640 g F .text 0000004e libwismart_PBufQueue_Deinit | ||
2610 | -0803d120 g F .text 00000032 wpabuf_dup | ||
2611 | -20002bb5 g O .bss 00000001 DHCP_not_update | ||
2612 | -080126d0 g F .text 00000040 wifi_cmds_flow_mgmt_request | ||
2613 | -0800bdf0 g F .text 00000020 libwismart_Delay_ms | ||
2614 | -08005c44 g F .text 0000005a __lo0bits | ||
2615 | -0800c2c0 g F .text 00000030 libwismart_peripheral_lock | ||
2616 | -08027b20 g F .text 00000050 netconn_connect | ||
2617 | -0800ac20 g F .text 0000001a chEvtUnregister | ||
2618 | -080097a8 g F .text 0000027a __subdf3 | ||
2619 | -08000260 g F .text 00000008 atoi | ||
2620 | -080179f0 g F .text 00000030 wpa_ap_deauth_event | ||
2621 | -08020330 g F .text 0000003c ieee802_1x_deinit | ||
2622 | -08037950 g F .text 00000008 pmksa_cache_get_current | ||
2623 | -08009f48 g F .text 00000082 __ledf2 | ||
2624 | -0800d850 g F .text 0000004e libwismart_LwIP_init | ||
2625 | -0803a6d0 g F .text 0000002c tls_connection_init | ||
2626 | -0802c010 g F .text 00000068 tcp_keepalive | ||
2627 | -200017c0 g O .bss 00000130 _wismart_idle_thread_wa | ||
2628 | -0802d730 g F .text 00000364 ip_reass | ||
2629 | -08030880 g F .text 0000007e dh_derive_shared | ||
2630 | -080097ac g F .text 00000276 __adddf3 | ||
2631 | -08005130 g F .text 0000002c _fflush_r | ||
2632 | -08008040 g F .text 0000003a __ssrefill_r | ||
2633 | -08009d64 g F .text 000001d0 __divdf3 | ||
2634 | -0804bef0 g F .text 00000012 bignum_add | 2495 | +0801ead0 g F .text 00000042 hostapd_get_psk |
2496 | +08010920 g F .text 0000000c WiFi_GetMode | ||
2497 | +080303f0 g F .text 00000026 wpa_config_update_psk | ||
2498 | +08032910 g F .text 0000000e eapol_sm_notify_eap_fail | ||
2499 | +0803ae90 g F .text 00000058 tlsv1_client_shutdown | ||
2500 | +08037b20 g F .text 000000ea rsn_preauth_candidate_process | ||
2501 | +080057a0 g F .text 00000040 _setlocale_r | ||
2502 | +08026bf0 g F .text 00000016 RCC_PLLConfig | ||
2503 | +08015e70 g F .text 00000028 HW_DebugTrace_TXDMA_IRQHandler | ||
2504 | +08040a30 g F .text 0000006e wps_derive_psk | ||
2505 | +0802a140 g F .text 0000005e netif_set_link_up | ||
2506 | +08047070 g F .text 0000004c eap_peer_md5_register | ||
2507 | +08026f10 g F .text 00000016 RTC_WaitForLastTask | ||
2508 | +0801f350 g F .text 000000d4 ap_sta_add | ||
2509 | +20004ab0 g O .bss 0000000b dhcp_rx_options_given | ||
2510 | +0800f560 g F .text 00000144 wei_handle_mlme_p2p_frame_ind | ||
2511 | +0803d860 g F .text 00000220 wpa_supplicant_parse_ies | ||
2512 | +20004418 g O .bss 00000230 wa_cmd_flow_check_thread | ||
2513 | +0801b6b0 g F .text 00000046 wps_registrar_invalidate_pin | ||
2514 | +08013770 g F .text 00000020 wifi_roam_complete | ||
2515 | +08027070 g F .text 00000018 SDIO_SetPowerState | ||
2516 | +0803c870 g F .text 00000062 tlsv1_set_private_key | ||
2517 | +08013c70 g F .text 00000030 libwismart_ElapsedTime | ||
2518 | +08040cd0 g F .text 00000104 wps_config_methods_str2bin | ||
2519 | +08028530 g F .text 0000000a lwip_htons | ||
2520 | +0803f0a0 g F .text 0000004e wpa_sm_set_ap_rsn_ie | ||
2521 | +20001660 g O .bss 00000004 wifi_connect_cb | ||
2522 | +0800ceb0 g F .text 00000024 libwismart_UART_IRQHandler | ||
2523 | +0801d100 g F .text 00000600 wpa_supplicant_create_ap | ||
2524 | +08043c40 g F .text 00000070 hostapd_probe_req_rx | ||
2525 | +0802a4f0 g F .text 0000004c pbuf_cat | ||
2526 | +0800cf20 g F .text 00000078 Transport_DownloadFW | ||
2527 | +20004804 g O .bss 0000001e registryFileOpened | ||
2528 | +0800a350 w F .text 00000010 VectorDC | ||
2529 | +0802d2f0 g F .text 00000030 ip4_addr_isbroadcast | ||
2530 | +08026970 g F .text 00000004 GPIO_SetBits | ||
2531 | +0803c850 g F .text 00000020 tlsv1_set_cert | ||
2532 | +08027090 g F .text 0000001a SDIO_ITConfig | ||
2533 | +08030560 g F .text 00000014 wpa_config_set_blob | ||
2534 | +0804bbf0 g F .text 00000092 bignum_get_unsigned_bin | ||
2535 | +0800b700 g F .text 0000012c send_json | ||
2536 | +08029840 g F .text 00000048 dhcp_stop | ||
2537 | +08005d34 g F .text 0000013a __multiply | ||
2538 | +08030600 g F .text 0000001a dh5_derive_shared | ||
2539 | +08005e70 g F .text 00000094 __pow5mult | ||
2540 | +0804a3a0 g F .text 0000020c sha256_vector | ||
2541 | +08045b80 g F .text 00000022 aes_encrypt_init | ||
2542 | +0803fe90 g F .text 00000032 wps_build_assoc_state | ||
2543 | +080128f0 g F .text 00000078 wifi_multicast_update_fw | ||
2544 | +0800c0b0 g F .text 0000000c libwismart_isRoamingEnabled | ||
2545 | +08016090 g F .text 00000042 wpa_get_ntp_timestamp | ||
2546 | +0803a5d0 g F .text 00000086 tls_connection_set_params | ||
2547 | +0800dd40 g F .text 00000022 LwIP_StartDHCPServer | ||
2548 | +080373a0 g F .text 00000036 wpas_notify_certification | ||
2549 | +08037270 g F .text 00000004 wpas_notify_scan_results | ||
2550 | +0802c650 g F .text 00000048 sys_untimeout | ||
2551 | +08027590 g F .text 00000008 TIM_ClearITPendingBit | ||
2552 | +08015570 g F .text 00000030 libwismart_WiFi_IRQHandler | ||
2553 | +08012510 g F .text 000000ac wifi_cmds_flow_init | ||
2554 | +08045da0 g F .text 000000ca asn1_get_next | ||
2555 | +0803ef30 g F .text 00000074 wpa_sm_set_param | ||
2556 | +08041450 g F .text 00000030 wps_device_data_free | ||
2557 | +08049950 g F .text 0000011c md4_vector | ||
2558 | +0802e660 g F .text 0000004a libwismart_PBufQueue_Init | ||
2559 | +0801a7e0 g F .text 000000e0 wps_registrar_probe_req_rx | ||
2560 | +0801da70 g F .text 0000034c hostapd_setup_interface_complete | ||
2561 | +0800a350 w F .text 00000010 Vector110 | ||
2562 | +08023a70 g F .text 000000d4 wpa_auth_init | ||
2563 | +08032270 g F .text 0000053c eapol_sm_step | ||
2564 | +0803fa00 g F .text 00000030 wps_build_req_type | ||
2565 | +0800a800 g F .text 00000068 chThdCreateI | ||
2566 | +0800a8e0 g F .text 00000040 chThdExitS | ||
2567 | +080254e0 g F .text 00000008 wpa_auth_sta_get_pmksa | ||
2568 | +0803a820 g F .text 0000002c tlsv1_client_free_dh | ||
2569 | +08000ca8 g F .text 00000056 _raise_r | ||
2570 | +08037950 g F .text 00000032 pmksa_candidate_free | ||
2571 | +20001421 g O .bss 00000001 timeout | ||
2572 | +080414a0 g F .text 0000081c wps_enrollee_get_msg | ||
2573 | +08015b30 g F .text 000000d4 libwismart_ProfileGet_Int | ||
2574 | +08026510 g F .text 00000012 DMA_ClearFlag | ||
2575 | +0802da40 g F .text 0000013e ip_frag | ||
2576 | +0800a7b0 g F .text 00000042 _thread_init | ||
2577 | +08045720 g F .text 00000016 aes_decrypt_deinit | ||
2578 | +0800a350 w F .text 00000010 Vector118 | ||
2579 | +08016930 g F .text 00000004 wpa_driver_WE_p2p_group_formation_failed | ||
2580 | +08021f00 g F .text 000000f0 eap_server_sm_init | ||
2581 | +08028550 g F .text 00000004 lwip_htonl | ||
2582 | +0803e240 g F .text 0000001c wpa_sm_set_pmk_from_pmksa | ||
2583 | +08013790 g F .text 0000000c wifi_roam_get_state | ||
2584 | +20001430 g O .bss 00000004 snr_cb | ||
2585 | +0800cd80 g F .text 0000004a libwismart_PowerSave_RelResource | ||
2586 | +08009590 g F .text 0000025c __udivsi3 | ||
2587 | +0800b240 g F .text 00000010 MemManageVector | ||
2588 | +08013b80 g F .text 0000005c libwismart_LinkList_FindAndRemove | ||
2589 | +08000d74 g F .text 0000000e _init_signal | ||
2590 | +080170b0 g F .text 0000004a NataliaEngine_AddKey | ||
2591 | +080062fc g F .text 00000034 _mprec_log10 | ||
2592 | +0800a350 w F .text 00000010 Vector114 | ||
2593 | +0803c260 g F .text 00000030 tls_get_cipher_data | ||
2594 | +08037460 g F .text 00000032 pmksa_cache_get | ||
2595 | +0802e610 g F .text 0000004e libwismart_PBufQueue_Deinit | ||
2596 | +0803cfb0 g F .text 00000032 wpabuf_dup | ||
2597 | +20002a95 g O .bss 00000001 DHCP_not_update | ||
2598 | +080125e0 g F .text 00000040 wifi_cmds_flow_mgmt_request | ||
2599 | +0800bcf0 g F .text 00000020 libwismart_Delay_ms | ||
2600 | +08005cc4 g F .text 0000005a __lo0bits | ||
2601 | +0800c1c0 g F .text 00000030 libwismart_peripheral_lock | ||
2602 | +080278d0 g F .text 00000050 netconn_connect | ||
2603 | +0800aca0 g F .text 0000001a chEvtUnregister | ||
2604 | +08009828 g F .text 0000027a __subdf3 | ||
2605 | +080002e0 g F .text 00000008 atoi | ||
2606 | +080177a0 g F .text 00000030 wpa_ap_deauth_event | ||
2607 | +080200e0 g F .text 0000003c ieee802_1x_deinit | ||
2608 | +080377e0 g F .text 00000008 pmksa_cache_get_current | ||
2609 | +08009fc8 g F .text 00000082 __ledf2 | ||
2610 | +0800d750 g F .text 0000004e libwismart_LwIP_init | ||
2611 | +0803a560 g F .text 0000002c tls_connection_init | ||
2612 | +0802bef0 g F .text 00000068 tcp_keepalive | ||
2613 | +200016a0 g O .bss 00000130 _wismart_idle_thread_wa | ||
2614 | +0802d6d0 g F .text 00000364 ip_reass | ||
2615 | +08030710 g F .text 0000007e dh_derive_shared | ||
2616 | +0800982c g F .text 00000276 __adddf3 | ||
2617 | +080051b0 g F .text 0000002c _fflush_r | ||
2618 | +080080c0 g F .text 0000003a __ssrefill_r | ||
2619 | +08009de4 g F .text 000001d0 __divdf3 | ||
2620 | +0804bd80 g F .text 00000012 bignum_add | ||
2635 | 20001380 g .bss 00000000 _bss_start | 2621 | 20001380 g .bss 00000000 _bss_start |
2636 | -0800ebf0 g F .text 00000030 WiFi_Client_Find | ||
2637 | -0803cb00 g F .text 00000062 tlsv1_record_change_write_cipher | ||
2638 | -08008c34 g F .text 00000012 ungetc | ||
2639 | -0801e1d0 g F .text 0000002c hostapd_alloc_bss_data | ||
2640 | -080217d0 g F .text 0000001a hostapd_set_ssid | ||
2641 | -080059d0 g F .text 00000092 memchr | ||
2642 | -08027780 g F .text 0000001a TIM_Cmd | ||
2643 | -0802a440 g F .text 0000003e pbuf_realloc | ||
2644 | -08015920 g F .text 00000012 registryGetAddressContents | ||
2645 | -08026d90 g F .text 00000012 PWR_ClearFlag | ||
2646 | -08027240 g F .text 00000026 SDIO_DeInit | ||
2647 | -08013d00 g F .text 00000018 libwismart_LinkList_Count | ||
2648 | -20002560 g O .bss 00000004 RoamTimer | ||
2649 | -200014ac g O .bss 00000040 encrypt_type | ||
2650 | -0800a000 g F .text 00000012 __aeabi_dcmplt | ||
2651 | -08000f80 g F .text 00000022 __sread | ||
2652 | -0800f410 g F .text 0000005c WiFi_SoftAP_Stop | ||
2653 | -08018fa0 g F .text 000000d8 wpa_supplicant_init | 2622 | +0800eb00 g F .text 00000030 WiFi_Client_Find |
2623 | +0803c990 g F .text 00000062 tlsv1_record_change_write_cipher | ||
2624 | +08008cb4 g F .text 00000012 ungetc | ||
2625 | +0801df80 g F .text 0000002c hostapd_alloc_bss_data | ||
2626 | +08021580 g F .text 0000001a hostapd_set_ssid | ||
2627 | +08005a50 g F .text 00000092 memchr | ||
2628 | +08027530 g F .text 0000001a TIM_Cmd | ||
2629 | +0802a320 g F .text 0000003e pbuf_realloc | ||
2630 | +08015810 g F .text 00000012 registryGetAddressContents | ||
2631 | +08026b40 g F .text 00000012 PWR_ClearFlag | ||
2632 | +08026ff0 g F .text 00000026 SDIO_DeInit | ||
2633 | +08013c10 g F .text 00000018 libwismart_LinkList_Count | ||
2634 | +20002440 g O .bss 00000004 RoamTimer | ||
2635 | +0800a080 g F .text 00000012 __aeabi_dcmplt | ||
2636 | +08001000 g F .text 00000022 __sread | ||
2637 | +080284e0 g F .text 0000004c tcpip_init | ||
2638 | +0800f320 g F .text 0000005c WiFi_SoftAP_Stop | ||
2639 | +08018d50 g F .text 000000d8 wpa_supplicant_init | ||
2654 | 2000137c g .data 00000000 _edata | 2640 | 2000137c g .data 00000000 _edata |
2655 | -08022fc0 g F .text 000004e0 hostapd_init_wps | ||
2656 | -0801ea20 g F .text 00000018 hostapd_mac_comp_empty | ||
2657 | -08043a10 g F .text 00000004 hostapd_eid_adv_proto | ||
2658 | -08046a00 g F .text 00000004 crypto_public_key_from_cert | ||
2659 | -0802f190 g F .text 00000032 wpa_bss_get_bssid | ||
2660 | -0802be60 g F .text 000000b0 tcp_rst | ||
2661 | -0800bc20 g F .text 0000002a destroy | ||
2662 | -0802e950 g F .text 000000c8 EE_WriteVariable_ | ||
2663 | -0800f1e0 g F .text 0000022c WiFi_SoftAP_Start | ||
2664 | -0800a2d0 w F .text 00000010 VectorA0 | ||
2665 | -08038100 g F .text 0000001a wpa_supplicant_enabled_networks | ||
2666 | -08019bb0 g F .text 00000106 wps_build_probe_req_ie | ||
2667 | -080370c0 g F .text 00000032 generate_authenticator_response | ||
2668 | -08026d40 g F .text 0000002c PWR_EnterSTANDBYMode | ||
2669 | -0800a03c g F .text 00000012 __aeabi_dcmpgt | ||
2670 | -08017220 g F .text 000000e0 NataliaEngine_AddKey_SoftAP | ||
2671 | -080275d0 g F .text 000001b0 TIM_ICInit | ||
2672 | -0800a2d0 w F .text 00000010 Vector98 | ||
2673 | -0801f4e0 g F .text 000000b8 ap_sta_disconnect | ||
2674 | -0803cfc0 g F .text 00000014 is_nil_uuid | ||
2675 | -0800a2d0 w F .text 00000010 VectorE0 | ||
2676 | -08000544 g F .text 00000010 puts | ||
2677 | -0803caa0 g F .text 0000005a tlsv1_record_set_cipher_suite | ||
2678 | -08042d60 g F .text 0000001a x509_certificate_chain_free | ||
2679 | -0800a2d0 w F .text 00000010 VectorA4 | ||
2680 | -08026bd0 g F .text 00000004 GPIO_ResetBits | ||
2681 | -080263f0 g F .text 0000005c pmksa_cache_get_okc | ||
2682 | -0801a990 g F .text 00000098 wps_registrar_init | ||
2683 | -08045460 g F .text 00000022 aes_decrypt_init | ||
2684 | -080155a0 g F .text 00000074 HW_WiFiTransport_ReadCMD53 | ||
2685 | -08043980 g F .text 0000007e hostapd_eid_ext_capab | ||
2686 | -0800c610 g F .text 0000000c libwismart_NetDown | ||
2687 | -0803d0f0 g F .text 00000024 wpabuf_alloc_copy | ||
2688 | -080262f0 g F .text 000000f6 pmksa_cache_auth_add | ||
2689 | -080213f0 g F .text 00000020 hostapd_sta_flags_to_drv | ||
2690 | -0800a2e0 w F .text 00000004 port_halt | ||
2691 | -080321c0 g F .text 00000010 eapol_sm_request_reauth | ||
2692 | -0800c2f0 g F .text 00000010 libwismart_peripheral_unlock | ||
2693 | -08067c40 g O .text 00000400 Te0 | ||
2694 | -08013d30 g F .text 00000028 libwismart_GetTime | ||
2695 | -0801fd30 g F .text 00000038 ieee802_1x_set_sta_authorized | ||
2696 | -08010610 g F .text 00000160 SendAssocRequest | ||
2697 | -200017b0 g O .bss 00000004 wifi_scan_result_cb | ||
2698 | -20002bec g O .bss 00000004 enable_fast_roaming | ||
2699 | -0803c960 g F .text 00000030 tlsv1_cred_free | ||
2700 | -08032ae0 g F .text 00000160 eapol_sm_rx_eapol | ||
2701 | -0803a390 g F .text 000000c8 sha1_prf | ||
2702 | -08017fb0 g F .text 000000b4 wpa_supplicant_initiate_eapol | ||
2703 | -08046ec0 g F .text 00000062 des_block_encrypt | ||
2704 | -0800b090 g F .text 00000004 _lseek_r | ||
2705 | -0800d240 g F .text 0000000c Transport_Lock | ||
2706 | -0803b060 g F .text 0000000a tlsv1_client_resumed | ||
2707 | -08021730 g F .text 00000034 hostapd_set_wds_sta | ||
2708 | -0800a2d0 w F .text 00000010 Vector34 | ||
2709 | -0800d0b0 g F .text 00000050 Transport_SendData_pbuf | ||
2710 | -0801d9b0 g F .text 00000040 wpa_supplicant_ap_wps_cancel | ||
2711 | -0800c390 g F .text 000000e0 libwismart_WiFiConnectEnterprise | ||
2712 | -0803cd40 g F .text 000001de tlsv1_record_receive | ||
2713 | -08031b30 g F .text 00000004 eap_set_fast_reauth | ||
2714 | -080072f0 g F .text 00000030 strtof | ||
2715 | -08043e20 g F .text 00000030 wpa_scan_results_free | ||
2716 | -08021790 g F .text 0000001a hostapd_set_generic_elem | ||
2717 | -0802e0c0 g F .text 00000114 etharp_output | ||
2718 | -08009a44 g F .text 00000022 __floatsidf | ||
2719 | -0800a2d0 w F .text 00000010 SVCallVector | ||
2720 | -0800a2d0 w F .text 00000010 VectorFC | ||
2721 | -0803fba0 g F .text 00000030 wps_build_resp_type | ||
2722 | -0800a2d0 w F .text 00000010 VectorBC | ||
2723 | -0800fe40 g F .text 00000764 Join | ||
2724 | -08037480 g F .text 00000002 wpas_notify_bss_signal_changed | ||
2725 | -08040ca0 g F .text 0000003a wps_fail_event | ||
2726 | -08027c30 g F .text 000000d4 netconn_write_partly | ||
2727 | -08031b60 g F .text 00000014 eap_get_config_identity | ||
2728 | -0802a5d0 g F .text 00000014 pbuf_clen | ||
2729 | -080218f0 g F .text 0000001a hostapd_set_frag | ||
2730 | -0802aaa0 g F .text 00000004 tcp_sent | ||
2731 | -08030750 g F .text 0000001c dh5_init | ||
2732 | -08019180 g F .text 00000562 wpa_supplicant_associate | ||
2733 | -08037b00 g F .text 00000130 rsn_preauth_init | ||
2734 | -08017c20 g F .text 0000001c _nrx_os_strdup | ||
2735 | -08031c30 g F .text 0000000c eap_notify_success | ||
2736 | -0800b180 g F .text 00000020 evtStart | ||
2737 | -0803f120 g F .text 00000042 wpa_sm_set_assoc_wpa_ie_default | ||
2738 | -08029e90 g F .text 0000002c dns_tmr | ||
2739 | -0800a2d0 g F .text 00000010 _unhandled_exception | ||
2740 | -08026450 g F .text 0000001a pmksa_cache_auth_init | ||
2741 | -0800a2d0 w F .text 00000010 Vector94 | ||
2742 | -08045d20 g F .text 00000004 aes_encrypt | ||
2743 | -08017770 g F .text 00000022 ec_wpa_supplicant_event | ||
2744 | -0802dd60 g F .text 0000004c etharp_tmr | ||
2745 | -2000d3b0 g O .bss 00000004 current_iphdr_dest | ||
2746 | -0800a1b0 g F .text 00000118 ResetHandler | ||
2747 | -080461e0 g F .text 0000002a chap_md5 | ||
2748 | -0803f080 g F .text 0000000c wpa_sm_set_ifname | ||
2749 | -0802a660 g F .text 00000012 pbuf_chain | ||
2750 | -0803f090 g F .text 00000008 wpa_sm_set_eapol | ||
2751 | -20002884 g O .bss 00000004 softap_queue_event | ||
2752 | -08003e50 g F .text 00000056 _vsnprintf_r | ||
2753 | -0800be60 g F .text 000000ec libwismart_WiFiInit | ||
2754 | -08031a70 g F .text 00000002 eap_sm_request_new_password | ||
2755 | -0803fea0 g F .text 00000044 wps_build_enrollee_nonce | ||
2756 | -0800aab0 g F .text 0000000a chMtxInit | ||
2757 | -080381c0 g F .text 0000002c wpa_supplicant_cancel_sched_scan | ||
2758 | -080218a0 g F .text 0000002e hostapd_set_freq | ||
2759 | -08013900 g F .text 00000002 libwismart_DebugPin_Set | ||
2760 | -0800a2d0 w F .text 00000010 Vector90 | ||
2761 | -08038cb0 g F .text 00000074 wpa_supplicant_get_scan_results | ||
2762 | -08014240 g F .text 00000018 HW_GPIOS_Wifi_3_3v | ||
2763 | -080302c0 g F .text 0000015c wpa_config_free_ssid | ||
2764 | -08043b70 g F .text 000001c8 hostapd_notif_assoc | ||
2765 | -0801da40 g F .text 00000032 wpa_supplicant_ap_pwd_auth_fail | ||
2766 | -08016020 g F .text 00000020 HW_DebugTrace_SendData | ||
2767 | -080051e4 g F .text 0000002e __sfmoreglue | ||
2768 | -0802c080 g F .text 000000c8 tcp_zero_window_probe | ||
2769 | -08026540 g F .text 00000012 BKP_DeInit | ||
2770 | -08030a40 g F .text 00000018 eap_get_id | ||
2771 | -08030fc0 g F .text 00000084 eap_sm_buildIdentity | ||
2772 | -08020160 g F .text 0000001e ieee802_1x_free_station | ||
2773 | -08000e64 g F .text 0000004e sprintf | ||
2774 | -08014050 g F .text 0000000e HW_RTC_GetTime | ||
2775 | -080465e0 g F .text 0000009e crypto_mod_exp | ||
2776 | -0800eff0 g F .text 00000044 WiFi_Pop_and_Send_Clients_Packet | ||
2777 | -0801fe40 g F .text 00000228 ieee802_1x_receive | ||
2778 | -08037320 g F .text 00000004 wpas_notify_supplicant_initialized | ||
2779 | -0800efb0 g F .text 00000040 softAP_handle_disassociateInd | ||
2780 | -20001774 g O .bss 00000001 snr_cb_set | ||
2781 | -08011e30 g F .text 00000080 wifi_wakeup_cb | ||
2782 | -08021050 g F .text 00000194 eapol_auth_alloc | ||
2783 | -080131e0 g F .text 00000034 wifi_scan_remove_current | ||
2784 | -0800bc50 g F .text 0000005a join_buf | ||
2785 | -080299b0 g F .text 000000c4 dhcp_start | ||
2786 | -08040150 g F .text 000000a2 wps_ie_encapsulate | ||
2787 | -08026720 g F .text 00000012 DMA_ITConfig | 2641 | +08022d70 g F .text 000004e0 hostapd_init_wps |
2642 | +0801e7d0 g F .text 00000018 hostapd_mac_comp_empty | ||
2643 | +080438a0 g F .text 00000004 hostapd_eid_adv_proto | ||
2644 | +08046890 g F .text 00000004 crypto_public_key_from_cert | ||
2645 | +0802f020 g F .text 00000032 wpa_bss_get_bssid | ||
2646 | +0802bd40 g F .text 000000b0 tcp_rst | ||
2647 | +0800baf0 g F .text 0000002a destroy | ||
2648 | +0800f0f0 g F .text 0000022c WiFi_SoftAP_Start | ||
2649 | +0800a350 w F .text 00000010 VectorA0 | ||
2650 | +08037f90 g F .text 0000001a wpa_supplicant_enabled_networks | ||
2651 | +08019960 g F .text 00000106 wps_build_probe_req_ie | ||
2652 | +08036f50 g F .text 00000032 generate_authenticator_response | ||
2653 | +08026af0 g F .text 0000002c PWR_EnterSTANDBYMode | ||
2654 | +0800a0bc g F .text 00000012 __aeabi_dcmpgt | ||
2655 | +08016fd0 g F .text 000000e0 NataliaEngine_AddKey_SoftAP | ||
2656 | +08027380 g F .text 000001b0 TIM_ICInit | ||
2657 | +0800a350 w F .text 00000010 Vector98 | ||
2658 | +0801f290 g F .text 000000b8 ap_sta_disconnect | ||
2659 | +0803ce50 g F .text 00000014 is_nil_uuid | ||
2660 | +0800a350 w F .text 00000010 VectorE0 | ||
2661 | +080005c4 g F .text 00000010 puts | ||
2662 | +0803c930 g F .text 0000005a tlsv1_record_set_cipher_suite | ||
2663 | +08042bf0 g F .text 0000001a x509_certificate_chain_free | ||
2664 | +0800a350 w F .text 00000010 VectorA4 | ||
2665 | +08026980 g F .text 00000004 GPIO_ResetBits | ||
2666 | +080261a0 g F .text 0000005c pmksa_cache_get_okc | ||
2667 | +0801a740 g F .text 00000098 wps_registrar_init | ||
2668 | +080452f0 g F .text 00000022 aes_decrypt_init | ||
2669 | +080154b0 g F .text 00000074 HW_WiFiTransport_ReadCMD53 | ||
2670 | +08043810 g F .text 0000007e hostapd_eid_ext_capab | ||
2671 | +0800c510 g F .text 0000000c libwismart_NetDown | ||
2672 | +0803cf80 g F .text 00000024 wpabuf_alloc_copy | ||
2673 | +080260a0 g F .text 000000f6 pmksa_cache_auth_add | ||
2674 | +080211a0 g F .text 00000020 hostapd_sta_flags_to_drv | ||
2675 | +0800a360 w F .text 00000004 port_halt | ||
2676 | +08032050 g F .text 00000010 eapol_sm_request_reauth | ||
2677 | +0800c1f0 g F .text 00000010 libwismart_peripheral_unlock | ||
2678 | +08067c00 g O .text 00000400 Te0 | ||
2679 | +08013c40 g F .text 00000028 libwismart_GetTime | ||
2680 | +0801fae0 g F .text 00000038 ieee802_1x_set_sta_authorized | ||
2681 | +08010520 g F .text 00000160 SendAssocRequest | ||
2682 | +20001690 g O .bss 00000004 wifi_scan_result_cb | ||
2683 | +20002acc g O .bss 00000004 enable_fast_roaming | ||
2684 | +0803c7f0 g F .text 00000030 tlsv1_cred_free | ||
2685 | +08032970 g F .text 00000160 eapol_sm_rx_eapol | ||
2686 | +0803a220 g F .text 000000c8 sha1_prf | ||
2687 | +08017d60 g F .text 000000b4 wpa_supplicant_initiate_eapol | ||
2688 | +08046d50 g F .text 00000062 des_block_encrypt | ||
2689 | +0800b110 g F .text 00000004 _lseek_r | ||
2690 | +0800d140 g F .text 0000000c Transport_Lock | ||
2691 | +0803aef0 g F .text 0000000a tlsv1_client_resumed | ||
2692 | +080214e0 g F .text 00000034 hostapd_set_wds_sta | ||
2693 | +0800a350 w F .text 00000010 Vector34 | ||
2694 | +0800cfb0 g F .text 00000050 Transport_SendData_pbuf | ||
2695 | +0801d760 g F .text 00000040 wpa_supplicant_ap_wps_cancel | ||
2696 | +0800c290 g F .text 000000e0 libwismart_WiFiConnectEnterprise | ||
2697 | +0803cbd0 g F .text 000001de tlsv1_record_receive | ||
2698 | +080319c0 g F .text 00000004 eap_set_fast_reauth | ||
2699 | +08007370 g F .text 00000030 strtof | ||
2700 | +08043cb0 g F .text 00000030 wpa_scan_results_free | ||
2701 | +08021540 g F .text 0000001a hostapd_set_generic_elem | ||
2702 | +0802e060 g F .text 00000114 etharp_output | ||
2703 | +08009ac4 g F .text 00000022 __floatsidf | ||
2704 | +0800a350 w F .text 00000010 SVCallVector | ||
2705 | +0800a350 w F .text 00000010 VectorFC | ||
2706 | +0803fa30 g F .text 00000030 wps_build_resp_type | ||
2707 | +0800a350 w F .text 00000010 VectorBC | ||
2708 | +0800fd50 g F .text 00000764 Join | ||
2709 | +08037310 g F .text 00000002 wpas_notify_bss_signal_changed | ||
2710 | +08040b30 g F .text 0000003a wps_fail_event | ||
2711 | +080279e0 g F .text 000000d4 netconn_write_partly | ||
2712 | +080319f0 g F .text 00000014 eap_get_config_identity | ||
2713 | +0802a4b0 g F .text 00000014 pbuf_clen | ||
2714 | +080216a0 g F .text 0000001a hostapd_set_frag | ||
2715 | +0802a980 g F .text 00000004 tcp_sent | ||
2716 | +080305e0 g F .text 0000001c dh5_init | ||
2717 | +08018f30 g F .text 00000562 wpa_supplicant_associate | ||
2718 | +08037990 g F .text 00000130 rsn_preauth_init | ||
2719 | +080179d0 g F .text 0000001c _nrx_os_strdup | ||
2720 | +08031ac0 g F .text 0000000c eap_notify_success | ||
2721 | +0800b200 g F .text 00000020 evtStart | ||
2722 | +0803efb0 g F .text 00000042 wpa_sm_set_assoc_wpa_ie_default | ||
2723 | +08029d70 g F .text 0000002c dns_tmr | ||
2724 | +0800a350 g F .text 00000010 _unhandled_exception | ||
2725 | +08026200 g F .text 0000001a pmksa_cache_auth_init | ||
2726 | +0800a350 w F .text 00000010 Vector94 | ||
2727 | +08045bb0 g F .text 00000004 aes_encrypt | ||
2728 | +08017520 g F .text 00000022 ec_wpa_supplicant_event | ||
2729 | +0802dd00 g F .text 0000004c etharp_tmr | ||
2730 | +2000d29c g O .bss 00000004 current_iphdr_dest | ||
2731 | +0800a230 g F .text 00000118 ResetHandler | ||
2732 | +08046070 g F .text 0000002a chap_md5 | ||
2733 | +0803ef10 g F .text 0000000c wpa_sm_set_ifname | ||
2734 | +0802a540 g F .text 00000012 pbuf_chain | ||
2735 | +0803ef20 g F .text 00000008 wpa_sm_set_eapol | ||
2736 | +20002764 g O .bss 00000004 softap_queue_event | ||
2737 | +08003ed0 g F .text 00000056 _vsnprintf_r | ||
2738 | +0800bd60 g F .text 000000ec libwismart_WiFiInit | ||
2739 | +08031900 g F .text 00000002 eap_sm_request_new_password | ||
2740 | +0803fd30 g F .text 00000044 wps_build_enrollee_nonce | ||
2741 | +0800ab30 g F .text 0000000a chMtxInit | ||
2742 | +08038050 g F .text 0000002c wpa_supplicant_cancel_sched_scan | ||
2743 | +08021650 g F .text 0000002e hostapd_set_freq | ||
2744 | +08013810 g F .text 00000002 libwismart_DebugPin_Set | ||
2745 | +0800a350 w F .text 00000010 Vector90 | ||
2746 | +0800d960 g F .text 00000008 libwismart_EnableBsdSocketAPI | ||
2747 | +08038b40 g F .text 00000074 wpa_supplicant_get_scan_results | ||
2748 | +08014150 g F .text 00000018 HW_GPIOS_Wifi_3_3v | ||
2749 | +08030150 g F .text 0000015c wpa_config_free_ssid | ||
2750 | +08043a00 g F .text 000001c8 hostapd_notif_assoc | ||
2751 | +0801d7f0 g F .text 00000032 wpa_supplicant_ap_pwd_auth_fail | ||
2752 | +08015dd0 g F .text 00000020 HW_DebugTrace_SendData | ||
2753 | +08005264 g F .text 0000002e __sfmoreglue | ||
2754 | +0802bf60 g F .text 000000c8 tcp_zero_window_probe | ||
2755 | +080262f0 g F .text 00000012 BKP_DeInit | ||
2756 | +080308d0 g F .text 00000018 eap_get_id | ||
2757 | +08030e50 g F .text 00000084 eap_sm_buildIdentity | ||
2758 | +0801ff10 g F .text 0000001e ieee802_1x_free_station | ||
2759 | +08000ee4 g F .text 0000004e sprintf | ||
2760 | +08013f60 g F .text 0000000e HW_RTC_GetTime | ||
2761 | +08046470 g F .text 0000009e crypto_mod_exp | ||
2762 | +0800ef00 g F .text 00000044 WiFi_Pop_and_Send_Clients_Packet | ||
2763 | +0801fbf0 g F .text 00000228 ieee802_1x_receive | ||
2764 | +080371b0 g F .text 00000004 wpas_notify_supplicant_initialized | ||
2765 | +0800eec0 g F .text 00000040 softAP_handle_disassociateInd | ||
2766 | +20001654 g O .bss 00000001 snr_cb_set | ||
2767 | +08011d40 g F .text 00000080 wifi_wakeup_cb | ||
2768 | +08020e00 g F .text 00000194 eapol_auth_alloc | ||
2769 | +080130f0 g F .text 00000034 wifi_scan_remove_current | ||
2770 | +0800bb20 g F .text 00000062 join_buf | ||
2771 | +08029890 g F .text 000000c4 dhcp_start | ||
2772 | +0803ffe0 g F .text 000000a2 wps_ie_encapsulate | ||
2773 | +080264d0 g F .text 00000012 DMA_ITConfig | ||
2788 | 20001058 g O .data 00000004 __mb_cur_max | 2774 | 20001058 g O .data 00000004 __mb_cur_max |
2789 | -0802a770 g F .text 0000009c pbuf_copy_partial | ||
2790 | -0800c850 g F .text 0000000c libwismart_SetScanRunsForConnTimeout | ||
2791 | -080002e0 g F .text 00000094 memcpy | ||
2792 | -0804bd00 g F .text 00000022 bignum_init | ||
2793 | -080138d0 g F .text 0000000c libwismart_set_trace_mask | ||
2794 | -08032a90 g F .text 00000022 eapol_sm_notify_eap_success | ||
2795 | -08009f50 g F .text 0000007a __nedf2 | ||
2796 | -200029b0 g O .bss 00000004 tim_timestamp | ||
2797 | -20001784 g O .bss 00000004 wifi_adhoc_cb | ||
2798 | -08030690 g F .text 0000003a wpa_config_remove_blob | ||
2799 | -0801d970 g F .text 00000002 ap_rx_from_unknown_sta | ||
2800 | -08026f30 g F .text 00000010 RCC_RTCCLKConfig | ||
2801 | -0801d960 g F .text 00000002 ap_client_poll_ok | ||
2802 | -080174d0 g F .text 00000012 wpa_driver_WE_hapd_send_eapol | ||
2803 | -0800a400 g F .text 0000000c _port_thread_start | ||
2804 | -08036ff0 g F .text 0000002c generate_nt_response_pwhash | ||
2805 | -0804a100 g F .text 0000012a crypto_rsa_import_private_key | ||
2806 | -080215f0 g F .text 0000001c hostapd_free_ap_extra_ies | ||
2807 | -08012370 g F .text 00000078 wifi_PsEnableRF | ||
2808 | -080374d0 g F .text 00000002 wpas_notify_bss_wps_changed | ||
2809 | -20002bb8 g O .bss 00000004 rate_gmask | ||
2810 | -080072dc g F .text 00000012 strtod | ||
2811 | -080097ac g F .text 00000276 __aeabi_dadd | ||
2812 | -080127f0 g F .text 00000074 wifi_cmds_flow_data_release | ||
2813 | -08045d50 g F .text 000000d4 rijndaelKeySetupEnc | ||
2814 | -0800ef50 g F .text 00000054 WiFi_Client_Kill | ||
2815 | -08009ab4 g F .text 0000005a __aeabi_l2d | ||
2816 | -20001540 g O .bss 00000001 rssi_cb_set | ||
2817 | -0803fe70 g F .text 00000030 wps_build_msg_type | ||
2818 | -0802a060 g F .text 00000002 netif_init | ||
2819 | -0802d4f0 g F .text 000000b8 ipaddr_ntoa_r | ||
2820 | -08015be0 g F .text 000000d0 libwismart_ProfileGet_Buf | ||
2821 | -0802cac0 g F .text 00000022 igmp_init | ||
2822 | -0800be10 g F .text 0000004c libwismart_WiFiShutdown | ||
2823 | -080014a0 g F .text 0000005e strlen | ||
2824 | -08005270 g F .text 00000088 __sfp | ||
2825 | -080206a0 g F .text 00000038 eapol_auth_free | ||
2826 | -0800acc0 g F .text 0000002c chEvtWaitAny | 2775 | +0802a650 g F .text 0000009c pbuf_copy_partial |
2776 | +0800c750 g F .text 0000000c libwismart_SetScanRunsForConnTimeout | ||
2777 | +08000360 g F .text 00000094 memcpy | ||
2778 | +0804bb90 g F .text 00000022 bignum_init | ||
2779 | +080137e0 g F .text 0000000c libwismart_set_trace_mask | ||
2780 | +08032920 g F .text 00000022 eapol_sm_notify_eap_success | ||
2781 | +08009fd0 g F .text 0000007a __nedf2 | ||
2782 | +20002890 g O .bss 00000004 tim_timestamp | ||
2783 | +20001664 g O .bss 00000004 wifi_adhoc_cb | ||
2784 | +08030520 g F .text 0000003a wpa_config_remove_blob | ||
2785 | +0801d720 g F .text 00000002 ap_rx_from_unknown_sta | ||
2786 | +08026ce0 g F .text 00000010 RCC_RTCCLKConfig | ||
2787 | +0801d710 g F .text 00000002 ap_client_poll_ok | ||
2788 | +08017280 g F .text 00000012 wpa_driver_WE_hapd_send_eapol | ||
2789 | +0800a480 g F .text 0000000c _port_thread_start | ||
2790 | +08036e80 g F .text 0000002c generate_nt_response_pwhash | ||
2791 | +08049f90 g F .text 0000012a crypto_rsa_import_private_key | ||
2792 | +080213a0 g F .text 0000001c hostapd_free_ap_extra_ies | ||
2793 | +08012280 g F .text 00000078 wifi_PsEnableRF | ||
2794 | +08037360 g F .text 00000002 wpas_notify_bss_wps_changed | ||
2795 | +20002a98 g O .bss 00000004 rate_gmask | ||
2796 | +0802c6a0 g F .text 00000070 sys_timeouts_mbox_fetch | ||
2797 | +0800735c g F .text 00000012 strtod | ||
2798 | +0800982c g F .text 00000276 __aeabi_dadd | ||
2799 | +08012700 g F .text 00000074 wifi_cmds_flow_data_release | ||
2800 | +08045be0 g F .text 000000d4 rijndaelKeySetupEnc | ||
2801 | +0800ee60 g F .text 00000054 WiFi_Client_Kill | ||
2802 | +08009b34 g F .text 0000005a __aeabi_l2d | ||
2803 | +20001422 g O .bss 00000001 rssi_cb_set | ||
2804 | +0803fd00 g F .text 00000030 wps_build_msg_type | ||
2805 | +08029f40 g F .text 00000002 netif_init | ||
2806 | +0802d490 g F .text 000000b8 ipaddr_ntoa_r | ||
2807 | +08015a60 g F .text 000000d0 libwismart_ProfileGet_Buf | ||
2808 | +0802ca60 g F .text 00000022 igmp_init | ||
2809 | +0800bd10 g F .text 0000004c libwismart_WiFiShutdown | ||
2810 | +08001520 g F .text 0000005e strlen | ||
2811 | +080052f0 g F .text 00000088 __sfp | ||
2812 | +08020450 g F .text 00000038 eapol_auth_free | ||
2813 | +0800ad40 g F .text 0000002c chEvtWaitAny | ||
2827 | 200013c8 g O .bss 00000010 vtlist | 2814 | 200013c8 g O .bss 00000010 vtlist |
2828 | -0803a370 g F .text 0000001c hmac_sha1 | ||
2829 | -08045280 g F .text 00000076 aes_128_cbc_encrypt | ||
2830 | -08005c08 g F .text 0000003a __hi0bits | ||
2831 | -08065980 g O .text 00000004 ip_addr_any | ||
2832 | -08019910 g F .text 00000030 wps_is_selected_pbc_registrar | ||
2833 | -08026cc0 g F .text 0000000a PWR_BackupAccessCmd | ||
2834 | -08001cf0 g F .text 0000001a strtol | ||
2835 | -0803f9d0 g F .text 00000046 wpa_supplicant_rsn_supp_set_config | ||
2836 | -0800621c g F .text 00000060 __ratio | ||
2837 | -0800d000 g F .text 00000020 libwismart_UART_RXDMA_IRQHandler | ||
2838 | -08043a70 g F .text 000000a6 hostapd_update_time_adv | ||
2839 | -08011c20 g F .text 00000028 wifi_JoinWithOldBSS | ||
2840 | -08018eb0 g F .text 00000056 wpa_supplicant_remove_iface | ||
2841 | -0800a0e0 g F .text 0000009e __truncdfsf2 | ||
2842 | -0803b0c0 g F .text 00000016 tlsv1_client_set_cred | ||
2843 | -08031d00 g F .text 00000038 eap_is_wps_pbc_enrollee | ||
2844 | -08037ed0 g F .text 00000016 rsn_preauth_scan_results | ||
2845 | -0801e200 g F .text 00000078 hostapd_interface_deinit | ||
2846 | -080108d0 g F .text 000000e8 CreateAdHoc | ||
2847 | -0802ed70 g F .text 00000040 wpa_blacklist_add | ||
2848 | -0804bf50 g F .text 0000004e bignum_mulmod | ||
2849 | -20001554 g O .bss 00000004 RXDataQueueUnicast | ||
2850 | -0800d8b0 g F .text 0000000c libwismart_LwIP_unlock | ||
2851 | -08038910 g F .text 00000048 wpa_scan_get_ie | ||
2852 | -0802a680 g F .text 000000e4 pbuf_copy | ||
2853 | -08043a30 g F .text 0000003e hostapd_eid_time_zone | ||
2854 | -0800db90 g F .text 0000001a LwIP_DeInit | ||
2855 | -08034dd0 g F .text 00000028 wpa_supplicant_stop_countermeasures | ||
2856 | -0803a720 g F .text 0000000a tls_connection_established | ||
2857 | -08009510 g F .text 00000000 __aeabi_uidiv | ||
2858 | -08029ec0 g F .text 0000002e lwip_init | ||
2859 | -08034b40 g F .text 0000000e eloop_terminate | ||
2860 | -08010810 g F .text 00000022 CreateBssLeaveRequest | ||
2861 | -08013280 g F .text 00000040 ReadMibTableObject | ||
2862 | -08017850 g F .text 00000070 wpa_init | ||
2863 | -0800a410 g F .text 00000030 nvicSetSystemHandlerPriority | ||
2864 | -0802b320 g F .text 0000006a tcp_process_refused_data | ||
2865 | -08018150 g F .text 000000f8 wpa_clear_keys | ||
2866 | -08026740 g F .text 0000001a DMA_GetFlagStatus | ||
2867 | -080268e0 g F .text 0000002a FLASH_GetBank1Status | ||
2868 | -080174f0 g F .text 00000270 wpa_driver_WE_set_key | ||
2869 | -08040d60 g F .text 00000014 wps_pbc_timeout_event | ||
2870 | -08000f1c g F .text 00000056 _sscanf_r | ||
2871 | -0802cd40 g F .text 00000048 igmp_tmr | 2815 | +0803a200 g F .text 0000001c hmac_sha1 |
2816 | +08045110 g F .text 00000076 aes_128_cbc_encrypt | ||
2817 | +08005c88 g F .text 0000003a __hi0bits | ||
2818 | +08065940 g O .text 00000004 ip_addr_any | ||
2819 | +080196c0 g F .text 00000030 wps_is_selected_pbc_registrar | ||
2820 | +08026a70 g F .text 0000000a PWR_BackupAccessCmd | ||
2821 | +08001d70 g F .text 0000001a strtol | ||
2822 | +0803f860 g F .text 00000046 wpa_supplicant_rsn_supp_set_config | ||
2823 | +0800629c g F .text 00000060 __ratio | ||
2824 | +0800cf00 g F .text 00000020 libwismart_UART_RXDMA_IRQHandler | ||
2825 | +08043900 g F .text 000000a6 hostapd_update_time_adv | ||
2826 | +08011b30 g F .text 00000028 wifi_JoinWithOldBSS | ||
2827 | +08018c60 g F .text 00000056 wpa_supplicant_remove_iface | ||
2828 | +0800a160 g F .text 0000009e __truncdfsf2 | ||
2829 | +0803af50 g F .text 00000016 tlsv1_client_set_cred | ||
2830 | +08031b90 g F .text 00000038 eap_is_wps_pbc_enrollee | ||
2831 | +08037d60 g F .text 00000016 rsn_preauth_scan_results | ||
2832 | +0801dfb0 g F .text 00000078 hostapd_interface_deinit | ||
2833 | +080107e0 g F .text 000000e8 CreateAdHoc | ||
2834 | +0802ec00 g F .text 00000040 wpa_blacklist_add | ||
2835 | +0804bde0 g F .text 0000004e bignum_mulmod | ||
2836 | +20001434 g O .bss 00000004 RXDataQueueUnicast | ||
2837 | +0800d7b0 g F .text 0000000c libwismart_LwIP_unlock | ||
2838 | +080387a0 g F .text 00000048 wpa_scan_get_ie | ||
2839 | +0802a560 g F .text 000000e4 pbuf_copy | ||
2840 | +080438c0 g F .text 0000003e hostapd_eid_time_zone | ||
2841 | +0800daa0 g F .text 0000001a LwIP_DeInit | ||
2842 | +08034c60 g F .text 00000028 wpa_supplicant_stop_countermeasures | ||
2843 | +0803a5b0 g F .text 0000000a tls_connection_established | ||
2844 | +08009590 g F .text 00000000 __aeabi_uidiv | ||
2845 | +08029da0 g F .text 0000002e lwip_init | ||
2846 | +080349d0 g F .text 0000000e eloop_terminate | ||
2847 | +08010720 g F .text 00000022 CreateBssLeaveRequest | ||
2848 | +08013190 g F .text 00000040 ReadMibTableObject | ||
2849 | +08017600 g F .text 00000070 wpa_init | ||
2850 | +0800a490 g F .text 00000030 nvicSetSystemHandlerPriority | ||
2851 | +0802b200 g F .text 0000006a tcp_process_refused_data | ||
2852 | +08017f00 g F .text 000000f8 wpa_clear_keys | ||
2853 | +080264f0 g F .text 0000001a DMA_GetFlagStatus | ||
2854 | +08026690 g F .text 0000002a FLASH_GetBank1Status | ||
2855 | +080172a0 g F .text 00000270 wpa_driver_WE_set_key | ||
2856 | +08040bf0 g F .text 00000014 wps_pbc_timeout_event | ||
2857 | +08000f9c g F .text 00000056 _sscanf_r | ||
2858 | +0802cce0 g F .text 00000048 igmp_tmr | ||
2872 | 20001190 g O .data 00000014 state_name | 2859 | 20001190 g O .data 00000014 state_name |
2873 | -0802d5b0 g F .text 0000000e ipaddr_ntoa | ||
2874 | -20001e58 g O .bss 000006b0 wa_lwip_thread | ||
2875 | -20002590 g O .bss 00000004 IPTimer | ||
2876 | -08038440 g F .text 00000046 wpa_supplicant_trigger_scan | ||
2877 | -0803a0b0 g F .text 00000082 SHA1Update | ||
2878 | -0800c130 g F .text 00000054 SendRssiValueBack | ||
2879 | -08001060 g F .text 00000044 strcasecmp | ||
2880 | -08012890 g F .text 0000000e wifi_cmds_flow_reset_fw | ||
2881 | -0802e770 g F .text 00000006 libwismart_PBufQueue_RemoveLast | ||
2882 | -2000d1dc g O .bss 00000004 netif_list | ||
2883 | -08000d04 g F .text 00000010 __sigtramp | ||
2884 | -08011e20 g F .text 0000000c wifi_ps_unlock | ||
2885 | -0802f1d0 g F .text 00000048 wpa_bss_get_ie | ||
2886 | -08025940 g F .text 0000016c wpa_auth_gen_wpa_ie | ||
2887 | -08009f50 g F .text 0000007a __eqdf2 | ||
2888 | -0803e140 g F .text 000000ec wpa_supplicant_send_4_of_4 | ||
2889 | -080438d0 g F .text 000000a8 aes_wrap | ||
2890 | -080201c0 g F .text 00000164 ieee802_1x_init | ||
2891 | -08033010 g F .text 00000084 eap_peer_tls_register | ||
2892 | -08016f30 g F .text 00000056 NataliaEngine_DeleteAllKey | ||
2893 | -0800a2d0 w F .text 00000010 Vector10C | ||
2894 | -0800a050 g F .text 0000004e __fixdfsi | ||
2895 | -0800b0e0 g F .text 00000004 _isatty_r | ||
2896 | -08027060 g F .text 0000001a RCC_APB1PeriphResetCmd | ||
2897 | -0801cd40 g F .text 0000006c wpas_wps_start_pbc | ||
2898 | -08046a70 g F .text 00000004 crypto_public_key_decrypt_pkcs1 | ||
2899 | -080465c0 g F .text 00000020 crypto_cipher_deinit | ||
2900 | -080057a0 g F .text 00000008 localeconv | ||
2901 | -200029dc g O .bss 00000004 softap_mbox | ||
2902 | -08041240 g F .text 00000068 wps_build_dev_name | ||
2903 | -08023e10 g F .text 00000020 wpa_auth_sta_init | ||
2904 | -0802f220 g F .text 0000005e wpa_bss_get_vendor_ie | 2860 | +0802d550 g F .text 0000000e ipaddr_ntoa |
2861 | +20001d38 g O .bss 000006b0 wa_lwip_thread | ||
2862 | +20002470 g O .bss 00000004 IPTimer | ||
2863 | +080382d0 g F .text 00000046 wpa_supplicant_trigger_scan | ||
2864 | +08039f40 g F .text 00000082 SHA1Update | ||
2865 | +0800c030 g F .text 00000054 SendRssiValueBack | ||
2866 | +080010e0 g F .text 00000044 strcasecmp | ||
2867 | +080127a0 g F .text 0000000e wifi_cmds_flow_reset_fw | ||
2868 | +0802e740 g F .text 00000006 libwismart_PBufQueue_RemoveLast | ||
2869 | +2000d0c8 g O .bss 00000004 netif_list | ||
2870 | +08000d84 g F .text 00000010 __sigtramp | ||
2871 | +08011d30 g F .text 0000000c wifi_ps_unlock | ||
2872 | +0802f060 g F .text 00000048 wpa_bss_get_ie | ||
2873 | +080256f0 g F .text 0000016c wpa_auth_gen_wpa_ie | ||
2874 | +08009fd0 g F .text 0000007a __eqdf2 | ||
2875 | +0803dfd0 g F .text 000000ec wpa_supplicant_send_4_of_4 | ||
2876 | +08043760 g F .text 000000a8 aes_wrap | ||
2877 | +0801ff70 g F .text 00000164 ieee802_1x_init | ||
2878 | +08032ea0 g F .text 00000084 eap_peer_tls_register | ||
2879 | +08016ce0 g F .text 00000056 NataliaEngine_DeleteAllKey | ||
2880 | +0800a350 w F .text 00000010 Vector10C | ||
2881 | +0800a0d0 g F .text 0000004e __fixdfsi | ||
2882 | +0800b160 g F .text 00000004 _isatty_r | ||
2883 | +08026e10 g F .text 0000001a RCC_APB1PeriphResetCmd | ||
2884 | +0801caf0 g F .text 0000006c wpas_wps_start_pbc | ||
2885 | +08046900 g F .text 00000004 crypto_public_key_decrypt_pkcs1 | ||
2886 | +08046450 g F .text 00000020 crypto_cipher_deinit | ||
2887 | +08005820 g F .text 00000008 localeconv | ||
2888 | +200028bc g O .bss 00000004 softap_mbox | ||
2889 | +080410d0 g F .text 00000068 wps_build_dev_name | ||
2890 | +08023bc0 g F .text 00000020 wpa_auth_sta_init | ||
2891 | +0802f0b0 g F .text 0000005e wpa_bss_get_vendor_ie | ||
2905 | 2892 | ||
2906 | 2893 |
Project/applications/smartcities/build/smartcities.elf
No preview for this file type