Minor changes in lwip folder: fix some warnings, coding style, and rename "internal" netconn_alloc function.

This commit is contained in:
fbernon
2008-01-04 23:07:44 +00:00
parent 32005617b9
commit 9c4daa312d
8 changed files with 18 additions and 12 deletions

View File

@@ -148,8 +148,8 @@ void do_join_leave_group( struct api_msg_msg *msg);
void do_gethostbyname(void *arg);
#endif /* LWIP_DNS */
struct netconn* netconn_alloc_with_proto_and_callback(
enum netconn_type t, u8_t proto,
struct netconn* netconn_alloc(
enum netconn_type t,
void (*callback)(struct netconn *, enum netconn_evt, u16_t len));
#ifdef __cplusplus