| 
									
										
										
										
											2007-02-10 01:44:07 -08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com) | 
					
						
							|  |  |  |  * Licensed under the GPL | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __CHAN_USER_H__
 | 
					
						
							|  |  |  | #define __CHAN_USER_H__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "init.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct chan_opts { | 
					
						
							| 
									
										
										
										
											2007-02-10 01:44:06 -08:00
										 |  |  | 	void (*const announce)(char *dev_name, int dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	char *xterm_title; | 
					
						
							| 
									
										
										
										
											2007-02-10 01:44:06 -08:00
										 |  |  | 	const int raw; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum chan_init_pri { INIT_STATIC, INIT_ALL, INIT_ONE }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct chan_ops { | 
					
						
							|  |  |  | 	char *type; | 
					
						
							| 
									
										
										
										
											2006-09-27 01:50:33 -07:00
										 |  |  | 	void *(*init)(char *, int, const struct chan_opts *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int (*open)(int, int, int, void *, char **); | 
					
						
							|  |  |  | 	void (*close)(int, void *); | 
					
						
							|  |  |  | 	int (*read)(int, char *, void *); | 
					
						
							|  |  |  | 	int (*write)(int, const char *, int, void *); | 
					
						
							| 
									
										
										
										
											2005-11-13 16:07:11 -08:00
										 |  |  | 	int (*console_write)(int, const char *, int); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int (*window_size)(int, void *, unsigned short *, unsigned short *); | 
					
						
							|  |  |  | 	void (*free)(void *); | 
					
						
							|  |  |  | 	int winch; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-27 01:50:33 -07:00
										 |  |  | extern const struct chan_ops fd_ops, null_ops, port_ops, pts_ops, pty_ops, | 
					
						
							|  |  |  | 	tty_ops, xterm_ops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | extern void generic_close(int fd, void *unused); | 
					
						
							|  |  |  | extern int generic_read(int fd, char *c_out, void *unused); | 
					
						
							|  |  |  | extern int generic_write(int fd, const char *buf, int n, void *unused); | 
					
						
							| 
									
										
										
										
											2005-11-13 16:07:11 -08:00
										 |  |  | extern int generic_console_write(int fd, const char *buf, int n); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | extern int generic_window_size(int fd, void *unused, unsigned short *rows_out, | 
					
						
							|  |  |  | 			       unsigned short *cols_out); | 
					
						
							|  |  |  | extern void generic_free(void *data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct tty_struct; | 
					
						
							|  |  |  | extern void register_winch(int fd,  struct tty_struct *tty); | 
					
						
							| 
									
										
										
										
											2007-07-15 23:38:55 -07:00
										 |  |  | extern void register_winch_irq(int fd, int tty_fd, int pid, | 
					
						
							|  |  |  | 			       struct tty_struct *tty, unsigned long stack); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define __channel_help(fn, prefix) \
 | 
					
						
							|  |  |  | __uml_help(fn, prefix "[0-9]*=<channel description>\n" \ | 
					
						
							|  |  |  | "    Attach a console or serial line to a host channel.  See\n" \ | 
					
						
							| 
									
										
										
										
											2008-02-04 22:30:38 -08:00
										 |  |  | "    http://user-mode-linux.sourceforge.net/old/input.html for a complete\n" \ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | "    description of this switch.\n\n" \ | 
					
						
							|  |  |  | ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |