source: tags/arb-6.0.6/CORE/arb_cs.h

Last change on this file was 7215, checked in by westram, 13 years ago
  • DRYed aisc_get_hostname() + aisc_client_get_hostname() + GB_get_hostname() → arb_gethostname()
    • stuffs static leak
  • GB_host_is_local() ignores case
File size: 932 bytes
Line 
1// ============================================================= //
2//                                                               //
3//   File      : arb_cs.h                                        //
4//   Purpose   : Basics for client/server communication          //
5//                                                               //
6//   Coded by Ralf Westram (coder@reallysoft.de) in March 2011   //
7//   Institute of Microbiology (Technical University Munich)     //
8//   http://www.arb-home.de/                                     //
9//                                                               //
10// ============================================================= //
11
12#ifndef ARB_CS_H
13#define ARB_CS_H
14
15#ifndef ARB_CORE_H
16#include "arb_core.h"
17#endif
18
19void arb_gethostbyname(const char *name, struct hostent *& he, GB_ERROR& err);
20const char *arb_gethostname();
21
22#else
23#error arb_cs.h included twice
24#endif // ARB_CS_H
Note: See TracBrowser for help on using the repository browser.