]> andersk Git - gssapi-openssh.git/blame - openssh/packet.h
merged OpenSSH 5.3p1 to trunk
[gssapi-openssh.git] / openssh / packet.h
CommitLineData
b5afdff5 1/* $OpenBSD: packet.h,v 1.52 2009/06/27 09:29:06 andreas Exp $ */
1e608e42 2
3c0ef626 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 * Interface for the packet protocol functions.
8 *
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 */
15
3c0ef626 16#ifndef PACKET_H
17#define PACKET_H
18
30460aeb 19#include <termios.h>
20
3c0ef626 21#include <openssl/bn.h>
22
473db5ab 23void
24packet_request_rekeying(void);
25
3c0ef626 26void packet_set_connection(int, int);
5156b1a1 27void packet_set_timeout(int, int);
3c0ef626 28void packet_set_nonblocking(void);
29int packet_get_connection_in(void);
30int packet_get_connection_out(void);
31void packet_close(void);
32void packet_set_encryption_key(const u_char *, u_int, int);
44a053a3 33u_int packet_get_encryption_key(u_char *);
3c0ef626 34void packet_set_protocol_flags(u_int);
35u_int packet_get_protocol_flags(void);
36void packet_start_compression(int);
37void packet_set_interactive(int);
38int packet_is_interactive(void);
2ce0bfe4 39void packet_set_server(void);
40void packet_set_authenticated(void);
6df46d40 41int packet_authentication_state(void);
3c0ef626 42
43void packet_start(u_char);
44void packet_put_char(int ch);
45void packet_put_int(u_int value);
b5afdff5 46void packet_put_int64(u_int64_t value);
3c0ef626 47void packet_put_bignum(BIGNUM * value);
48void packet_put_bignum2(BIGNUM * value);
1e608e42 49void packet_put_string(const void *buf, u_int len);
3c0ef626 50void packet_put_cstring(const char *str);
1e608e42 51void packet_put_raw(const void *buf, u_int len);
fa7499cc 52int packet_send(void);
3c0ef626 53
1e608e42 54int packet_read(void);
55void packet_read_expect(int type);
56int packet_read_poll(void);
3c0ef626 57void packet_process_incoming(const char *buf, u_int len);
1e608e42 58int packet_read_seqnr(u_int32_t *seqnr_p);
59int packet_read_poll_seqnr(u_int32_t *seqnr_p);
3c0ef626 60
61u_int packet_get_char(void);
62u_int packet_get_int(void);
b5afdff5 63u_int64_t packet_get_int64(void);
1e608e42 64void packet_get_bignum(BIGNUM * value);
65void packet_get_bignum2(BIGNUM * value);
2ce0bfe4 66void *packet_get_raw(u_int *length_ptr);
1e608e42 67void *packet_get_string(u_int *length_ptr);
5156b1a1 68void *packet_get_string_ptr(u_int *length_ptr);
3c0ef626 69void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));
70void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
71
510132b6 72void set_newkeys(int mode);
73int packet_get_keyiv_len(int);
74void packet_get_keyiv(int, u_char *, u_int);
75int packet_get_keycontext(int, u_char *);
76void packet_set_keycontext(int, u_char *);
5156b1a1 77void packet_get_state(int, u_int32_t *, u_int64_t *, u_int32_t *, u_int64_t *);
78void packet_set_state(int, u_int32_t, u_int64_t, u_int32_t, u_int64_t);
510132b6 79int packet_get_ssh1_cipher(void);
80void packet_set_iv(int, u_char *);
b5afdff5 81void *packet_get_newkeys(int);
510132b6 82
fa7499cc 83int packet_write_poll(void);
84int packet_write_wait(void);
3c0ef626 85int packet_have_data_to_write(void);
86int packet_not_very_much_data_to_write(void);
87
88int packet_connection_is_on_socket(void);
89int packet_connection_is_ipv4(void);
90int packet_remaining(void);
91void packet_send_ignore(int);
92void packet_add_padding(u_char);
93
94void tty_make_modes(int, struct termios *);
95void tty_parse_modes(int, int *);
96
b5afdff5 97void packet_set_alive_timeouts(int);
98int packet_inc_alive_timeouts(void);
7e82606e 99int packet_set_maxsize(u_int);
b5afdff5 100u_int packet_get_maxsize(void);
3c0ef626 101
1e608e42 102/* don't allow remaining bytes after the end of the message */
103#define packet_check_eom() \
3c0ef626 104do { \
105 int _len = packet_remaining(); \
106 if (_len > 0) { \
7cac2b65 107 logit("Packet integrity error (%d bytes remaining) at %s:%d", \
3c0ef626 108 _len ,__FILE__, __LINE__); \
109 packet_disconnect("Packet integrity error."); \
110 } \
111} while (0)
112
7cac2b65 113int packet_need_rekeying(void);
114void packet_set_rekey_limit(u_int32_t);
115
b5afdff5 116void packet_backup_state(void);
117void packet_restore_state(void);
118
119void *packet_get_input(void);
120void *packet_get_output(void);
121
3c0ef626 122#endif /* PACKET_H */
This page took 0.145641 seconds and 5 git commands to generate.