~ubuntu-branches/ubuntu/quantal/wvdial/quantal

« back to all changes in this revision

Viewing changes to wvdialer.h

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Randrianiriana
  • Date: 2011-01-09 18:59:33 UTC
  • mfrom: (3.3.1 experimental) (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110109185933-kxifjmo0g6dggf42
Tags: 1.61-2
* New upstream release in unstable:
  + FAQ URL updated (LP: #415524).
* Updated manpage pon.wvdial.1
* Prevent ftbfs with binutils-gold and gcc 4.5 (Closes: #608018, #609573).

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
struct OptInfo
31
31
/************/
32
32
{
33
 
    char *      name;
34
 
    WvString *  str_member;
35
 
    int *       int_member;
36
 
    char *      str_default;
37
 
    int         int_default;
 
33
    const char * name;
 
34
    WvString *   str_member;
 
35
    int *        int_member;
 
36
    const char * str_default;
 
37
    int          int_default;
38
38
};
39
39
 
40
40
class WvConf;
141
141
        int              idle_seconds;
142
142
        int              isdn;
143
143
        int              ask_password;
 
144
        int              dial_timeout;
144
145
       
145
146
    } options;
146
147
   
184
185
    void                start_ppp();
185
186
   
186
187
    // The following members are for the wait_for_modem() function.
187
 
    int         wait_for_modem( char *strs[], int timeout, bool neednewline,
 
188
    int         wait_for_modem( const char *strs[], int timeout, bool neednewline,
188
189
                                bool verbose = true);
189
 
    int         async_wait_for_modem( char * strs[], bool neednewline,
 
190
    int         async_wait_for_modem( const char * strs[], bool neednewline,
190
191
                                      bool verbose = true);
191
192
    char                buffer[ INBUF_SIZE + 1 ];
192
193
    off_t       offset;