~ubuntu-branches/debian/lenny/dropbear/lenny

« back to all changes in this revision

Viewing changes to packet.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2005-05-25 22:38:17 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050525223817-fdl653extybmz1zb
Tags: 0.45-3
* debian/dropbear.init: init script prints human readable message in case
  it's disabled (closes: #309099).
* debian/dropbear.postinst: configure: restart service through init script
  instead of start.
* debian/dropbear.prerm: set -u -> set -e.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
void write_packet();
32
32
void read_packet();
33
33
void decrypt_packet();
 
34
void encrypt_packet();
 
35
 
34
36
void process_packet();
35
 
void encrypt_packet();
 
37
 
 
38
typedef struct PacketType {
 
39
        unsigned char type; /* SSH_MSG_FOO */
 
40
        void (*handler)();
 
41
} packettype;
36
42
 
37
43
#define PACKET_PADDING_OFF 4
38
44
#define PACKET_PAYLOAD_OFF 5