Blame view

Tangible/socket.c 15 KB
b34a6f00   pifou   modif socket .h .c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
  /*

  *

  @file		socket.c

  @brief	setting chip register for socket

  		last update : 2008. Jan

  *

  */

  

  #include "ethernet.h"

  #include "w5100.h"

  #include "socket.h"

  

  #ifdef __DEF_IINCHIP_DBG__

  #include <stdio.h>

  #endif

  

  static uint16 local_port;

  

  /**

  @brief	This Socket function initialize the channel in perticular mode, and set the port and wait for W5100 done it.

  @return 	1 for success else 0.

  */  

  uint8 socket(

  	SOCKET s, 		/**< for socket number */

  	uint8 protocol, 	/**< for socket protocol */

  	uint16 port, 		/**< the source port for the socket */

  	uint8 flag		/**< the option for the socket */

  	)

  {

  	uint8 ret;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("socket()\r\n");

  #endif

  	if ((protocol == Sn_MR_TCP) || (protocol == Sn_MR_UDP) || (protocol == Sn_MR_IPRAW) || (protocol == Sn_MR_MACRAW) || (protocol == Sn_MR_PPPOE))

  	{

  		close(s);

  		IINCHIP_WRITE(Sn_MR(s),protocol | flag);

  		if (port != 0) {

  			IINCHIP_WRITE(Sn_PORT0(s),(uint8)((port & 0xff00) >> 8));

  			IINCHIP_WRITE((Sn_PORT0(s) + 1),(uint8)(port & 0x00ff));

  		} else {

  			local_port++; // if don't set the source port, set local_port number.

  			IINCHIP_WRITE(Sn_PORT0(s),(uint8)((local_port & 0xff00) >> 8));

  			IINCHIP_WRITE((Sn_PORT0(s) + 1),(uint8)(local_port & 0x00ff));

  		}

  		IINCHIP_WRITE(Sn_CR(s),Sn_CR_OPEN); // run sockinit Sn_CR

  

  		/* +20071122[chungs]:wait to process the command... */

  		while( IINCHIP_READ(Sn_CR(s)) ) 

  			;

  		/* ------- */

  		ret = 1;

  	}

  	else

  	{

  		ret = 0;

  	}

  #ifdef __DEF_IINCHIP_DBG__

  	printf("Sn_SR = %.2x , Protocol = %.2x\r\n", IINCHIP_READ(Sn_SR(s)), IINCHIP_READ(Sn_MR(s)));

  #endif

  	return ret;

  }

  

  

  /**

  @brief	This function close the socket and parameter is "s" which represent the socket number

  */ 

  void close(SOCKET s)

  {

  #ifdef __DEF_IINCHIP_DBG__

  	printf("close()\r\n");

  #endif

  	

  	IINCHIP_WRITE(Sn_CR(s),Sn_CR_CLOSE);

  

  	/* +20071122[chungs]:wait to process the command... */

  	while( IINCHIP_READ(Sn_CR(s)) ) 

  		;

  	/* ------- */

  

  	/* +2008.01 [hwkim]: clear interrupt */	

  	#ifdef __DEF_IINCHIP_INT__

        /* m2008.01 [bj] : all clear */

  	       putISR(s, 0x00);

  	#else

        /* m2008.01 [bj] : all clear */

  		IINCHIP_WRITE(Sn_IR(s), 0xFF);

  	#endif

  }

  

  

  /**

  @brief	This function established  the connection for the channel in passive (server) mode. This function waits for the request from the peer.

  @return	1 for success else 0.

  */ 

  uint8 listen(

  	SOCKET s	/**< the socket number */

  	)

  {

  	uint8 ret;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("listen()\r\n");

  #endif

  	if (IINCHIP_READ(Sn_SR(s)) == SOCK_INIT)

  	{

  		IINCHIP_WRITE(Sn_CR(s),Sn_CR_LISTEN);

  		/* +20071122[chungs]:wait to process the command... */

  		while( IINCHIP_READ(Sn_CR(s)) );

  		/* ------- */

  		ret = 1;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("status = %x\r\n",IINCHIP_READ(Sn_SR(s)));

  #endif

  	}

  	else

  	{

  		ret = 0;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("Fail[invalid ip,port]\r\n");

  #endif

  	}

  	return ret;

  }

  

  /**

  @brief	This function wait for client connection

  @return	1 for success else 0.

  */ 

  uint8 accept(

  	SOCKET s	/**< the socket number */

  	)

  {

  	uint8 ret;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("accept()\r\n");

  #endif

  	if (IINCHIP_READ(Sn_SR(s)) == SOCK_LISTEN)

  	{

  		while( IINCHIP_READ(Sn_SR(s)) != SOCK_ESTABLISHED );

  		/* ------- */

  		ret = 1;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("status = %x\r\n",IINCHIP_READ(Sn_SR(s)));

  #endif

  	}

  	else

  	{

  		ret = 0;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("Fail[not listening]\r\n");

  #endif

  	}

  	return ret;

  }

  

  

  /**

  @brief	This function established  the connection for the channel in Active (client) mode. 

  		This function waits for the until the connection is established.

  		

  @return	1 for success else 0.

  */ 

  uint8 connect(SOCKET s, uint8 * addr, uint16 port)

  {

  	uint8 ret;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("connect()\r\n");

  #endif

  	if 

  		(

  			((addr[0] == 0xFF) && (addr[1] == 0xFF) && (addr[2] == 0xFF) && (addr[3] == 0xFF)) ||

  		 	((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && (addr[3] == 0x00)) ||

  		 	(port == 0x00) 

  		) 

   	{

   		ret = 0;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("Fail[invalid ip,port]\r\n");

  #endif

  	}

  	else

  	{

  		ret = 1;

  		// set destination IP

  		IINCHIP_WRITE(Sn_DIPR0(s),addr[0]);

  		IINCHIP_WRITE((Sn_DIPR0(s) + 1),addr[1]);

  		IINCHIP_WRITE((Sn_DIPR0(s) + 2),addr[2]);

  		IINCHIP_WRITE((Sn_DIPR0(s) + 3),addr[3]);

  		IINCHIP_WRITE(Sn_DPORT0(s),(uint8)((port & 0xff00) >> 8));

  		IINCHIP_WRITE((Sn_DPORT0(s) + 1),(uint8)(port & 0x00ff));

  		IINCHIP_WRITE(Sn_CR(s),Sn_CR_CONNECT);

        /* m2008.01 [bj] :  wait for completion */

  		while ( IINCHIP_READ(Sn_CR(s)) ) ;

  

  	}

  

  	return ret;

  }

  

  

  

  /**

  @brief	This function used for disconnect the socket and parameter is "s" which represent the socket number

  @return	1 for success else 0.

  */ 

  void disconnect(SOCKET s)

  {

  #ifdef __DEF_IINCHIP_DBG__

  	printf("disconnect()\r\n");

  #endif

  	IINCHIP_WRITE(Sn_CR(s),Sn_CR_DISCON);

  

  	/* +20071122[chungs]:wait to process the command... */

  	while( IINCHIP_READ(Sn_CR(s)) ) 

  		;

  	/* ------- */

  }

  

  

  /**

  @brief	This function used to send the data in TCP mode

  @return	1 for success else 0.

  */ 

  uint16 send(

  	SOCKET s, 		/**< the socket index */

  	const uint8 * buf, 	/**< a pointer to data */

  	uint16 len		/**< the data size to be send */

  	)

  {

  	uint8 status=0;

  	uint16 ret=0;

  	uint16 freesize=0;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("send()\r\n");

  #endif

  

     if (len > getIINCHIP_TxMAX(s)) ret = getIINCHIP_TxMAX(s); // check size not to exceed MAX size.

     else ret = len;

  

     // if freebuf is available, start.

  	do 

  	{

  		freesize = getSn_TX_FSR(s);

  		status = IINCHIP_READ(Sn_SR(s));

  		if ((status != SOCK_ESTABLISHED) && (status != SOCK_CLOSE_WAIT))

  		{

  #ifdef __DEF_IINCHIP_DBG__

  			printf("socket %d freesize(%d) empty or error\r\n", s, freesize);

  #endif

  			ret = 0; 

  			break;

  		}

  	} while (freesize < ret);

  

        // copy data

  	send_data_processing(s, (uint8 *)buf, ret);

  	IINCHIP_WRITE(Sn_CR(s),Sn_CR_SEND);

  

  	/* +20071122[chungs]:wait to process the command... */

  	while( IINCHIP_READ(Sn_CR(s)) ) 

  		;

  	/* ------- */

  

  /* +2008.01 bj */	

  #ifdef __DEF_IINCHIP_INT__

  	while ( (getISR(s) & Sn_IR_SEND_OK) != Sn_IR_SEND_OK ) 

  #else

  	while ( (IINCHIP_READ(Sn_IR(s)) & Sn_IR_SEND_OK) != Sn_IR_SEND_OK ) 

  #endif

  	{

  		/* m2008.01 [bj] : reduce code */

  		if ( IINCHIP_READ(Sn_SR(s)) == SOCK_CLOSED )

  		{

  #ifdef __DEF_IINCHIP_DBG__

  			printf("SOCK_CLOSED.\r\n");

  #endif

  			close(s);

  			return 0;

  		}

    	}

  /* +2008.01 bj */	

  #ifdef __DEF_IINCHIP_INT__

    	putISR(s, getISR(s) & (~Sn_IR_SEND_OK));

  #else

  	IINCHIP_WRITE(Sn_IR(s), Sn_IR_SEND_OK);

  #endif

    	return ret;

  }

  

  

  /**

  @brief	This function is an application I/F function which is used to receive the data in TCP mode.

  		It continues to wait for data as much as the application wants to receive.

  		

  @return	received data size for success else -1.

  */ 

  int16 recv(

  	SOCKET s, 	/**< socket index */

  	uint8 * buf, 	/**< a pointer to copy the data to be received */

  	uint16 len	/**< the data size to be read */

  	)

  {

  	uint16 ret=0;

  	if( IINCHIP_READ(Sn_SR(s)) != SOCK_ESTABLISHED ){

            printf("Bad status = %02x\n",IINCHIP_READ(Sn_SR(s)));

            return -1;

            }

  	int plen = getSn_RX_RSR(0);

  	if( plen <= 0 ) return 0; 

  

  #ifdef __DEF_IINCHIP_DBG__

  	printf("recv()\r\n");

  #endif

  

  	if( plen < len ) len=plen;

  	if ( len > 0 )

  	{

  		recv_data_processing(s, buf, len);

  		IINCHIP_WRITE(Sn_CR(s),Sn_CR_RECV);

  

  		/* +20071122[chungs]:wait to process the command... */

  		while( IINCHIP_READ(Sn_CR(s)) ) 

  			;

  		/* ------- */

  		ret = len;

  	}

  	return ret;

  }

  

  

  /**

  @brief	This function is an application I/F function which is used to send the data for other then TCP mode. 

  		Unlike TCP transmission, The peer's destination address and the port is needed.

  		

  @return	This function return send data size for success else -1.

  */ 

  uint16 sendto(

  	SOCKET s, 		/**< socket index */

  	const uint8 * buf, 	/**< a pointer to the data */

  	uint16 len, 		/**< the data size to send */

  	uint8 * addr, 		/**< the peer's Destination IP address */

  	uint16 port		/**< the peer's destination port number */

  	)

  {

  //	uint8 status=0;

  //	uint8 isr=0;

  	uint16 ret=0;

  	

  #ifdef __DEF_IINCHIP_DBG__

  	printf("sendto()\r\n");

  #endif

     if (len > getIINCHIP_TxMAX(s)) ret = getIINCHIP_TxMAX(s); // check size not to exceed MAX size.

     else ret = len;

  

  	if

  		(

  		 	((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && (addr[3] == 0x00)) ||

  		 	((port == 0x00)) ||(ret == 0)

  		) 

   	{

   	   /* +2008.01 [bj] : added return value */

   	   ret = 0;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("%d Fail[%.2x.%.2x.%.2x.%.2x, %.d, %d]\r\n",s, addr[0], addr[1], addr[2], addr[3] , port, len);

  	printf("Fail[invalid ip,port]\r\n");

  #endif

  	}

  	else

  	{

  		IINCHIP_WRITE(Sn_DIPR0(s),addr[0]);

  		IINCHIP_WRITE((Sn_DIPR0(s) + 1),addr[1]);

  		IINCHIP_WRITE((Sn_DIPR0(s) + 2),addr[2]);

  		IINCHIP_WRITE((Sn_DIPR0(s) + 3),addr[3]);

  		IINCHIP_WRITE(Sn_DPORT0(s),(uint8)((port & 0xff00) >> 8));

  		IINCHIP_WRITE((Sn_DPORT0(s) + 1),(uint8)(port & 0x00ff));

  

    		// copy data

    		send_data_processing(s, (uint8 *)buf, ret);

  		IINCHIP_WRITE(Sn_CR(s),Sn_CR_SEND);

  

  		/* +20071122[chungs]:wait to process the command... */

  		while( IINCHIP_READ(Sn_CR(s)) ) 

  			;

  		/* ------- */

  		

  /* +2008.01 bj */	

  #ifdef __DEF_IINCHIP_INT__

     	while ( (getISR(s) & Sn_IR_SEND_OK) != Sn_IR_SEND_OK ) 

  #else

  	   while ( (IINCHIP_READ(Sn_IR(s)) & Sn_IR_SEND_OK) != Sn_IR_SEND_OK ) 

  #endif

  		{

  #ifdef __DEF_IINCHIP_INT__

        	if (getISR(s) & Sn_IR_TIMEOUT)

  #else

  	      if (IINCHIP_READ(Sn_IR(s)) & Sn_IR_TIMEOUT)

  #endif

  			{

  #ifdef __DEF_IINCHIP_DBG__

  				printf("send fail.\r\n");

  #endif

  /* +2008.01 [bj]: clear interrupt */

  #ifdef __DEF_IINCHIP_INT__

           	putISR(s, getISR(s) & ~(Sn_IR_SEND_OK | Sn_IR_TIMEOUT));  /* clear SEND_OK & TIMEOUT */

  #else

           	IINCHIP_WRITE(Sn_IR(s), (Sn_IR_SEND_OK | Sn_IR_TIMEOUT)); /* clear SEND_OK & TIMEOUT */

  #endif

  			return 0;

  			}

  		}

  

  /* +2008.01 bj */	

  #ifdef __DEF_IINCHIP_INT__

       	putISR(s, getISR(s) & (~Sn_IR_SEND_OK));

  #else

  	   IINCHIP_WRITE(Sn_IR(s), Sn_IR_SEND_OK);

  #endif

  

  	}

  	return ret;

  }

  

  

  /**

  @brief	This function is an application I/F function which is used to receive the data in other then

  	TCP mode. This function is used to receive UDP, IP_RAW and MAC_RAW mode, and handle the header as well. 

  	

  @return	This function return received data size for success else -1.

  */ 

  uint16 recvfrom(

  	SOCKET s, 	/**< the socket number */

  	uint8 * buf, 	/**< a pointer to copy the data to be received */

  	uint16 len, 	/**< the data size to read */

  	uint8 * addr, 	/**< a pointer to store the peer's IP address */

  	uint16 *port	/**< a pointer to store the peer's port number. */

  	)

  {

  	uint8 head[8];

  	uint16 data_len=0;

          uint16 plen = getSn_RX_RSR(s);

  	uint16 ptr=0;

  

          if(plen <=0 ) return 0;

  

  #ifdef __DEF_IINCHIP_DBG__

  	printf("recvfrom()\r\n");

  #endif

  

          plen = getSn_RX_RSR(s);

  	if ( len > 0 )

  	{

     	ptr = IINCHIP_READ(Sn_RX_RD0(s));

     	ptr = ((ptr & 0x00ff) << 8) + IINCHIP_READ(Sn_RX_RD0(s) + 1);

      

  #ifdef __DEF_IINCHIP_DBG__

     	printf("ISR_RX: rd_ptr : %.4x size=%d\r\n", ptr, plen);

  #endif

     	switch (IINCHIP_READ(Sn_MR(s)) & 0x07)

     	{

     	case Sn_MR_UDP :

     			read_data(s, (uint8 *)ptr, head, 0x08);

     			ptr += 8;

     			// read peer's IP address, port number.

      			addr[0] = head[0];

     			addr[1] = head[1];

     			addr[2] = head[2];

     			addr[3] = head[3];

     			*port = head[4];

     			*port = (*port << 8) + head[5];

     			data_len = head[6];

     			data_len = (data_len << 8) + head[7];

     			

  #ifdef __DEF_IINCHIP_DBG__

     			printf("UDP msg #%d arrived\r\n",data_len);

     			printf("source Port : %u\r\n", *port);

     			printf("source IP : %d.%d.%d.%d\r\n", addr[0], addr[1], addr[2], addr[3]);

  #endif

  

  			read_data(s, (uint8 *)ptr, buf, data_len); // data copy.

  			ptr += data_len;

  

  			IINCHIP_WRITE(Sn_RX_RD0(s),(uint8)((ptr & 0xff00) >> 8));

  			IINCHIP_WRITE((Sn_RX_RD0(s) + 1),(uint8)(ptr & 0x00ff));

     			break;

     

     	case Sn_MR_IPRAW :

     			read_data(s, (uint8 *)ptr, head, 0x06);

     			ptr += 6;

     

     			addr[0] = head[0];

     			addr[1] = head[1];

     			addr[2] = head[2];

     			addr[3] = head[3];

     			data_len = head[4];

     			data_len = (data_len << 8) + head[5];

     	

  #ifdef __DEF_IINCHIP_DBG__

     			printf("IP RAW msg arrived\r\n");

     			printf("source IP : %d.%d.%d.%d\r\n", addr[0], addr[1], addr[2], addr[3]);

  #endif

  			read_data(s, (uint8 *)ptr, buf, data_len); // data copy.

  			ptr += data_len;

  

  			IINCHIP_WRITE(Sn_RX_RD0(s),(uint8)((ptr & 0xff00) >> 8));

  			IINCHIP_WRITE((Sn_RX_RD0(s) + 1),(uint8)(ptr & 0x00ff));

     			break;

     	case Sn_MR_MACRAW :

     			read_data(s,(uint8*)ptr,head,2);

     			ptr+=2;

     			data_len = head[0];

     			data_len = (data_len<<8) + head[1] - 2;

  

     			read_data(s,(uint8*) ptr,buf,data_len);

     			ptr += data_len;

     			IINCHIP_WRITE(Sn_RX_RD0(s),(uint8)((ptr & 0xff00) >> 8));

     			IINCHIP_WRITE((Sn_RX_RD0(s) + 1),(uint8)(ptr & 0x00ff));

     			

  #ifdef __DEF_IINCHIP_DGB__

  			printf("MAC RAW msg arrived\r\n");

  			printf("dest mac=%.2X.%.2X.%.2X.%.2X.%.2X.%.2X\r\n",buf[0],buf[1],buf[2],buf[3],buf[4],buf[5]);

  			printf("src  mac=%.2X.%.2X.%.2X.%.2X.%.2X.%.2X\r\n",buf[6],buf[7],buf[8],buf[9],buf[10],buf[11]);

  			printf("type    =%.2X%.2X\r\n",buf[12],buf[13]); 

  #endif			

  			break;

  

     	default :

     			break;

     	}

  		IINCHIP_WRITE(Sn_CR(s),Sn_CR_RECV);

  

  		/* +20071122[chungs]:wait to process the command... */

  		while( IINCHIP_READ(Sn_CR(s)) ) 

  			;

  		/* ------- */

  	}

  #ifdef __DEF_IINCHIP_DBG__

  	printf("recvfrom() end ..\r\n");

  #endif

   	return data_len;

  }

  

  

  uint16 igmpsend(SOCKET s, const uint8 * buf, uint16 len)

  {

  	uint8 status=0;

  //	uint8 isr=0;

  	uint16 ret=0;

  	

  #ifdef __DEF_IINCHIP_DBG__

  	printf("igmpsend()\r\n");

  #endif

     if (len > getIINCHIP_TxMAX(s)) ret = getIINCHIP_TxMAX(s); // check size not to exceed MAX size.

     else ret = len;

  

  	if	(ret == 0) 

   	{

   	   ;

  #ifdef __DEF_IINCHIP_DBG__

  	printf("%d Fail[%d]\r\n",len,ret);

  #endif

  	}

  	else

  	{

  		// copy data

  		send_data_processing(s, (uint8 *)buf, ret);

  		IINCHIP_WRITE(Sn_CR(s),Sn_CR_SEND);

  /* +2008.01 bj */	

  		while( IINCHIP_READ(Sn_CR(s)) ) 

  			;

  /* ------- */

  		

  /* +2008.01 bj */	

  #ifdef __DEF_IINCHIP_INT__

     	while ( (getISR(s) & Sn_IR_SEND_OK) != Sn_IR_SEND_OK ) 

  #else

  	   while ( (IINCHIP_READ(Sn_IR(s)) & Sn_IR_SEND_OK) != Sn_IR_SEND_OK ) 

  #endif

  		{

  			status = IINCHIP_READ(Sn_SR(s));

  #ifdef __DEF_IINCHIP_INT__

        	if (getISR(s) & Sn_IR_TIMEOUT)

  #else

  	      if (IINCHIP_READ(Sn_IR(s)) & Sn_IR_TIMEOUT)

  #endif

  			{

  #ifdef __DEF_IINCHIP_DBG__

  				printf("igmpsend fail.\r\n");

  #endif

  			   /* in case of igmp, if send fails, then socket closed */

  			   /* if you want change, remove this code. */

  			   close(s);

  			   /* ----- */

  			   

  				return 0;

  			}

  		}

  

  /* +2008.01 bj */	

  #ifdef __DEF_IINCHIP_INT__

       	putISR(s, getISR(s) & (~Sn_IR_SEND_OK));

  #else

  	   IINCHIP_WRITE(Sn_IR(s), Sn_IR_SEND_OK);

  #endif

     }

  	return ret;

  }