blob: 714b130f658550176e7ef9f22f8e15080df678c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* RenIPC.h
* Liaison
*
* Created by Brian Cully on Thu Mar 20 2003.
* Copyright (c) 2003 Brian Cully. All rights reserved.
*
*/
// Rendezvous port name.
#define LiRendezvousPortName @"_liaison._tcp."
// Notifications of death.
#define SERVERMANAGERDEATHNOTIFICATION @"Server Died"
#define CLIENTMANAGERDEATHNOTIFICATION @"Client Died"
// Client/server keys.
#define RenHostnameKey @"hostname"
#define RenFilesAddedKey @"files added"
#define RenFilesChangedKey @"files changed"
#define RenFilesRemovedKey @"files removed"
|