/**************************************************************************** ** $Id: .emacs,v 1.3 1998/02/20 15:06:53 agulbra Exp $ ** ** Definition of something or other ** ** Created : 979899 ** ** Copyright (C) 1997 by Troll Tech AS. All rights reserved. ** ****************************************************************************/ #ifndef SRV_H #define SRV_H struct srvhost { unsigned int pref; struct srvhost * next; unsigned int port; unsigned int weight; unsigned int rweight; char name[1]; }; extern void freesrvhost ( struct srvhost * ); extern struct srvhost * getsrv( const char * domain, const char * service, const char * protocol ); #endif