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

« back to all changes in this revision

Viewing changes to ica/x11/x11vnc/inet.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_INET_H
 
2
#define _X11VNC_INET_H
 
3
 
 
4
/* -- inet.h -- */
 
5
 
 
6
extern char *host2ip(char *host);
 
7
extern char *raw2host(char *raw, int len);
 
8
extern char *raw2ip(char *raw);
 
9
extern char *ip2host(char *ip);
 
10
extern int dotted_ip(char *host);
 
11
extern int get_remote_port(int sock);
 
12
extern int get_local_port(int sock);
 
13
extern char *get_remote_host(int sock);
 
14
extern char *get_local_host(int sock);
 
15
extern char *ident_username(rfbClientPtr client);
 
16
extern int find_free_port(int start, int end);
 
17
extern int have_ssh_env(void);
 
18
 
 
19
#endif /* _X11VNC_INET_H */