source: roaraudio/include/roaraudio/proto_gopher.h @ 5823:f9f70dbaa376

Last change on this file since 5823:f9f70dbaa376 was 5823:f9f70dbaa376, checked in by phi, 11 years ago

updated copyright

File size: 2.7 KB
Line 
1//proto_gopher.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2013
5 *
6 *  This file is part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU Lesser General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU Lesser General Public License for more details.
18 *
19 *  You should have received a copy of the GNU Lesser General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 *  NOTE: Even though this file is LGPLed it (may) include GPLed files
25 *  so the license of this file is/may therefore downgraded to GPL.
26 *  See HACKING for details.
27 */
28
29#ifndef _ROARAUDIO_PROTO_GOPHER_H_
30#define _ROARAUDIO_PROTO_GOPHER_H_
31
32#define ROAR_GOPHER_FLAGS_NONE       0x0000
33#define ROAR_GOPHER_FLAGS_PLUS       0x0001
34
35// offical:
36#define ROAR_GOPHER_TYPE_FILE        '0'
37#define ROAR_GOPHER_TYPE_DIR         '1'
38#define ROAR_GOPHER_TYPE_CSO_PB      '2' /* Item is a CSO phone-book server */
39#define ROAR_GOPHER_TYPE_ERROR       '3'
40#define ROAR_GOPHER_TYPE_BINHEXED    '4' /* Item is a BinHexed Macintosh file. */
41#define ROAR_GOPHER_TYPE_DOSBIN      '5' /* Item is DOS binary archive of some sort. */
42#define ROAR_GOPHER_TYPE_UUENCODED   '6' /* Item is a UNIX uuencoded file. */
43#define ROAR_GOPHER_TYPE_SEARCH      '7' /* Item is an Index-Search server. */
44#define ROAR_GOPHER_TYPE_TELNET      '8'
45#define ROAR_GOPHER_TYPE_BIN         '9' /* Item is a binary file! */
46#define ROAR_GOPHER_TYPE_REDUNDANT   '+' /* Item is a redundant server */
47#define ROAR_GOPHER_TYPE_TN3270      'T' /* Item points to a text-based tn3270 session. */
48#define ROAR_GOPHER_TYPE_GIF         'g' /* Item is a GIF format graphics file. */
49#define ROAR_GOPHER_TYPE_IMAGE       'I' /* Item is some kind of image file.  Client decides how to display. */
50#define ROAR_GOPHER_TYPE_INFO        'i' /* text in menus */
51
52// inoffical:
53#define ROAR_GOPHER_TYPE_SOUND       's'
54#define ROAR_GOPHER_TYPE_MOVIE       ';'
55#define ROAR_GOPHER_TYPE_MIME        'M'
56#define ROAR_GOPHER_TYPE_HTML        'h'
57
58struct roar_gopher_menu_item {
59 int flags;
60 char type;
61 const char * name;
62 const char * selector;
63 const char * host;
64 unsigned int port;
65};
66
67struct roar_gopher_menu {
68 int flags;
69 struct roar_gopher_menu_item * items;
70 size_t items_len;
71};
72
73#endif
74
75//ll
Note: See TracBrowser for help on using the repository browser.