OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [Common/] [ethernet/] [lwIP_132/] [src/] [include/] [lwip/] [api_msg.h] - Blame information for rev 606

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 606 jeremybenn
/*
2
 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without modification,
6
 * are permitted provided that the following conditions are met:
7
 *
8
 * 1. Redistributions of source code must retain the above copyright notice,
9
 *    this list of conditions and the following disclaimer.
10
 * 2. Redistributions in binary form must reproduce the above copyright notice,
11
 *    this list of conditions and the following disclaimer in the documentation
12
 *    and/or other materials provided with the distribution.
13
 * 3. The name of the author may not be used to endorse or promote products
14
 *    derived from this software without specific prior written permission.
15
 *
16
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
19
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
21
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
25
 * OF SUCH DAMAGE.
26
 *
27
 * This file is part of the lwIP TCP/IP stack.
28
 *
29
 * Author: Adam Dunkels <adam@sics.se>
30
 *
31
 */
32
#ifndef __LWIP_API_MSG_H__
33
#define __LWIP_API_MSG_H__
34
 
35
#include "lwip/opt.h"
36
 
37
#if LWIP_NETCONN /* don't build if not configured for use in lwipopts.h */
38
 
39
#include <stddef.h> /* for size_t */
40
 
41
#include "lwip/ip_addr.h"
42
#include "lwip/err.h"
43
#include "lwip/sys.h"
44
#include "lwip/igmp.h"
45
#include "lwip/api.h"
46
 
47
#ifdef __cplusplus
48
extern "C" {
49
#endif
50
 
51
/* IP addresses and port numbers are expected to be in
52
 * the same byte order as in the corresponding pcb.
53
 */
54
/** This struct includes everything that is necessary to execute a function
55
    for a netconn in another thread context (mainly used to process netconns
56
    in the tcpip_thread context to be thread safe). */
57
struct api_msg_msg {
58
  /** The netconn which to process - always needed: it includes the semaphore
59
      which is used to block the application thread until the function finished. */
60
  struct netconn *conn;
61
  /** Depending on the executed function, one of these union members is used */
62
  union {
63
    /** used for do_send */
64
    struct netbuf *b;
65
    /** used for do_newconn */
66
    struct {
67
      u8_t proto;
68
    } n;
69
    /** used for do_bind and do_connect */
70
    struct {
71
      struct ip_addr *ipaddr;
72
      u16_t port;
73
    } bc;
74
    /** used for do_getaddr */
75
    struct {
76
      struct ip_addr *ipaddr;
77
      u16_t *port;
78
      u8_t local;
79
    } ad;
80
    /** used for do_write */
81
    struct {
82
      const void *dataptr;
83
      size_t len;
84
      u8_t apiflags;
85
    } w;
86
    /** used for do_recv */
87
    struct {
88
      u16_t len;
89
    } r;
90
#if LWIP_IGMP
91
    /** used for do_join_leave_group */
92
    struct {
93
      struct ip_addr *multiaddr;
94
      struct ip_addr *interface;
95
      enum netconn_igmp join_or_leave;
96
    } jl;
97
#endif /* LWIP_IGMP */
98
#if TCP_LISTEN_BACKLOG
99
    struct {
100
      u8_t backlog;
101
    } lb;
102
#endif /* TCP_LISTEN_BACKLOG */
103
  } msg;
104
};
105
 
106
/** This struct contains a function to execute in another thread context and
107
    a struct api_msg_msg that serves as an argument for this function.
108
    This is passed to tcpip_apimsg to execute functions in tcpip_thread context. */
109
struct api_msg {
110
  /** function to execute in tcpip_thread context */
111
  void (* function)(struct api_msg_msg *msg);
112
  /** arguments for this function */
113
  struct api_msg_msg msg;
114
};
115
 
116
#if LWIP_DNS
117
/** As do_gethostbyname requires more arguments but doesn't require a netconn,
118
    it has its own struct (to avoid struct api_msg getting bigger than necessary).
119
    do_gethostbyname must be called using tcpip_callback instead of tcpip_apimsg
120
    (see netconn_gethostbyname). */
121
struct dns_api_msg {
122
  /** Hostname to query or dotted IP address string */
123
  const char *name;
124
  /** Rhe resolved address is stored here */
125
  struct ip_addr *addr;
126
  /** This semaphore is posted when the name is resolved, the application thread
127
      should wait on it. */
128
  sys_sem_t sem;
129
  /** Errors are given back here */
130
  err_t *err;
131
};
132
#endif /* LWIP_DNS */
133
 
134
void do_newconn         ( struct api_msg_msg *msg);
135
void do_delconn         ( struct api_msg_msg *msg);
136
void do_bind            ( struct api_msg_msg *msg);
137
void do_connect         ( struct api_msg_msg *msg);
138
void do_disconnect      ( struct api_msg_msg *msg);
139
void do_listen          ( struct api_msg_msg *msg);
140
void do_send            ( struct api_msg_msg *msg);
141
void do_recv            ( struct api_msg_msg *msg);
142
void do_write           ( struct api_msg_msg *msg);
143
void do_getaddr         ( struct api_msg_msg *msg);
144
void do_close           ( struct api_msg_msg *msg);
145
#if LWIP_IGMP
146
void do_join_leave_group( struct api_msg_msg *msg);
147
#endif /* LWIP_IGMP */
148
 
149
#if LWIP_DNS
150
void do_gethostbyname(void *arg);
151
#endif /* LWIP_DNS */
152
 
153
struct netconn* netconn_alloc(enum netconn_type t, netconn_callback callback);
154
void netconn_free(struct netconn *conn);
155
 
156
#ifdef __cplusplus
157
}
158
#endif
159
 
160
#endif /* LWIP_NETCONN */
161
 
162
#endif /* __LWIP_API_MSG_H__ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.