1999-01-07 00:52:05 +00:00
|
|
|
*** kppp/requester.cpp~ Sat Dec 19 22:28:23 1998
|
|
|
|
--- kppp/requester.cpp Thu Dec 31 00:38:12 1998
|
1998-03-04 23:18:04 +00:00
|
|
|
***************
|
1999-01-07 00:52:05 +00:00
|
|
|
*** 74,78 ****
|
|
|
|
msg.msg_iovlen = 2;
|
1998-03-06 19:44:12 +00:00
|
|
|
|
1999-01-07 00:52:05 +00:00
|
|
|
! iov[0].iov_base = &response;
|
|
|
|
iov[0].iov_len = sizeof(struct ResponseHeader);
|
|
|
|
iov[1].iov_base = filename;
|
|
|
|
--- 74,78 ----
|
|
|
|
msg.msg_iovlen = 2;
|
1998-03-06 19:44:12 +00:00
|
|
|
|
1999-01-07 00:52:05 +00:00
|
|
|
! iov[0].iov_base = (char *) &response;
|
|
|
|
iov[0].iov_len = sizeof(struct ResponseHeader);
|
|
|
|
iov[1].iov_base = filename;
|
1998-03-06 19:44:12 +00:00
|
|
|
***************
|
1999-01-07 00:52:05 +00:00
|
|
|
*** 87,91 ****
|
|
|
|
control.cmsg.cmsg_type = MY_SCM_RIGHTS;
|
|
|
|
|
|
|
|
! msg.msg_control = &control;
|
|
|
|
msg.msg_controllen = control.cmsg.cmsg_len;
|
|
|
|
|
|
|
|
--- 87,91 ----
|
|
|
|
control.cmsg.cmsg_type = MY_SCM_RIGHTS;
|
|
|
|
|
|
|
|
! msg.msg_control = (char *) &control;
|
|
|
|
msg.msg_controllen = control.cmsg.cmsg_len;
|
|
|
|
|
1998-03-04 23:18:04 +00:00
|
|
|
***************
|
1999-01-07 00:52:05 +00:00
|
|
|
*** 137,141 ****
|
|
|
|
msg.msg_controllen = 0;
|
|
|
|
|
|
|
|
! iov.iov_base = &response;
|
|
|
|
iov.iov_len = sizeof(struct ResponseHeader);
|
|
|
|
Debug("recvResponse(): waiting for message");
|
|
|
|
--- 137,141 ----
|
|
|
|
msg.msg_controllen = 0;
|
|
|
|
|
|
|
|
! iov.iov_base = (char *) &response;
|
|
|
|
iov.iov_len = sizeof(struct ResponseHeader);
|
|
|
|
Debug("recvResponse(): waiting for message");
|
|
|
|
***************
|
|
|
|
*** 281,285 ****
|
|
|
|
struct iovec iov;
|
|
|
|
|
|
|
|
! iov.iov_base = (void *) request;
|
|
|
|
iov.iov_len = len;
|
|
|
|
|
|
|
|
--- 281,285 ----
|
|
|
|
struct iovec iov;
|
1998-03-04 23:18:04 +00:00
|
|
|
|
1999-01-07 00:52:05 +00:00
|
|
|
! iov.iov_base = (char *) request;
|
|
|
|
iov.iov_len = len;
|
|
|
|
|