~ubuntu-branches/debian/lenny/italc/lenny

« back to all changes in this revision

Viewing changes to ica/x11/x11vnc/sslhelper.h

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2008-06-17 13:46:54 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080617134654-cl0gi4u524cv1ici
Tags: 1:1.0.9~rc3-1
* Package new upstream version
  - upstream ported the code to qt4.4 (Closes: #481974)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _X11VNC_SSLHELPER_H
 
2
#define _X11VNC_SSLHELPER_H
 
3
 
 
4
/* -- sslhelper.h -- */
 
5
 
 
6
 
 
7
#define OPENSSL_INETD   1
 
8
#define OPENSSL_VNC     2
 
9
#define OPENSSL_HTTPS   3
 
10
#define OPENSSL_REVERSE 4
 
11
 
 
12
extern int openssl_sock;
 
13
extern int openssl_port_num;
 
14
extern int https_sock;
 
15
extern pid_t openssl_last_helper_pid;
 
16
extern char *openssl_last_ip;
 
17
extern char *certret_str;
 
18
 
 
19
extern void raw_xfer(int csock, int s_in, int s_out);
 
20
 
 
21
extern int openssl_present(void);
 
22
extern void openssl_init(int);
 
23
extern void openssl_port(void);
 
24
extern void https_port(void);
 
25
extern void check_openssl(void);
 
26
extern void check_https(void);
 
27
extern void ssl_helper_pid(pid_t pid, int sock);
 
28
extern void accept_openssl(int mode, int presock);
 
29
extern char *find_openssl_bin(void);
 
30
extern char *get_saved_pem(char *string, int create);
 
31
 
 
32
 
 
33
#endif /* _X11VNC_SSLHELPER_H */