8000 remove axtls debug stuff · micropython/micropython@577659a · GitHub
[go: up one dir, main page]

Skip to content

Commit 577659a

Browse files
committed
remove axtls debug stuff
1 parent 523a2f7 commit 577659a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

F1E3 extmod/modussl_axtls.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ STATIC mp_uint_t ussl_socket_read(mp_obj_t o_in, void *buf, mp_uint_t size, int
176176

177177
while (o->bytes_left == 0) {
178178
mp_int_t r = ssl_read(o->ssl_sock, &o->buf);
179-
printf("R{%d}", r);
180179
if (r == SSL_OK) {
181180
// SSL_OK from ssl_read() means "everything is ok, but there's
182181
// no user data yet". It may happen e.g. if handshake is not
@@ -243,7 +242,6 @@ STATIC mp_uint_t ussl_socket_write(mp_obj_t o_in, const void *buf, mp_uint_t siz
243242
mp_int_t r;
244243
eagain:
245244
r = ssl_write(o->ssl_sock, buf, size);
246-
printf("W{%d}", r);
247245
if (r == SSL_OK) {
248246
// see comment in read method
249247
if (o->blocking) {
@@ -358,7 +356,6 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_KW(mod_ssl_wrap_socket_obj, 1, mod_ssl_wrap_socke
358356
STATIC const mp_rom_map_elem_t mp_module_ssl_globals_table[] = {
359357
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_ussl) },
360358
{ MP_ROM_QSTR(MP_QSTR_wrap_socket), MP_ROM_PTR(&mod_ssl_wrap_socket_obj) },
361-
{ MP_ROM_QSTR(MP_QSTR_errstr), MP_ROM_PTR(&mod_ssl_errstr_obj) },
362359
};
363360

364361
STATIC MP_DEFINE_CONST_DICT(mp_module_ssl_globals, mp_module_ssl_globals_table);

0 commit comments

Comments
 (0)
0