X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=vms%2Fsockadapt.c;h=e7b207cbdc6b85062be550fcbec9f660af0aeb99;hb=969386165da4b2b619c453c25dead6d8a086a3cb;hp=e4c3dad2134a61d4450c19774910cea2b1313c6c;hpb=9607fc9c489d4095e3baa795d7ead7acba96137d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/vms/sockadapt.c b/vms/sockadapt.c index e4c3dad..e7b207c 100644 --- a/vms/sockadapt.c +++ b/vms/sockadapt.c @@ -1,6 +1,6 @@ /* sockadapt.c * - * Author: Charles Bailey bailey@genetics.upenn.edu + * Author: Charles Bailey bailey@newman.upenn.edu * Last Revised: 4-Mar-1997 * * This file should contain stubs for any of the TCP/IP functions perl5 @@ -29,58 +29,79 @@ # define __sockadapt_my_name_t char * #endif +/* We have these on VMS 7.0 and above, or on Dec C 5.6 if it's providing */ +/* the 7.0 DECC RTL */ +#if ((((__VMS_VER >= 70000000) && (__DECC_VER >= 50200000)) || (__CRTL_VER >= 70000000)) && defined(DECCRTL_SOCKETS)) +#else void setnetent(int stayopen) { - croak("Function \"setnetent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"setnetent\" not implemented in this version of perl"); } void endnetent() { - croak("Function \"endnetent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"endnetent\" not implemented in this version of perl"); } +#endif #if defined(DECCRTL_SOCKETS) /* Use builtin socket interface in DECCRTL and * UCX emulation in whatever TCP/IP stack is present. */ +#if ((__VMS_VER >= 70000000) && (__DECC_VER >= 50200000)) || (__CRTL_VER >= 70000000) +#else void sethostent(int stayopen) { - croak("Function \"sethostent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"sethostent\" not implemented in this version of perl"); } void endhostent() { - croak("Function \"endhostent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"endhostent\" not implemented in this version of perl"); } void setprotoent(int stayopen) { - croak("Function \"setprotoent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"setprotoent\" not implemented in this version of perl"); } void endprotoent() { - croak("Function \"endprotoent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"endprotoent\" not implemented in this version of perl"); } void setservent(int stayopen) { - croak("Function \"setservent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"setservent\" not implemented in this version of perl"); } void endservent() { - croak("Function \"endservent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"endservent\" not implemented in this version of perl"); } __sockadapt_my_hostent_t gethostent() { - croak("Function \"gethostent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"gethostent\" not implemented in this version of perl"); return (__sockadapt_my_hostent_t )NULL; /* Avoid MISSINGRETURN warning, not reached */ } __sockadapt_my_servent_t getservent() { - croak("Function \"getservent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"getservent\" not implemented in this version of perl"); return (__sockadapt_my_servent_t )NULL; /* Avoid MISSINGRETURN warning, not reached */ } +#endif #else /* Work around things missing/broken in SOCKETSHR. */ __sockadapt_my_netent_t getnetbyaddr( __sockadapt_my_addr_t net, int type) { - croak("Function \"getnetbyaddr\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"getnetbyaddr\" not implemented in this version of perl"); return (struct netent *)NULL; /* Avoid MISSINGRETURN warning, not reached */ } __sockadapt_my_netent_t getnetbyname( __sockadapt_my_name_t name) { - croak("Function \"getnetbyname\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"getnetbyname\" not implemented in this version of perl"); return (struct netent *)NULL; /* Avoid MISSINGRETURN warning, not reached */ } __sockadapt_my_netent_t getnetent() { - croak("Function \"getnetent\" not implemented in this version of perl"); + dTHX; + Perl_croak(aTHX_ "Function \"getnetent\" not implemented in this version of perl"); return (__sockadapt_my_netent_t )NULL; /* Avoid MISSINGRETURN warning, not reached */ }