On Fri, Oct 03, 2008 at 08:14:40AM -0500, Michael L. Stokes wrote:
> I get a different result if I use -s with pppob 
> that I can include if you wish.

Thanks for the data.  The log you included was the one with -s.
I would be interested to see the one without as well.

This log, though, is interesting in that it appears to challenge for the
password.  Below is a patch to pass the password through for all socket
open operations... I don't know if this will work, but worth a try to
see what happens.

- Chris


According to a barry log from Michael L. Stokes, the 8830 appears to
give a password challenge when opening the modem socket.  Try passing
the password here too.
---
 tools/pppob.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/pppob.cc b/tools/pppob.cc
index 037e6a9..d5864e4 100644
--- a/tools/pppob.cc
+++ b/tools/pppob.cc
@@ -231,7 +231,7 @@ int main(int argc, char *argv[])
 
                        // Open serial connection
                        Mode::Serial modem(con, SerialDataCallback, 0);
-                       modem.Open();
+                       modem.Open(password.c_str());
 
                        ProcessStdin(modem);
                }
-- 
1.6.0.2


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Barry-devel mailing list
Barry-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/barry-devel

Reply via email to