SCDoc: Use proper static string constants instead of comparing string literals.
[supercollider.git] / include / server / Rendezvous.h
blob2976088bb9146d87d2c4ab1c485e3e2119a19d65
1 /*
2 * Rendezvous.h
3 * SC3synth
5 * Created by C. Ramakrishnan on Wed Dec 18 2002.
6 * Illposed Software
8 */
11 SuperCollider real time audio synthesis system
12 Copyright (c) 2002 James McCartney. All rights reserved.
13 http://www.audiosynth.com
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 2 of the License, or
18 (at your option) any later version.
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30 #ifndef _Rendezvous_
31 #define _Rendezvous_
33 typedef enum {
34 kSCRendezvous_UDP,
35 kSCRendezvous_TCP
36 } SCRendezvousProtocol;
38 void PublishPortToRendezvous(SCRendezvousProtocol protocol, short portNum);
40 #endif