Initialize tcpip process before resolver process.
Since introduction of mDNS (f145c17039
)
the resolver process initialization depends on the tcpip process
already being initialized (because of the call to udp_new()).
This commit is contained in:
parent
ce7f350ba9
commit
6fc83cf601
|
@ -45,15 +45,15 @@
|
|||
#endif /* WITH_GUI */
|
||||
|
||||
#if WITH_DNS
|
||||
#define RESOLV_PROCESS &resolv_process,
|
||||
#define RESOLV_PROCESS ,&resolv_process
|
||||
#else /* WITH_DNS */
|
||||
#define RESOLV_PROCESS
|
||||
#endif /* WITH_DNS */
|
||||
|
||||
PROCINIT(&etimer_process,
|
||||
CTK_PROCESS
|
||||
RESOLV_PROCESS
|
||||
&tcpip_process);
|
||||
&tcpip_process
|
||||
RESOLV_PROCESS);
|
||||
|
||||
void clock_update(void);
|
||||
|
||||
|
|
|
@ -45,15 +45,15 @@
|
|||
#endif /* WITH_GUI */
|
||||
|
||||
#if WITH_DNS
|
||||
#define RESOLV_PROCESS &resolv_process,
|
||||
#define RESOLV_PROCESS ,&resolv_process
|
||||
#else /* WITH_DNS */
|
||||
#define RESOLV_PROCESS
|
||||
#endif /* WITH_DNS */
|
||||
|
||||
PROCINIT(&etimer_process,
|
||||
CTK_PROCESS
|
||||
RESOLV_PROCESS
|
||||
&tcpip_process);
|
||||
&tcpip_process
|
||||
RESOLV_PROCESS);
|
||||
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
void
|
||||
|
|
|
@ -45,15 +45,15 @@
|
|||
#endif /* WITH_GUI */
|
||||
|
||||
#if WITH_DNS
|
||||
#define RESOLV_PROCESS &resolv_process,
|
||||
#define RESOLV_PROCESS ,&resolv_process
|
||||
#else /* WITH_DNS */
|
||||
#define RESOLV_PROCESS
|
||||
#endif /* WITH_DNS */
|
||||
|
||||
PROCINIT(&etimer_process,
|
||||
CTK_PROCESS
|
||||
RESOLV_PROCESS
|
||||
&tcpip_process);
|
||||
&tcpip_process
|
||||
RESOLV_PROCESS);
|
||||
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
void
|
||||
|
|
|
@ -47,15 +47,15 @@
|
|||
#endif /* WITH_GUI */
|
||||
|
||||
#if WITH_DNS
|
||||
#define RESOLV_PROCESS &resolv_process,
|
||||
#define RESOLV_PROCESS ,&resolv_process
|
||||
#else /* WITH_DNS */
|
||||
#define RESOLV_PROCESS
|
||||
#endif /* WITH_DNS */
|
||||
|
||||
PROCINIT(&etimer_process,
|
||||
CTK_PROCESS
|
||||
RESOLV_PROCESS
|
||||
&tcpip_process);
|
||||
&tcpip_process
|
||||
RESOLV_PROCESS);
|
||||
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
void
|
||||
|
|
|
@ -47,15 +47,15 @@
|
|||
#endif /* WITH_GUI */
|
||||
|
||||
#if WITH_DNS
|
||||
#define RESOLV_PROCESS &resolv_process,
|
||||
#define RESOLV_PROCESS ,&resolv_process
|
||||
#else /* WITH_DNS */
|
||||
#define RESOLV_PROCESS
|
||||
#endif /* WITH_DNS */
|
||||
|
||||
PROCINIT(&etimer_process,
|
||||
CTK_PROCESS
|
||||
RESOLV_PROCESS
|
||||
&tcpip_process);
|
||||
&tcpip_process
|
||||
RESOLV_PROCESS);
|
||||
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue