This patch halves the size of the PPPoA plugin by disabling features which are never used with normal DSL connections (i.e. parsing of QoS configuration directives and DNS resolution of VP/VC addresses). It is especially useful for install images and embedded systems. A next step could be removing text2qos.c, text2atm.c, misc.c and ans.c and encourage users interested in the complete features to link the plugin with the real libatm. I really doubt anybody cares, anyway. diff -ruNp ppp-2.4.3.orig/pppd/plugins/pppoatm/Makefile.linux ppp-2.4.3/pppd/plugins/pppoatm/Makefile.linux --- ppp-2.4.3.orig/pppd/plugins/pppoatm/Makefile.linux 2004-11-14 02:12:10.000000000 +0100 +++ ppp-2.4.3/pppd/plugins/pppoatm/Makefile.linux 2005-02-25 19:19:08.022622528 +0100 @@ -25,9 +25,13 @@ ifdef HAVE_LIBATM LIBS := -latm else CFLAGS += -I. +PLUGIN_OBJS += text2atm.o +ifdef USE_FULL_ATM_RESOLVER +CFLAGS += -DUSE_FULL_ATM_RESOLVER PLUGIN_OBJS += text2qos.o text2atm.o misc.o ans.o LIBS := -lresolv endif +endif #********* all: $(PLUGIN) diff -ruNp ppp-2.4.3.orig/pppd/plugins/pppoatm/pppoatm.c ppp-2.4.3/pppd/plugins/pppoatm/pppoatm.c --- ppp-2.4.3.orig/pppd/plugins/pppoatm/pppoatm.c 2005-02-25 19:19:13.859735152 +0100 +++ ppp-2.4.3/pppd/plugins/pppoatm/pppoatm.c 2005-02-25 19:17:36.784492832 +0100 @@ -144,8 +144,12 @@ static int connect_pppoatm(void) qos.txtp.traffic_class = qos.rxtp.traffic_class = ATM_UBR; /* TODO: support simplified QoS setting */ if (qosstr != NULL) +#ifdef USE_FULL_ATM_RESOLVER if (text2qos(qosstr, &qos, 0)) fatal("Can't parse QoS: \"%s\""); +#else + fatal("qos support has not been compiled in"); +#endif qos.txtp.max_sdu = lcp_allowoptions[0].mru + pppoatm_overhead(); qos.rxtp.max_sdu = lcp_wantoptions[0].mru + pppoatm_overhead(); qos.aal = ATM_AAL5; diff -ruNp ppp-2.4.3.orig/pppd/plugins/pppoatm/text2atm.c ppp-2.4.3/pppd/plugins/pppoatm/text2atm.c --- ppp-2.4.3.orig/pppd/plugins/pppoatm/text2atm.c 2004-11-06 07:55:28.000000000 +0100 +++ ppp-2.4.3/pppd/plugins/pppoatm/text2atm.c 2005-02-25 19:17:36.552528096 +0100 @@ -72,6 +72,7 @@ static int try_pvc(const char *text,stru } +#ifdef USE_FULL_ATM_RESOLVER static int do_try_nsap(const char *text,struct sockaddr_atmsvc *addr,int flags) { const char *walk; @@ -221,6 +222,7 @@ static int try_name(const char *text,str (void) fclose(file); return result; } +#endif int text2atm(const char *text,struct sockaddr *addr,int length,int flags) @@ -234,6 +236,7 @@ int text2atm(const char *text,struct soc result = try_pvc(text,(struct sockaddr_atmpvc *) addr,flags); if (result != TRY_OTHER) return result; } +#ifdef USE_FULL_ATM_RESOLVER if ((flags & T2A_SVC) && length >= sizeof(struct sockaddr_atmsvc)) { result = try_nsap(text,(struct sockaddr_atmsvc *) addr,flags); if (result != TRY_OTHER) return result; @@ -245,5 +248,6 @@ int text2atm(const char *text,struct soc if (result == TRY_OTHER && !(flags & T2A_LOCAL)) result = ans_byname(text,(struct sockaddr_atmsvc *) addr,length,flags); if (result != TRY_OTHER) return result; +#endif return -1; } -- ciao, Marco - To unsubscribe from this list: send the line "unsubscribe linux-ppp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html