Coder Social home page Coder Social logo

sherver's People

Contributors

remileduc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

sherver's Issues

[discussion]About ssl

Hi, i made a project just like yours, but Im wondering if there's anyway to apply ssl encryption to it, let's discuss about this in this issue
my project

Transfer-Encoding: chunked util.

I noticed your server appears to respond with HTTP/1.0 which is a bit rickety. If you aren't sure of the output length of your responses, you could always uses chunked encoding. When I did shell-based CGI for one-off stuff I use to use a perl script to wrap or transfer giant unknown-sized junk all the time.

I don't really feel like making a PR for it, but I'll inline it here:

#!/usr/bin/perl
use strict;

# print piped text or a list of files
# using HTTP Transfer-Encoding: chunked

sub http_chunk {
    my $fh = $_[0];
    my $buf;
    my $last_size;
    while (($last_size = read($fh, $buf, 131072)) gt 0) {
        printf("%x\r\n%s\r\n", $last_size, $buf);
    }
}

if (scalar(@ARGV) gt 0) {
    for my $f (@ARGV) {
        my $fh;
        open($fh, "<", $f);
        binmode($fh);
        http_chunk($fh);
    }
}
else {
    binmode(STDIN);
    http_chunk(*STDIN);
}
printf("0\r\n\r\n");

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.