This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Clarify example of .. in perlop
[perl5.git] / win32 / win32sck.c
1 /* win32sck.c
2  *
3  * (c) 1995 Microsoft Corporation. All rights reserved. 
4  *              Developed by hip communications inc., http://info.hip.com/info/
5  * Portions (c) 1993 Intergraph Corporation. All rights reserved.
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  */
10
11 #define WIN32IO_IS_STDIO
12 #define WIN32SCK_IS_STDSCK
13 #define WIN32_LEAN_AND_MEAN
14 #define PERLIO_NOT_STDIO 0
15 #ifdef __GNUC__
16 #define Win32_Winsock
17 #endif
18 #include <windows.h>
19 #include <ws2spi.h>
20
21 #include "EXTERN.h"
22 #include "perl.h"
23
24 #include "Win32iop.h"
25 #include <sys/socket.h>
26 #include <fcntl.h>
27 #include <sys/stat.h>
28 #include <assert.h>
29 #include <io.h>
30
31 /* thanks to Beverly Brown      (beverly@datacube.com) */
32 #ifdef USE_SOCKETS_AS_HANDLES
33 #       define OPEN_SOCKET(x)   win32_open_osfhandle(x,O_RDWR|O_BINARY)
34 #       define TO_SOCKET(x)     _get_osfhandle(x)
35 #else
36 #       define OPEN_SOCKET(x)   (x)
37 #       define TO_SOCKET(x)     (x)
38 #endif  /* USE_SOCKETS_AS_HANDLES */
39
40 #if defined(USE_ITHREADS)
41 #define StartSockets() \
42     STMT_START {                                        \
43         if (!wsock_started)                             \
44             start_sockets();                            \
45         set_socktype();                                 \
46     } STMT_END
47 #else
48 #define StartSockets() \
49     STMT_START {                                        \
50         if (!wsock_started) {                           \
51             start_sockets();                            \
52             set_socktype();                             \
53         }                                               \
54     } STMT_END
55 #endif
56
57 #define SOCKET_TEST(x, y) \
58     STMT_START {                                        \
59         StartSockets();                                 \
60         if((x) == (y))                                  \
61             errno = WSAGetLastError();                  \
62     } STMT_END
63
64 #define SOCKET_TEST_ERROR(x) SOCKET_TEST(x, SOCKET_ERROR)
65
66 static struct servent* win32_savecopyservent(struct servent*d,
67                                              struct servent*s,
68                                              const char *proto);
69
70 static int wsock_started = 0;
71
72 EXTERN_C void
73 EndSockets(void)
74 {
75     if (wsock_started)
76         WSACleanup();
77 }
78
79 void
80 start_sockets(void) 
81 {
82     dTHX;
83     unsigned short version;
84     WSADATA retdata;
85     int ret;
86
87     /*
88      * initalize the winsock interface and insure that it is
89      * cleaned up at exit.
90      */
91     version = 0x2;
92     if(ret = WSAStartup(version, &retdata))
93         Perl_croak_nocontext("Unable to locate winsock library!\n");
94     if(retdata.wVersion != version)
95         Perl_croak_nocontext("Could not find version 2.0 of winsock dll\n");
96
97     /* atexit((void (*)(void)) EndSockets); */
98     wsock_started = 1;
99 }
100
101 void
102 set_socktype(void)
103 {
104 }
105
106
107 #ifndef USE_SOCKETS_AS_HANDLES
108 #undef fdopen
109 FILE *
110 my_fdopen(int fd, char *mode)
111 {
112     FILE *fp;
113     char sockbuf[256];
114     int optlen = sizeof(sockbuf);
115     int retval;
116
117     if (!wsock_started)
118         return(fdopen(fd, mode));
119
120     retval = getsockopt((SOCKET)fd, SOL_SOCKET, SO_TYPE, sockbuf, &optlen);
121     if(retval == SOCKET_ERROR && WSAGetLastError() == WSAENOTSOCK) {
122         return(fdopen(fd, mode));
123     }
124
125     /*
126      * If we get here, then fd is actually a socket.
127      */
128     Newxz(fp, 1, FILE); /* XXX leak, good thing this code isn't used */
129     if(fp == NULL) {
130         errno = ENOMEM;
131         return NULL;
132     }
133
134     fp->_file = fd;
135     if(*mode == 'r')
136         fp->_flag = _IOREAD;
137     else
138         fp->_flag = _IOWRT;
139    
140     return fp;
141 }
142 #endif  /* USE_SOCKETS_AS_HANDLES */
143
144
145 u_long
146 win32_htonl(u_long hostlong)
147 {
148     StartSockets();
149     return htonl(hostlong);
150 }
151
152 u_short
153 win32_htons(u_short hostshort)
154 {
155     StartSockets();
156     return htons(hostshort);
157 }
158
159 u_long
160 win32_ntohl(u_long netlong)
161 {
162     StartSockets();
163     return ntohl(netlong);
164 }
165
166 u_short
167 win32_ntohs(u_short netshort)
168 {
169     StartSockets();
170     return ntohs(netshort);
171 }
172
173
174
175 SOCKET
176 win32_accept(SOCKET s, struct sockaddr *addr, int *addrlen)
177 {
178     SOCKET r;
179
180     SOCKET_TEST((r = accept(TO_SOCKET(s), addr, addrlen)), INVALID_SOCKET);
181     return OPEN_SOCKET(r);
182 }
183
184 int
185 win32_bind(SOCKET s, const struct sockaddr *addr, int addrlen)
186 {
187     int r;
188
189     SOCKET_TEST_ERROR(r = bind(TO_SOCKET(s), addr, addrlen));
190     return r;
191 }
192
193 int
194 win32_connect(SOCKET s, const struct sockaddr *addr, int addrlen)
195 {
196     int r;
197
198     SOCKET_TEST_ERROR(r = connect(TO_SOCKET(s), addr, addrlen));
199     return r;
200 }
201
202
203 int
204 win32_getpeername(SOCKET s, struct sockaddr *addr, int *addrlen)
205 {
206     int r;
207
208     SOCKET_TEST_ERROR(r = getpeername(TO_SOCKET(s), addr, addrlen));
209     return r;
210 }
211
212 int
213 win32_getsockname(SOCKET s, struct sockaddr *addr, int *addrlen)
214 {
215     int r;
216
217     SOCKET_TEST_ERROR(r = getsockname(TO_SOCKET(s), addr, addrlen));
218     return r;
219 }
220
221 int
222 win32_getsockopt(SOCKET s, int level, int optname, char *optval, int *optlen)
223 {
224     int r;
225
226     SOCKET_TEST_ERROR(r = getsockopt(TO_SOCKET(s), level, optname, optval, optlen));
227     return r;
228 }
229
230 int
231 win32_ioctlsocket(SOCKET s, long cmd, u_long *argp)
232 {
233     int r;
234
235     SOCKET_TEST_ERROR(r = ioctlsocket(TO_SOCKET(s), cmd, argp));
236     return r;
237 }
238
239 int
240 win32_listen(SOCKET s, int backlog)
241 {
242     int r;
243
244     SOCKET_TEST_ERROR(r = listen(TO_SOCKET(s), backlog));
245     return r;
246 }
247
248 int
249 win32_recv(SOCKET s, char *buf, int len, int flags)
250 {
251     int r;
252
253     SOCKET_TEST_ERROR(r = recv(TO_SOCKET(s), buf, len, flags));
254     return r;
255 }
256
257 int
258 win32_recvfrom(SOCKET s, char *buf, int len, int flags, struct sockaddr *from, int *fromlen)
259 {
260     int r;
261     int frombufsize = *fromlen;
262
263     SOCKET_TEST_ERROR(r = recvfrom(TO_SOCKET(s), buf, len, flags, from, fromlen));
264     /* Winsock's recvfrom() only returns a valid 'from' when the socket
265      * is connectionless.  Perl expects a valid 'from' for all types
266      * of sockets, so go the extra mile.
267      */
268     if (r != SOCKET_ERROR && frombufsize == *fromlen)
269         (void)win32_getpeername(s, from, fromlen);
270     return r;
271 }
272
273 /* select contributed by Vincent R. Slyngstad (vrs@ibeam.intel.com) */
274 int
275 win32_select(int nfds, Perl_fd_set* rd, Perl_fd_set* wr, Perl_fd_set* ex, const struct timeval* timeout)
276 {
277     int r;
278 #ifdef USE_SOCKETS_AS_HANDLES
279     Perl_fd_set dummy;
280     int i, fd, save_errno = errno;
281     FD_SET nrd, nwr, nex, *prd, *pwr, *pex;
282
283     /* winsock seems incapable of dealing with all three null fd_sets,
284      * so do the (millisecond) sleep as a special case
285      */
286     if (!(rd || wr || ex)) {
287         if (timeout)
288             Sleep(timeout->tv_sec  * 1000 +
289                   timeout->tv_usec / 1000);     /* do the best we can */
290         else
291             Sleep(UINT_MAX);
292         return 0;
293     }
294     StartSockets();
295     PERL_FD_ZERO(&dummy);
296     if (!rd)
297         rd = &dummy, prd = NULL;
298     else
299         prd = &nrd;
300     if (!wr)
301         wr = &dummy, pwr = NULL;
302     else
303         pwr = &nwr;
304     if (!ex)
305         ex = &dummy, pex = NULL;
306     else
307         pex = &nex;
308
309     FD_ZERO(&nrd);
310     FD_ZERO(&nwr);
311     FD_ZERO(&nex);
312     for (i = 0; i < nfds; i++) {
313         fd = TO_SOCKET(i);
314         if (PERL_FD_ISSET(i,rd))
315             FD_SET((unsigned)fd, &nrd);
316         if (PERL_FD_ISSET(i,wr))
317             FD_SET((unsigned)fd, &nwr);
318         if (PERL_FD_ISSET(i,ex))
319             FD_SET((unsigned)fd, &nex);
320     }
321
322     errno = save_errno;
323     SOCKET_TEST_ERROR(r = select(nfds, prd, pwr, pex, timeout));
324     save_errno = errno;
325
326     for (i = 0; i < nfds; i++) {
327         fd = TO_SOCKET(i);
328         if (PERL_FD_ISSET(i,rd) && !FD_ISSET(fd, &nrd))
329             PERL_FD_CLR(i,rd);
330         if (PERL_FD_ISSET(i,wr) && !FD_ISSET(fd, &nwr))
331             PERL_FD_CLR(i,wr);
332         if (PERL_FD_ISSET(i,ex) && !FD_ISSET(fd, &nex))
333             PERL_FD_CLR(i,ex);
334     }
335     errno = save_errno;
336 #else
337     SOCKET_TEST_ERROR(r = select(nfds, rd, wr, ex, timeout));
338 #endif
339     return r;
340 }
341
342 int
343 win32_send(SOCKET s, const char *buf, int len, int flags)
344 {
345     int r;
346
347     SOCKET_TEST_ERROR(r = send(TO_SOCKET(s), buf, len, flags));
348     return r;
349 }
350
351 int
352 win32_sendto(SOCKET s, const char *buf, int len, int flags,
353              const struct sockaddr *to, int tolen)
354 {
355     int r;
356
357     SOCKET_TEST_ERROR(r = sendto(TO_SOCKET(s), buf, len, flags, to, tolen));
358     return r;
359 }
360
361 int
362 win32_setsockopt(SOCKET s, int level, int optname, const char *optval, int optlen)
363 {
364     int r;
365
366     SOCKET_TEST_ERROR(r = setsockopt(TO_SOCKET(s), level, optname, optval, optlen));
367     return r;
368 }
369     
370 int
371 win32_shutdown(SOCKET s, int how)
372 {
373     int r;
374
375     SOCKET_TEST_ERROR(r = shutdown(TO_SOCKET(s), how));
376     return r;
377 }
378
379 int
380 win32_closesocket(SOCKET s)
381 {
382     int r;
383
384     SOCKET_TEST_ERROR(r = closesocket(TO_SOCKET(s)));
385     return r;
386 }
387
388 #ifdef USE_SOCKETS_AS_HANDLES
389 #define WIN32_OPEN_SOCKET(af, type, protocol) open_ifs_socket(af, type, protocol)
390
391 void
392 convert_proto_info_w2a(WSAPROTOCOL_INFOW *in, WSAPROTOCOL_INFOA *out)
393 {
394     Copy(in, out, 1, WSAPROTOCOL_INFOA);
395     wcstombs(out->szProtocol, in->szProtocol, sizeof(out->szProtocol));
396 }
397
398 SOCKET
399 open_ifs_socket(int af, int type, int protocol)
400 {
401     dTHX;
402     char *s;
403     unsigned long proto_buffers_len = 0;
404     int error_code;
405     SOCKET out = INVALID_SOCKET;
406
407     if ((s = PerlEnv_getenv("PERL_ALLOW_NON_IFS_LSP")) && atoi(s))
408         return WSASocket(af, type, protocol, NULL, 0, 0);
409
410     if (WSCEnumProtocols(NULL, NULL, &proto_buffers_len, &error_code) == SOCKET_ERROR
411         && error_code == WSAENOBUFS)
412     {
413         WSAPROTOCOL_INFOW *proto_buffers;
414         int protocols_available = 0;       
415  
416         Newx(proto_buffers, proto_buffers_len / sizeof(WSAPROTOCOL_INFOW),
417             WSAPROTOCOL_INFOW);
418
419         if ((protocols_available = WSCEnumProtocols(NULL, proto_buffers, 
420             &proto_buffers_len, &error_code)) != SOCKET_ERROR)
421         {
422             int i;
423             for (i = 0; i < protocols_available; i++)
424             {
425                 WSAPROTOCOL_INFOA proto_info;
426
427                 if ((af != AF_UNSPEC && af != proto_buffers[i].iAddressFamily)
428                     || (type != proto_buffers[i].iSocketType)
429                     || (protocol != 0 && proto_buffers[i].iProtocol != 0 &&
430                         protocol != proto_buffers[i].iProtocol))
431                     continue;
432
433                 if ((proto_buffers[i].dwServiceFlags1 & XP1_IFS_HANDLES) == 0)
434                     continue;
435
436                 convert_proto_info_w2a(&(proto_buffers[i]), &proto_info);
437
438                 out = WSASocket(af, type, protocol, &proto_info, 0, 0);
439                 break;
440             }
441         }
442
443         Safefree(proto_buffers);
444     }
445
446     return out;
447 }
448
449 #else
450 #define WIN32_OPEN_SOCKET(af, type, protocol) socket(af, type, protocol)
451 #endif
452
453 SOCKET
454 win32_socket(int af, int type, int protocol)
455 {
456     SOCKET s;
457
458 #ifndef USE_SOCKETS_AS_HANDLES
459     SOCKET_TEST(s = socket(af, type, protocol), INVALID_SOCKET);
460 #else
461     StartSockets();
462
463     if((s = WIN32_OPEN_SOCKET(af, type, protocol)) == INVALID_SOCKET)
464         errno = WSAGetLastError();
465     else
466         s = OPEN_SOCKET(s);
467 #endif  /* USE_SOCKETS_AS_HANDLES */
468
469     return s;
470 }
471
472 /*
473  * close RTL fd while respecting sockets
474  * added as temporary measure until PerlIO has real
475  * Win32 native layer
476  *   -- BKS, 11-11-2000
477 */
478
479 int my_close(int fd)
480 {
481     int osf;
482     if (!wsock_started)         /* No WinSock? */
483         return(close(fd));      /* Then not a socket. */
484     osf = TO_SOCKET(fd);/* Get it now before it's gone! */
485     if (osf != -1) {
486         int err;
487         err = closesocket(osf);
488         if (err == 0) {
489 #if defined(USE_FIXED_OSFHANDLE) || defined(PERL_MSVCRT_READFIX)
490             _set_osfhnd(fd, INVALID_HANDLE_VALUE);
491 #endif
492             (void)close(fd);    /* handle already closed, ignore error */
493             return 0;
494         }
495         else if (err == SOCKET_ERROR) {
496             err = WSAGetLastError();
497             if (err != WSAENOTSOCK) {
498                 (void)close(fd);
499                 errno = err;
500                 return EOF;
501             }
502         }
503     }
504     return close(fd);
505 }
506
507 #undef fclose
508 int
509 my_fclose (FILE *pf)
510 {
511     int osf;
512     if (!wsock_started)         /* No WinSock? */
513         return(fclose(pf));     /* Then not a socket. */
514     osf = TO_SOCKET(win32_fileno(pf));/* Get it now before it's gone! */
515     if (osf != -1) {
516         int err;
517         win32_fflush(pf);
518         err = closesocket(osf);
519         if (err == 0) {
520 #if defined(USE_FIXED_OSFHANDLE) || defined(PERL_MSVCRT_READFIX)
521             _set_osfhnd(win32_fileno(pf), INVALID_HANDLE_VALUE);
522 #endif
523             (void)fclose(pf);   /* handle already closed, ignore error */
524             return 0;
525         }
526         else if (err == SOCKET_ERROR) {
527             err = WSAGetLastError();
528             if (err != WSAENOTSOCK) {
529                 (void)fclose(pf);
530                 errno = err;
531                 return EOF;
532             }
533         }
534     }
535     return fclose(pf);
536 }
537
538 #undef fstat
539 int
540 my_fstat(int fd, Stat_t *sbufptr)
541 {
542     /* This fixes a bug in fstat() on Windows 9x.  fstat() uses the
543      * GetFileType() win32 syscall, which will fail on Windows 9x.
544      * So if we recognize a socket on Windows 9x, we return the
545      * same results as on Windows NT/2000.
546      * XXX this should be extended further to set S_IFSOCK on
547      * sbufptr->st_mode.
548      */
549     int osf;
550     if (!wsock_started || IsWinNT()) {
551 #if defined(WIN64) || defined(USE_LARGE_FILES)
552 #if defined(__BORLANDC__) /* buk */
553         return win32_fstat(fd, sbufptr );
554 #else
555         return _fstati64(fd, sbufptr);
556 #endif
557 #else
558         return fstat(fd, sbufptr);
559 #endif
560     }
561
562     osf = TO_SOCKET(fd);
563     if (osf != -1) {
564         char sockbuf[256];
565         int optlen = sizeof(sockbuf);
566         int retval;
567
568         retval = getsockopt((SOCKET)osf, SOL_SOCKET, SO_TYPE, sockbuf, &optlen);
569         if (retval != SOCKET_ERROR || WSAGetLastError() != WSAENOTSOCK) {
570 #if defined(__BORLANDC__)&&(__BORLANDC__<=0x520)
571             sbufptr->st_mode = S_IFIFO;
572 #else
573             sbufptr->st_mode = _S_IFIFO;
574 #endif
575             sbufptr->st_rdev = sbufptr->st_dev = (dev_t)fd;
576             sbufptr->st_nlink = 1;
577             sbufptr->st_uid = sbufptr->st_gid = sbufptr->st_ino = 0;
578             sbufptr->st_atime = sbufptr->st_mtime = sbufptr->st_ctime = 0;
579             sbufptr->st_size = (Off_t)0;
580             return 0;
581         }
582     }
583 #if defined(WIN64) || defined(USE_LARGE_FILES)
584 #if defined(__BORLANDC__) /* buk */
585     return win32_fstat(fd, sbufptr );
586 #else
587     return _fstati64(fd, sbufptr);
588 #endif
589 #else
590     return fstat(fd, sbufptr);
591 #endif
592 }
593
594 struct hostent *
595 win32_gethostbyaddr(const char *addr, int len, int type)
596 {
597     struct hostent *r;
598
599     SOCKET_TEST(r = gethostbyaddr(addr, len, type), NULL);
600     return r;
601 }
602
603 struct hostent *
604 win32_gethostbyname(const char *name)
605 {
606     struct hostent *r;
607
608     SOCKET_TEST(r = gethostbyname(name), NULL);
609     return r;
610 }
611
612 int
613 win32_gethostname(char *name, int len)
614 {
615     int r;
616
617     SOCKET_TEST_ERROR(r = gethostname(name, len));
618     return r;
619 }
620
621 struct protoent *
622 win32_getprotobyname(const char *name)
623 {
624     struct protoent *r;
625
626     SOCKET_TEST(r = getprotobyname(name), NULL);
627     return r;
628 }
629
630 struct protoent *
631 win32_getprotobynumber(int num)
632 {
633     struct protoent *r;
634
635     SOCKET_TEST(r = getprotobynumber(num), NULL);
636     return r;
637 }
638
639 struct servent *
640 win32_getservbyname(const char *name, const char *proto)
641 {
642     dTHX;    
643     struct servent *r;
644
645     SOCKET_TEST(r = getservbyname(name, proto), NULL);
646     if (r) {
647         r = win32_savecopyservent(&w32_servent, r, proto);
648     }
649     return r;
650 }
651
652 struct servent *
653 win32_getservbyport(int port, const char *proto)
654 {
655     dTHX; 
656     struct servent *r;
657
658     SOCKET_TEST(r = getservbyport(port, proto), NULL);
659     if (r) {
660         r = win32_savecopyservent(&w32_servent, r, proto);
661     }
662     return r;
663 }
664
665 int
666 win32_ioctl(int i, unsigned int u, char *data)
667 {
668     dTHX;
669     u_long argp = (u_long)data;
670     int retval;
671
672     if (!wsock_started) {
673         Perl_croak_nocontext("ioctl implemented only on sockets");
674         /* NOTREACHED */
675     }
676
677     retval = ioctlsocket(TO_SOCKET(i), (long)u, &argp);
678     if (retval == SOCKET_ERROR) {
679         if (WSAGetLastError() == WSAENOTSOCK) {
680             Perl_croak_nocontext("ioctl implemented only on sockets");
681             /* NOTREACHED */
682         }
683         errno = WSAGetLastError();
684     }
685     return retval;
686 }
687
688 char FAR *
689 win32_inet_ntoa(struct in_addr in)
690 {
691     StartSockets();
692     return inet_ntoa(in);
693 }
694
695 unsigned long
696 win32_inet_addr(const char FAR *cp)
697 {
698     StartSockets();
699     return inet_addr(cp);
700 }
701
702 /*
703  * Networking stubs
704  */
705
706 void
707 win32_endhostent() 
708 {
709     dTHX;
710     Perl_croak_nocontext("endhostent not implemented!\n");
711 }
712
713 void
714 win32_endnetent()
715 {
716     dTHX;
717     Perl_croak_nocontext("endnetent not implemented!\n");
718 }
719
720 void
721 win32_endprotoent()
722 {
723     dTHX;
724     Perl_croak_nocontext("endprotoent not implemented!\n");
725 }
726
727 void
728 win32_endservent()
729 {
730     dTHX;
731     Perl_croak_nocontext("endservent not implemented!\n");
732 }
733
734
735 struct netent *
736 win32_getnetent(void) 
737 {
738     dTHX;
739     Perl_croak_nocontext("getnetent not implemented!\n");
740     return (struct netent *) NULL;
741 }
742
743 struct netent *
744 win32_getnetbyname(char *name) 
745 {
746     dTHX;
747     Perl_croak_nocontext("getnetbyname not implemented!\n");
748     return (struct netent *)NULL;
749 }
750
751 struct netent *
752 win32_getnetbyaddr(long net, int type) 
753 {
754     dTHX;
755     Perl_croak_nocontext("getnetbyaddr not implemented!\n");
756     return (struct netent *)NULL;
757 }
758
759 struct protoent *
760 win32_getprotoent(void) 
761 {
762     dTHX;
763     Perl_croak_nocontext("getprotoent not implemented!\n");
764     return (struct protoent *) NULL;
765 }
766
767 struct servent *
768 win32_getservent(void) 
769 {
770     dTHX;
771     Perl_croak_nocontext("getservent not implemented!\n");
772     return (struct servent *) NULL;
773 }
774
775 void
776 win32_sethostent(int stayopen)
777 {
778     dTHX;
779     Perl_croak_nocontext("sethostent not implemented!\n");
780 }
781
782
783 void
784 win32_setnetent(int stayopen)
785 {
786     dTHX;
787     Perl_croak_nocontext("setnetent not implemented!\n");
788 }
789
790
791 void
792 win32_setprotoent(int stayopen)
793 {
794     dTHX;
795     Perl_croak_nocontext("setprotoent not implemented!\n");
796 }
797
798
799 void
800 win32_setservent(int stayopen)
801 {
802     dTHX;
803     Perl_croak_nocontext("setservent not implemented!\n");
804 }
805
806 static struct servent*
807 win32_savecopyservent(struct servent*d, struct servent*s, const char *proto)
808 {
809     d->s_name = s->s_name;
810     d->s_aliases = s->s_aliases;
811     d->s_port = s->s_port;
812 #ifndef __BORLANDC__    /* Buggy on Win95 and WinNT-with-Borland-WSOCK */
813     if (!IsWin95() && s->s_proto && strlen(s->s_proto))
814         d->s_proto = s->s_proto;
815     else
816 #endif
817     if (proto && strlen(proto))
818         d->s_proto = (char *)proto;
819     else
820         d->s_proto = "tcp";
821    
822     return d;
823 }
824
825