summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-13 16:29:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-13 16:29:01 +0000
commit9537e5ec772140a1c74e218ec1d864b896d924ec (patch)
treebbf31d2dbca607b752b7bbafb7c849bbf77e791c
parentPatch from Emmanuel Raguet <raguet@crf.canon.fr> to correct some problems (diff)
downloadrtems-9537e5ec772140a1c74e218ec1d864b896d924ec.tar.bz2
Patch from Eric Norum <eric@cls.usask.ca> to provide more network
functionality. This puts RTEMS in near compliance with the network functionality defined in the first draft of the EL/IX API. Comments follow: With the attached changes to the libnetworking/libc/Makefile.in, RTEMS provides all the functions listed in section 4.14 of the EL/IX document except: socketpair if_nametoindex if_indextoname if_nameindex if_freenameindex Some of the routines which get information from files may be of limited use unless an application sets up the files somehow (TFTP/untar from host, etc.), but at least RTEMS is pretty much fully buzzword compliant with the networking section of the EL/IX API.
-rw-r--r--c/src/libnetworking/libc/Makefile.in11
1 files changed, 7 insertions, 4 deletions
diff --git a/c/src/libnetworking/libc/Makefile.in b/c/src/libnetworking/libc/Makefile.in
index f5b8456e28..1522f80b33 100644
--- a/c/src/libnetworking/libc/Makefile.in
+++ b/c/src/libnetworking/libc/Makefile.in
@@ -17,10 +17,13 @@ LIBNAME = lib.a
LIB = ${ARCH}/${LIBNAME}
# C and C++ source names, if any, go here -- minus the .c or .cc
-C_PIECES = base64 gethostbydns gethostbyht gethostbynis gethostnamadr herror \
- inet_addr inet_ntoa inet_ntop inet_pton map_v4v6 nsap_addr ns_name \
- ns_netint ns_parse ns_print ns_ttl res_comp res_data res_debug res_init \
- res_mkquery res_mkupdate res_query res_send res_stubs res_update strsep
+C_PIECES = base64 gethostbydns gethostbyht gethostbynis gethostnamadr \
+ getnetbydns getnetbyht getnetbynis getnetnamadr getproto getprotoent \
+ getprotoname getservbyname getservbyport getservent herror inet_addr \
+ inet_lnaof inet_makeaddr inet_network inet_ntoa inet_ntop inet_pton \
+ map_v4v6 nsap_addr ns_name ns_netint ns_parse ns_print ns_ttl \
+ res_comp res_data res_debug res_init res_mkquery res_mkupdate \
+ res_query res_send res_stubs res_update strsep
C_FILES = $(C_PIECES:%=%.c)
C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)