Codebase list atop / 4b7ff897-fd9b-44e8-8569-f70b0de33c26/main ifprop.h
4b7ff897-fd9b-44e8-8569-f70b0de33c26/main

Tree @4b7ff897-fd9b-44e8-8569-f70b0de33c26/main (Download .tar.gz)

ifprop.h @4b7ff897-fd9b-44e8-8569-f70b0de33c26/mainraw · history · blame

struct ifprop	{
	char		type;		/* type: 'e' (ethernet)		*/
					/*       'w' (wireless)  	*/
	char		name[31];	/* name of interface  		*/
	long int	speed;		/* in megabits per second	*/
	char		fullduplex;	/* boolean			*/
};

int 	getifprop(struct ifprop *);
void 	initifprop(void);