mirror of
https://review.haiku-os.org/haiku
synced 2025-01-21 05:53:46 +01:00
21 lines
452 B
C
21 lines
452 B
C
|
/*
|
||
|
* Copyright 2006-2010, Haiku, Inc. All Rights Reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Axel Dörfler, axeld@pinc-software.de
|
||
|
*/
|
||
|
#ifndef _NET_SERVER_H
|
||
|
#define _NET_SERVER_H
|
||
|
|
||
|
|
||
|
#define kNetServerSignature "application/x-vnd.haiku-net_server"
|
||
|
|
||
|
#define kMsgConfigureInterface 'COif'
|
||
|
#define kMsgConfigureResolver 'COrs'
|
||
|
#define kMsgJoinNetwork 'JNnw'
|
||
|
#define kMsgLeaveNetwork 'LVnw'
|
||
|
|
||
|
|
||
|
#endif // _NET_SERVER_H
|