ソースの整理中ですが、利用はできます。 大きなファイルはできないかもしれません。

Dependencies:   EthernetInterface HttpServer TextLCD expatlib mbed-rpc mbed-rtos mbed Socket lwip-eth lwip-sys lwip

Fork of giken9_HTMLServer_Sample by Yasushi TAUCHI

Embed: (wiki syntax)

« Back to documentation index

api_msg_msg Struct Reference

api_msg_msg Struct Reference

This struct includes everything that is necessary to execute a function for a netconn in another thread context (mainly used to process netconns in the tcpip_thread context to be thread safe). More...

#include <api_msg.h>

Data Fields

struct netconnconn
 The netconn which to process - always needed: it includes the semaphore which is used to block the application thread until the function finished.
err_t err
 The return value of the function executed in tcpip_thread.
struct netbuf * b
 used for do_send

Detailed Description

This struct includes everything that is necessary to execute a function for a netconn in another thread context (mainly used to process netconns in the tcpip_thread context to be thread safe).

Definition at line 62 of file api_msg.h.


Field Documentation

struct netbuf* b

used for do_send

Definition at line 71 of file api_msg.h.

struct netconn* conn

The netconn which to process - always needed: it includes the semaphore which is used to block the application thread until the function finished.

Definition at line 65 of file api_msg.h.

err_t err

The return value of the function executed in tcpip_thread.

Definition at line 67 of file api_msg.h.