Changeset a6abd67 in rtems
- Timestamp:
- 11/25/00 19:42:21 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- f0864664
- Parents:
- e2af631
- Files:
-
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libnetworking/ChangeLog
re2af631 ra6abd67 1 2000-11-25 Antti P Miettinen <antti.p.miettinen@nokia.com> 2 3 * wrapup/Makefile.am: Added modem subdir. 4 * configure.in, Makefile.am: Added modem subdir. 5 * net/Makefile.am: Added if_pppvar.h, pppcompress.h. 6 * pppd/Makefile.am: Added pppmain.c (which needs work). 7 * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c, 8 pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler 9 <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me. 10 Actually main.c and ppp_tty.c should be scratched. The modem 11 subdir has the real ppp_tty.c and the real pppd main is in pppmain.c. 12 1 13 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 14 -
c/src/exec/libnetworking/Makefile.am
re2af631 ra6abd67 7 7 8 8 SUBDIRS = include arpa kern machine sys vm lib libc net netinet nfs rtems \ 9 rtems_servers pppd rtems_webserver wrapup9 rtems_servers pppd modem rtems_webserver wrapup 10 10 11 11 EXTRA_DIST = CHANGELOG bpfilter.h loop.h netdb.h opt_ipfw.h opt_mrouting.h \ -
c/src/exec/libnetworking/net/Makefile.am
re2af631 ra6abd67 36 36 37 37 H_FILES = bpf.h ethernet.h if.h if_arp.h if_dl.h if_llc.h if_ppp.h \ 38 if_types.h netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h 38 if_types.h netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h \ 39 if_pppvar.h pppcompress.h 39 40 40 41 noinst_HEADERS = $(H_FILES) -
c/src/exec/libnetworking/wrapup/Makefile.am
re2af631 ra6abd67 9 9 endif 10 10 11 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd \11 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd modem \ 12 12 $(POSIX_PIECES) 13 13 OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o) -
c/src/libnetworking/ChangeLog
re2af631 ra6abd67 1 2000-11-25 Antti P Miettinen <antti.p.miettinen@nokia.com> 2 3 * wrapup/Makefile.am: Added modem subdir. 4 * configure.in, Makefile.am: Added modem subdir. 5 * net/Makefile.am: Added if_pppvar.h, pppcompress.h. 6 * pppd/Makefile.am: Added pppmain.c (which needs work). 7 * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c, 8 pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler 9 <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me. 10 Actually main.c and ppp_tty.c should be scratched. The modem 11 subdir has the real ppp_tty.c and the real pppd main is in pppmain.c. 12 1 13 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 14 -
c/src/libnetworking/Makefile.am
re2af631 ra6abd67 7 7 8 8 SUBDIRS = include arpa kern machine sys vm lib libc net netinet nfs rtems \ 9 rtems_servers pppd rtems_webserver wrapup9 rtems_servers pppd modem rtems_webserver wrapup 10 10 11 11 EXTRA_DIST = CHANGELOG bpfilter.h loop.h netdb.h opt_ipfw.h opt_mrouting.h \ -
c/src/libnetworking/configure.in
re2af631 ra6abd67 48 48 nfs/Makefile 49 49 pppd/Makefile 50 modem/Makefile 50 51 rtems/Makefile 51 52 rtems_servers/Makefile -
c/src/libnetworking/net/Makefile.am
re2af631 ra6abd67 36 36 37 37 H_FILES = bpf.h ethernet.h if.h if_arp.h if_dl.h if_llc.h if_ppp.h \ 38 if_types.h netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h 38 if_types.h netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h \ 39 if_pppvar.h pppcompress.h 39 40 40 41 noinst_HEADERS = $(H_FILES) -
c/src/libnetworking/pppd/Makefile.am
re2af631 ra6abd67 8 8 LIB = $(ARCH)/$(LIBNAME) 9 9 10 # What to do about main.c?10 # renamed main.c to pppmain.c 11 11 C_FILES = auth.c cbcp.c ccp.c chap.c chap_ms.c chat.c demand.c fsm.c ipcp.c \ 12 ipxcp.c lcp.c magic.c options.c upap.c md4.c md5.c rtems-ppp.c 12 ipxcp.c lcp.c magic.c options.c upap.c md4.c md5.c rtems-ppp.c \ 13 pppmain.c 13 14 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 14 15 … … 41 42 ipxcp.h lcp.c lcp.h magic.c magic.h main.c md4.c md4.h md5.c md5.h \ 42 43 options.c patchlevel.h pathnames.h ppp_tty.c pppd.h rtems-ppp.c upap.c \ 43 upap.h $(EXTRA_FILES)44 upap.h pppmain.c $(EXTRA_FILES) 44 45 45 46 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/pppd/chat.c
re2af631 ra6abd67 839 839 840 840 case 'p': 841 #if 0 /* FIXME!!! */ 841 842 usleep(10000); /* 1/100th of a second (arg is microseconds) */ 843 #else 844 sleep(1); 845 #endif 842 846 break; 843 847 -
c/src/libnetworking/pppd/fsm.c
re2af631 ra6abd67 37 37 38 38 static void fsm_timeout __P((void *)); 39 static void fsm_rconfreq __P((fsm *, u_char, u_char *, int));39 static void fsm_rconfreq __P((fsm *, int, u_char *, int)); 40 40 static void fsm_rconfack __P((fsm *, int, u_char *, int)); 41 41 static void fsm_rconfnakrej __P((fsm *, int, int, u_char *, int)); … … 372 372 fsm_rconfreq(f, id, inp, len) 373 373 fsm *f; 374 u_charid;374 int id; 375 375 u_char *inp; 376 376 int len; … … 774 774 fsm_sdata(f, code, id, data, datalen) 775 775 fsm *f; 776 u_charcode, id;776 int code, id; 777 777 u_char *data; 778 778 int datalen; -
c/src/libnetworking/pppd/fsm.h
re2af631 ra6abd67 136 136 void fsm_input __P((fsm *, u_char *, int)); 137 137 void fsm_protreject __P((fsm *)); 138 void fsm_sdata __P((fsm *, u_char, u_char, u_char *, int));138 void fsm_sdata __P((fsm *, int, int, u_char *, int)); 139 139 140 140 -
c/src/libnetworking/pppd/upap.c
re2af631 ra6abd67 73 73 static void upap_rauthnak __P((upap_state *, u_char *, int, int)); 74 74 static void upap_sauthreq __P((upap_state *)); 75 static void upap_sresp __P((upap_state *, u_char, u_char, char *, int));75 static void upap_sresp __P((upap_state *, int, int, char *, int)); 76 76 77 77 … … 521 521 upap_sresp(u, code, id, msg, msglen) 522 522 upap_state *u; 523 u_charcode, id;523 int code, id; 524 524 char *msg; 525 525 int msglen; -
c/src/libnetworking/wrapup/Makefile.am
re2af631 ra6abd67 9 9 endif 10 10 11 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd \11 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd modem \ 12 12 $(POSIX_PIECES) 13 13 OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o) -
cpukit/libnetworking/ChangeLog
re2af631 ra6abd67 1 2000-11-25 Antti P Miettinen <antti.p.miettinen@nokia.com> 2 3 * wrapup/Makefile.am: Added modem subdir. 4 * configure.in, Makefile.am: Added modem subdir. 5 * net/Makefile.am: Added if_pppvar.h, pppcompress.h. 6 * pppd/Makefile.am: Added pppmain.c (which needs work). 7 * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c, 8 pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler 9 <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me. 10 Actually main.c and ppp_tty.c should be scratched. The modem 11 subdir has the real ppp_tty.c and the real pppd main is in pppmain.c. 12 1 13 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 14 -
cpukit/libnetworking/Makefile.am
re2af631 ra6abd67 7 7 8 8 SUBDIRS = include arpa kern machine sys vm lib libc net netinet nfs rtems \ 9 rtems_servers pppd rtems_webserver wrapup9 rtems_servers pppd modem rtems_webserver wrapup 10 10 11 11 EXTRA_DIST = CHANGELOG bpfilter.h loop.h netdb.h opt_ipfw.h opt_mrouting.h \ -
cpukit/libnetworking/net/Makefile.am
re2af631 ra6abd67 36 36 37 37 H_FILES = bpf.h ethernet.h if.h if_arp.h if_dl.h if_llc.h if_ppp.h \ 38 if_types.h netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h 38 if_types.h netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h \ 39 if_pppvar.h pppcompress.h 39 40 40 41 noinst_HEADERS = $(H_FILES) -
cpukit/libnetworking/wrapup/Makefile.am
re2af631 ra6abd67 9 9 endif 10 10 11 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd \11 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd modem \ 12 12 $(POSIX_PIECES) 13 13 OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o) -
cpukit/pppd/Makefile.am
re2af631 ra6abd67 8 8 LIB = $(ARCH)/$(LIBNAME) 9 9 10 # What to do about main.c?10 # renamed main.c to pppmain.c 11 11 C_FILES = auth.c cbcp.c ccp.c chap.c chap_ms.c chat.c demand.c fsm.c ipcp.c \ 12 ipxcp.c lcp.c magic.c options.c upap.c md4.c md5.c rtems-ppp.c 12 ipxcp.c lcp.c magic.c options.c upap.c md4.c md5.c rtems-ppp.c \ 13 pppmain.c 13 14 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 14 15 … … 41 42 ipxcp.h lcp.c lcp.h magic.c magic.h main.c md4.c md4.h md5.c md5.h \ 42 43 options.c patchlevel.h pathnames.h ppp_tty.c pppd.h rtems-ppp.c upap.c \ 43 upap.h $(EXTRA_FILES)44 upap.h pppmain.c $(EXTRA_FILES) 44 45 45 46 include $(top_srcdir)/../../../automake/local.am -
cpukit/pppd/chat.c
re2af631 ra6abd67 839 839 840 840 case 'p': 841 #if 0 /* FIXME!!! */ 841 842 usleep(10000); /* 1/100th of a second (arg is microseconds) */ 843 #else 844 sleep(1); 845 #endif 842 846 break; 843 847 -
cpukit/pppd/fsm.c
re2af631 ra6abd67 37 37 38 38 static void fsm_timeout __P((void *)); 39 static void fsm_rconfreq __P((fsm *, u_char, u_char *, int));39 static void fsm_rconfreq __P((fsm *, int, u_char *, int)); 40 40 static void fsm_rconfack __P((fsm *, int, u_char *, int)); 41 41 static void fsm_rconfnakrej __P((fsm *, int, int, u_char *, int)); … … 372 372 fsm_rconfreq(f, id, inp, len) 373 373 fsm *f; 374 u_charid;374 int id; 375 375 u_char *inp; 376 376 int len; … … 774 774 fsm_sdata(f, code, id, data, datalen) 775 775 fsm *f; 776 u_charcode, id;776 int code, id; 777 777 u_char *data; 778 778 int datalen; -
cpukit/pppd/fsm.h
re2af631 ra6abd67 136 136 void fsm_input __P((fsm *, u_char *, int)); 137 137 void fsm_protreject __P((fsm *)); 138 void fsm_sdata __P((fsm *, u_char, u_char, u_char *, int));138 void fsm_sdata __P((fsm *, int, int, u_char *, int)); 139 139 140 140 -
cpukit/pppd/upap.c
re2af631 ra6abd67 73 73 static void upap_rauthnak __P((upap_state *, u_char *, int, int)); 74 74 static void upap_sauthreq __P((upap_state *)); 75 static void upap_sresp __P((upap_state *, u_char, u_char, char *, int));75 static void upap_sresp __P((upap_state *, int, int, char *, int)); 76 76 77 77 … … 521 521 upap_sresp(u, code, id, msg, msglen) 522 522 upap_state *u; 523 u_charcode, id;523 int code, id; 524 524 char *msg; 525 525 int msglen;
Note: See TracChangeset
for help on using the changeset viewer.