파일 서버에서 avi 파일 실행이 안되네요ㅠ

news0426의 이미지

파일 서버를 만들었는데요

txt 파일 같은 것은 잘 보내지고 실행이 되는데 avi 파일은 용량이 똑같이 보내지긴 하는데 실행이 안되네요ㅠㅠ

txt 파일이랑 avi 파일이랑 근본적으로 달라서 그런지 고수님들 답변 좀 요ㅠ

server
-------------------
#include
#include
#include
#include
#include
#include
#include
#include

#define BUFSIZE 1200
#define PORT 9190
void error_handling(char *message);

int main() {

int serv_sd;
int clnt_sd;
int fd;
char buf[BUFSIZE];

struct sockaddr_in serv_addr;
struct sockaddr_in clnt_addr;
int clnt_addr_size;
int len;

serv_sd = socket(PF_INET, SOCK_STREAM, 0);
if (serv_sd == 1) {
error_handling("socket() error");
}

memset(&serv_addr, 0, sizeof (serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = htonl(INADDR_ANY);
serv_addr.sin_port = htons(PORT);

if (bind(serv_sd, (struct sockaddr*) & serv_addr, sizeof (serv_addr)))
error_handling("bind() error");

if (listen(serv_sd, 5) == -1)
error_handling("listen() error");

clnt_addr_size = sizeof (clnt_addr);

while (1) {

fd = open("brain.avi", O_RDONLY);
if (fd == -1)
error_handling("File Open error");

clnt_sd = accept(serv_sd, (struct sockaddr*) & clnt_addr, &clnt_addr_size);
if (clnt_sd == -1)
error_handling("accept() error");

// printf("%d", fd);

while ((len = read(fd, buf, BUFSIZE)) != 0) {
printf("%d\n", len);
write(clnt_sd, buf, len);
}

if (shutdown(clnt_sd, SHUT_WR) == -1)
error_handling("shutdown error");

len = read(clnt_sd, buf, BUFSIZE);
write(1, buf, len);

close(clnt_sd);
}
close(fd);
return 0;
}

void error_handling(char *message) {

fputs(message, stderr);
fputc('\n', stderr);
exit(1);
}
-------------------

client
------------------
#include
#include
#include
#include
#include
#include
#include
#include

#define BUFSIZE 1200
#define PORT 9190
#define IP "127.0.0.1"
void error_handling(char *message);

int main() {

int fd;
int sd;
const char* ip = "127.0.0.1";

char buf[BUFSIZE];
int len;
struct sockaddr_in serv_addr;

fd = open("file2.avi", O_CREAT|O_WRONLY | O_CLOEXEC | O_TRUNC);
if (fd == -1)
error_handling("File Open error");

sd = socket(PF_INET, SOCK_STREAM, 0);
if (sd == -1)
error_handling("socket error");

memset(&serv_addr, 0, sizeof (serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = inet_addr(IP);
serv_addr.sin_port = htons(PORT);

if (connect(sd, (struct sockaddr*) &serv_addr, sizeof (serv_addr)) == -1)
error_handling("connect() error!");

// len = read(sd, buf, BUFSIZE);
// printf("%d", len);
while ((len = read(sd, buf, BUFSIZE)) !=0) {
printf("%d %s %d\n", fd, buf, len);
write(fd, buf, len);
printf("%d %s %d\n", fd, buf, len);
}

write(sd, "Thank You\n", 10);

close(fd);
close(sd);

return 0;
}

void error_handling(char *message) {

fputs(message, stderr);
fputc('\n', stderr);
exit(1);
}

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.