diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-08 21:10:18 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-08 21:20:32 +0200 |
commit | 9945f338863cd1bc0ce483c0eb70c41fbdb710f1 (patch) | |
tree | ed6068ff4cc1888cbbea17c635b7b5752434b81a /unix/main.c | |
parent | 0a587b85fb19e57644ac420c642d0d75d2f9346f (diff) | |
download | micropython-9945f338863cd1bc0ce483c0eb70c41fbdb710f1.tar.gz micropython-9945f338863cd1bc0ce483c0eb70c41fbdb710f1.zip |
Rename "rawsocket" module to "microsocket".
It's no longer intended to provide just "raw" socket interface, may include
some convenience methods for compatibility with CPython socket - but anyway
just minimal set required to deal with socket client and servers, not wider
network functionality.
Diffstat (limited to 'unix/main.c')
-rw-r--r-- | unix/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/main.c b/unix/main.c index 9fb25a43e2..5fdfbc36aa 100644 --- a/unix/main.c +++ b/unix/main.c @@ -23,7 +23,7 @@ extern const mp_obj_fun_native_t mp_builtin_open_obj; void file_init(); -void rawsocket_init(); +void microsocket_init(); void time_init(); void ffi_init(); @@ -265,7 +265,7 @@ int main(int argc, char **argv) { rt_store_name(qstr_from_str("qstr_info"), rt_make_function_n(0, qstr_info)); file_init(); - rawsocket_init(); + microsocket_init(); #if MICROPY_MOD_TIME time_init(); #endif |