This website works better with JavaScript.
Home
Help
Sign In
debpkg
/
weighttp
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
8
Wiki
Activity
Browse Source
add newlines at end of files
debian
Thomas Porzelt
11 years ago
parent
a5fc82bc70
commit
dd6f9d16ad
9 changed files
with
7 additions
and
9 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
COPYING
+1
-1
README
+1
-1
TODO
+1
-1
src/client.c
+1
-1
src/client.h
+1
-1
src/weighttp.c
+1
-1
src/worker.c
+1
-1
src/worker.h
+0
-1
wscript
+ 0
- 1
COPYING
View File
@ -20,4 +20,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
+ 1
- 1
README
View File
@ -43,4 +43,4 @@ $ ./waf configure clean build install
----
* libev can be found in your distro's repository or at http://software.schmorp.de/pkg/libev.html
* libev can be found in your distro's repository or at http://software.schmorp.de/pkg/libev.html
+ 1
- 1
TODO
View File
@ -3,4 +3,4 @@
- chunked encoding support
- ssl support
- better error reporting
- ipv6 support
- ipv6 support
+ 1
- 1
src/client.c
View File
@ -385,4 +385,4 @@ static uint8_t client_parse(Client *client) {
}
return
1
;
}
}
+ 1
- 1
src/client.h
View File
@ -43,4 +43,4 @@ struct Client {
Client
*
client_new
(
Worker
*
worker
)
;
void
client_free
(
Client
*
client
)
;
void
client_state_machine
(
Client
*
client
)
;
void
client_state_machine
(
Client
*
client
)
;
+ 1
- 1
src/weighttp.c
View File
@ -339,4 +339,4 @@ int main(int argc, char *argv[]) {
freeaddrinfo
(
config
.
saddr
)
;
return
0
;
}
}
+ 1
- 1
src/worker.c
View File
@ -55,4 +55,4 @@ void *worker_thread(void* arg) {
ev_loop_destroy
(
worker
-
>
loop
)
;
return
NULL
;
}
}
+ 1
- 1
src/worker.h
View File
@ -37,4 +37,4 @@ struct Worker {
Worker
*
worker_new
(
uint8_t
id
,
Config
*
config
,
uint16_t
num_clients
,
uint64_t
num_requests
)
;
void
worker_free
(
Worker
*
worker
)
;
void
*
worker_thread
(
void
*
arg
)
;
void
*
worker_thread
(
void
*
arg
)
;
+ 0
- 1
wscript
View File
@ -67,4 +67,3 @@ def build(bld):
uselib = 'ev pthread',
target = 'weighttp'
)
Write
Preview
Loading…
Cancel
Save