mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 09:13:09 +02:00
22 lines
804 B
Diff
22 lines
804 B
Diff
|
--- ppp-2.4.3/pppd/plugins/pppoatm/pppoatm.c 2005-08-26 15:18:55.000000000 +0200
|
||
|
+++ ppp-2.4.3/pppd/plugins/pppoatm/pppoatm.c 2005-08-26 15:19:51.000000000 +0200
|
||
|
@@ -136,8 +136,6 @@
|
||
|
int fd;
|
||
|
struct atm_qos qos;
|
||
|
|
||
|
- system ("/sbin/modprobe pppoatm");
|
||
|
-
|
||
|
if (!device_got_set)
|
||
|
no_device_given_pppoatm();
|
||
|
fd = socket(AF_ATMPVC, SOCK_DGRAM, 0);
|
||
|
@@ -152,8 +150,7 @@
|
||
|
qos.txtp.max_sdu = lcp_allowoptions[0].mru + pppoatm_overhead();
|
||
|
qos.rxtp.max_sdu = lcp_wantoptions[0].mru + pppoatm_overhead();
|
||
|
qos.aal = ATM_AAL5;
|
||
|
- if (setsockopt(fd, SOL_ATM, SO_ATMQOS, &qos, sizeof(qos)) < 0)
|
||
|
- fatal("setsockopt(SO_ATMQOS): %m");
|
||
|
+ setsockopt(fd, SOL_ATM, SO_ATMQOS, &qos, sizeof(qos));
|
||
|
/* TODO: accept on SVCs... */
|
||
|
if (connect(fd, (struct sockaddr *) &pvcaddr,
|
||
|
sizeof(struct sockaddr_atmpvc)))
|