리눅스 이클립스에서 소켓프로그래밍에러

yonoo88의 이미지

미치겠네요

**** Build of configuration Debug for project test2 ****

make all
make: `all'를 위해 할 일이 없습니다

이렇게 뜹니다. 진짜 makefile인지 뭔지 그것도만져보는데 똑같고 짱나죽겠네요
코드도 틀린게 없고 클라이언트는 잘 실행됩니다.
왜이러는거죠?

캡쳐사진 첨부합니다.

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <arpa/inet.h>
 
#define MAXBUF  256
#define TRUE 1
 
 
int main()
{
   int ssock, csock;    
   int clen;
 
 
   struct sockaddr_in client_addr, server_addr;  
   char buf[MAXBUF] ={0,};   
 
 
 
   if ((ssock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP))< 0) {
      perror("socket error : ");
      exit(1);
   }
clen = sizeof(client_addr);
int optvalue=TRUE;
int optlen=sizeof(optvalue);
 setsockopt(ssock, SOL_SOCKET, SO_REUSEADDR, &optvalue, optlen);
 
 
 
   memset(&server_addr, 0, sizeof(server_addr));
   server_addr.sin_family  = AF_INET;
   server_addr.sin_addr.s_addr = htonl(INADDR_ANY);
   server_addr.sin_port    = htons(3317);     
 
 
   if (bind(ssock, (struct sockaddr *)&server_addr, sizeof(server_addr)) <0) {
      perror("bind error : ");
      exit(1);
   }
 
 
   if (listen(ssock, 8) < 0) {
      perror("listen error : ");
      exit(1);
   }
 
 
csock = accept(ssock, (struct sockaddr *)&client_addr, &clen);
printf("접속성공!\n");
 
  while(1) {
 
 
    printf("보낼메세지:");
    gets(buf);
    if(!strcmp(buf,"exit"))
               {
                      break;
               }
     if (write(ssock, buf, MAXBUF) <0)
         perror("write error : ");
 
 if (read(csock, buf, MAXBUF) < 0) {
      perror("read error : ");
      exit(1);
   }
    printf("받은데이터:%s\n",buf);
 
   }
close(csock);
   return 0;
}
File attachments: 
첨부파일 크기
Image icon 1.jpg52.38 KB
런맨의 이미지

**** Build of configuration Debug for project test2 ****

make all
make: `all'를 위해 할 일이 없습니다

이건 에러가 아닙니다.

make 사용법 찾아보세요

인생은 도박이다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.