~ubuntu-branches/ubuntu/precise/dropbear/precise

« back to all changes in this revision

Viewing changes to channel.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2007-03-02 20:48:18 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070302204818-ozmbou2sbyj7dus5
Tags: 0.49-1
* new upstream release, fixes
  * CVE-2007-1099: dropbear dbclient insufficient warning on hostkey
    mismatch (closes: #412899).
  * dbclient uses static "Password:" prompt instead of using the server's
    prompt (closes: #394996).
* debian/control: Suggests: openssh-client, not ssh (closes: #405686);
  Standards-Version: 3.7.2.2.
* debian/README.Debian: ssh -> openssh-server, openssh-client; remove
  'Replacing OpenSSH "sshd" with Dropbear' part, this is simply done by not
  installing the openssh-server package.
* debian/README.runit: runsvstat -> sv status.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        circbuffer *extrabuf; /* extended-data for the program - used like writebuf
74
74
                                             but for stderr */
75
75
 
76
 
        int sentclosed, recvclosed;
77
 
 
78
 
        /* this is set when we receive/send a channel eof packet */
79
 
        int recveof, senteof;
 
76
        /* whether close/eof messages have been exchanged */
 
77
        int sent_close, recv_close;
 
78
        int recv_eof, sent_eof;
80
79
 
81
80
        int initconn; /* used for TCP forwarding, whether the channel has been
82
81
                                         fully initialised */
85
84
                                           for this channel (and are awaiting a confirmation
86
85
                                           or failure). */
87
86
 
 
87
        int flushing;
 
88
 
88
89
        const struct ChanType* type;
89
90
 
90
91
};
94
95
        int sepfds; /* Whether this channel has seperate pipes for in/out or not */
95
96
        char *name;
96
97
        int (*inithandler)(struct Channel*);
97
 
        int (*checkclose)(struct Channel*);
 
98
        int (*check_close)(struct Channel*);
98
99
        void (*reqhandler)(struct Channel*);
99
100
        void (*closehandler)(struct Channel*);
100
101