Add Pieter Palmers FreeBob driver.
[jack2.git] / common / JackSocket.h
blobad1b36408d85531bdcb602fad8ad74b8e9b81d89
1 /*
2 Copyright (C) 2004-2006 Grame
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef __JackSocket__
21 #define __JackSocket__
23 #include "JackChannelTransaction.h"
25 #include <sys/un.h>
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <sys/time.h>
29 #include <arpa/inet.h>
30 #include <errno.h>
31 #include <unistd.h>
32 #include <signal.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
37 namespace Jack
40 /*!
41 \brief Client socket.
44 class JackClientSocket : public JackChannelTransaction
47 private:
49 int fSocket;
51 public:
53 JackClientSocket(): fSocket( -1)
55 JackClientSocket(int socket);
56 virtual ~JackClientSocket()
59 int Connect(const char* dir, int which);
60 int Connect(const char* dir, const char* name, int which);
61 int Close();
62 int Read(void* data, int len);
63 int Write(void* data, int len);
64 int GetFd()
66 return fSocket;
68 void SetReadTimeOut(long sec);
69 void SetWriteTimeOut(long sec);
72 /*!
73 \brief Server socket.
76 class JackServerSocket
79 private:
81 int fSocket;
82 char fName[256];
84 public:
86 JackServerSocket(): fSocket( -1)
88 virtual ~JackServerSocket()
91 int Bind(const char* dir, int which);
92 int Bind(const char* dir, const char* name, int which);
93 JackClientSocket* Accept();
94 int Close();
95 int GetFd()
97 return fSocket;
101 } // end of namespace
103 #endif