OSDN Git Service

*** empty log message ***
authorkoinec <>
Sun, 6 Dec 2009 11:39:39 +0000 (11:39 +0000)
committerkoinec <>
Sun, 6 Dec 2009 11:39:39 +0000 (11:39 +0000)
libdrd64/drd64_libdrd64_inet.c [deleted file]
libdrd64/drd64_libdrd64_socket.c

diff --git a/libdrd64/drd64_libdrd64_inet.c b/libdrd64/drd64_libdrd64_inet.c
deleted file mode 100644 (file)
index a6b3df8..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-/*DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64
-
-                         D r . D e a m o n  6 4
-                        for INTEL64(R), AMD64(R)
-       
-   Copyright(C) 2007-2009 Koine Yuusuke(koinec). All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
- 1. Redistributions of source code must retain the above copyright notice,
-    this list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright
-    notice, this list of conditions and the following disclaimer in the
-    documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY Koine Yuusuke(koinec) ``AS IS'' AND ANY
-EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL Koine Yuusuke(koinec) OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
-OF THE POSSIBILITY OF SUCH DAMAGE.
-
-DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64*/
-
-/* File Info -----------------------------------------------------------
-File: drd64_.c
-Function: 
-Comment: 
-----------------------------------------------------------------------*/
-
-#include"drd64_libdrd64.h"
-
-/*int
-    Drd64_LibDrd64_INet_CopyInAddr(
-        struct  in_addr *p_dest,
-        struct  in_addr *p_src )
-{
-       memcpy( p_dest, p_src, sizeof( struct in_addr ) );
-
-       return 0x00;
-}*/
-
-/*
-int
-       Drd64_LibDrd64_INet_SetInAddr(
-               struct  in_addr *p_addr,
-               char    *pstr_hostname )
-{
-       struct  hostent         *p_hent;
-
-       if( NULL == p_addr )    { return 0xff; }
-
-       p_hent  = gethostbyname( pstr_hostname );
-       if( NULL == p_hent )    {
-               return 0x02;
-       }
-
-       if( NULL == p_hent->h_addr_list )       { 
-               return 0x03;
-       }
-       
-       memcpy( p_addr, *(p_hent->h_addr_list), p_hent->h_length );
-
-       return 0x00;
-}*/
-
-/*
-int
-       Drd64_LibDrd64_INet_SetInAddr_LocalHost(
-               struct  in_addr *p_addr )
-{
-       char    str_hostname[ 256 ];
-       struct  hostent         *p_hent;
-
-       if( NULL == p_addr )    { return 0xff; }
-
-       if( 0 != gethostname( str_hostname, sizeof( str_hostname ) ))
-               { return 0x01; }
-
-       p_hent  = gethostbyname( str_hostname );
-       if( NULL == p_hent )    {
-               return 0x02;
-       }
-
-       if( NULL == p_hent->h_addr_list )       { 
-               return 0x03;
-       }
-       
-       memcpy( p_addr, *(p_hent->h_addr_list), p_hent->h_length );
-
-       return 0x00;
-}*/
-
-
-/* EOF of drd64_.c ----------------------------------- */
index 0c59e32..26b72d0 100644 (file)
@@ -87,27 +87,6 @@ int
        return sendmsg( i_socket, &gt_sendmsg_msghdr, 0x00 );
 }
 
-/*
-int
-       Drd64_LibDrd64_Socket_InitSocket_Local(
-               const char *pstr_socket )
-{
-       int             i_socket;
-       int             i_err;
-       struct  sockaddr_un             t_sun;
-
-       i_socket        = socket( PF_LOCAL, SOCK_STREAM, 0 );
-       if( -1 == i_socket )    { return -1; }
-
-       t_sun.sun_family        = AF_UNIX;
-       strcpy( t_sun.sun_path, pstr_socket );
-
-       i_err   = connect( i_socket, &t_sun, SUN_LEN( &t_sun ));
-       if( -1 == i_err )       { return -2; }
-
-       return i_socket;
-}*/
-
 
 int
     Drd64_LibDrd64_Socket_ReadSocket(