From 32af91c4292fe9cc1fa8367e31245e147ad8e2d3 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 7 Sep 2010 21:34:52 -0700 Subject: [PATCH] Added license, "starting" message. --- guacamole/proxy/client.c | 19 +++++++++++++++++++ guacamole/proxy/client.h | 19 +++++++++++++++++++ guacamole/proxy/daemon.c | 21 +++++++++++++++++++++ guacamole/proxy/guacio.c | 18 ++++++++++++++++++ guacamole/proxy/guacio.h | 18 ++++++++++++++++++ guacamole/proxy/protocol.c | 19 +++++++++++++++++++ guacamole/proxy/protocol.h | 18 ++++++++++++++++++ guacamole/proxy/vnc_client.c | 19 +++++++++++++++++++ guacamole/proxy/vnc_client.h | 18 ++++++++++++++++++ 9 files changed, 169 insertions(+) diff --git a/guacamole/proxy/client.c b/guacamole/proxy/client.c index 1c1da0377..5025a9ae9 100644 --- a/guacamole/proxy/client.c +++ b/guacamole/proxy/client.c @@ -1,3 +1,22 @@ + +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/guacamole/proxy/client.h b/guacamole/proxy/client.h index 6510325a3..3a709071d 100644 --- a/guacamole/proxy/client.h +++ b/guacamole/proxy/client.h @@ -1,3 +1,22 @@ + +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #ifndef _CLIENT_H #define _CLIENT_H diff --git a/guacamole/proxy/daemon.c b/guacamole/proxy/daemon.c index 0490ce71e..56c2cf1c4 100644 --- a/guacamole/proxy/daemon.c +++ b/guacamole/proxy/daemon.c @@ -1,4 +1,22 @@ +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #include #include #include @@ -21,6 +39,9 @@ int main(int argc, char* argv[]) { int connected_socket_fd; pid_t client_pid ; + + fprintf(stderr, "Guacamole starting...\n"); + /* Get binding address */ memset(&server_addr, 0, sizeof(server_addr)); /* Zero struct */ server_addr.sin_family = AF_INET; diff --git a/guacamole/proxy/guacio.c b/guacamole/proxy/guacio.c index f14d9a2f9..1b0be0fb7 100644 --- a/guacamole/proxy/guacio.c +++ b/guacamole/proxy/guacio.c @@ -1,4 +1,22 @@ +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/guacamole/proxy/guacio.h b/guacamole/proxy/guacio.h index 2529c47ba..ae57b82b6 100644 --- a/guacamole/proxy/guacio.h +++ b/guacamole/proxy/guacio.h @@ -1,4 +1,22 @@ +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #ifndef _GUACIO_H #define _GUACIO_H diff --git a/guacamole/proxy/protocol.c b/guacamole/proxy/protocol.c index 6ee3e86fa..d0e1c91ef 100644 --- a/guacamole/proxy/protocol.c +++ b/guacamole/proxy/protocol.c @@ -1,3 +1,22 @@ + +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/guacamole/proxy/protocol.h b/guacamole/proxy/protocol.h index a0bf755a6..dcfc3055a 100644 --- a/guacamole/proxy/protocol.h +++ b/guacamole/proxy/protocol.h @@ -1,4 +1,22 @@ +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #ifndef __PROTOCOL_H #define __PROTOCOL_H diff --git a/guacamole/proxy/vnc_client.c b/guacamole/proxy/vnc_client.c index d2f42ca11..f1424446f 100644 --- a/guacamole/proxy/vnc_client.c +++ b/guacamole/proxy/vnc_client.c @@ -1,3 +1,22 @@ + +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/guacamole/proxy/vnc_client.h b/guacamole/proxy/vnc_client.h index d18fa6e9d..af187b08a 100644 --- a/guacamole/proxy/vnc_client.h +++ b/guacamole/proxy/vnc_client.h @@ -1,4 +1,22 @@ +/* + * Guacamole - Clientless Remote Desktop + * Copyright (C) 2010 Michael Jumper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + #ifndef _VNC_CLIENT_H #define _VNC_CLIENT_H