removed includes from common.h

This commit is contained in:
Václav Šmejkal 2023-03-12 14:59:07 +01:00
parent eedea02701
commit edbe07615c
Signed by: ENGO150
GPG Key ID: 4A57E86482968843
4 changed files with 27 additions and 18 deletions

View File

@ -16,23 +16,9 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
/*
DO NOT USE THIS FILE IN YOUR PROJECT!
*/
#ifndef WHY2_CHAT_COMMON_H #ifndef WHY2_CHAT_COMMON_H
#define WHY2_CHAT_COMMON_H #define WHY2_CHAT_COMMON_H
//INCLUDES
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h> //TODO: Remove not 100% common includes
#include <why2/misc.h>
#include <why2/memory.h>
#include <pthread.h>
//DEFINES //DEFINES
#define SA struct sockaddr #define SA struct sockaddr
#define SERVER_PORT 1204 #define SERVER_PORT 1204

View File

@ -16,11 +16,20 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
#include <why2/chat/common.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <pthread.h>
#include <why2/chat/common.h>
#include <why2/chat/misc.h> #include <why2/chat/misc.h>
#include <why2/misc.h>
int main(void) int main(void)
{ {
int listen_socket = socket(AF_INET, SOCK_STREAM, 0); //CREATE SERVER SOCKET int listen_socket = socket(AF_INET, SOCK_STREAM, 0); //CREATE SERVER SOCKET

View File

@ -16,12 +16,20 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
#include <why2/chat/common.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h> #include <unistd.h>
#include <pthread.h>
#include <why2/chat/common.h>
#include <why2/chat/misc.h> #include <why2/chat/misc.h>
#include <why2/misc.h>
int main(void) int main(void)
{ {
int listen_socket = socket(AF_INET, SOCK_STREAM, 0); //CREATE SERVER SOCKET int listen_socket = socket(AF_INET, SOCK_STREAM, 0); //CREATE SERVER SOCKET

View File

@ -18,10 +18,16 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <why2/chat/misc.h> #include <why2/chat/misc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/socket.h>
#include <unistd.h> #include <unistd.h>
#include <why2/chat/common.h> #include <pthread.h>
#include <why2/chat/common.h>
#include <why2/memory.h> #include <why2/memory.h>
//LINKED LIST STUFF (BIT CHANGED memory.c'S VERSION) //LINKED LIST STUFF (BIT CHANGED memory.c'S VERSION)