upgrade version to 1.0.41
parent
83f572820e
commit
583bdc87dc
2
HISTORY
2
HISTORY
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
Version 1.41 2019-09-27
|
||||
Version 1.41 2019-09-29
|
||||
* change CIDR network_bits range from [16, 32) to [10, 32)
|
||||
* ini_file_reader.c: fix empty string compare
|
||||
* multi_socket_client.c: code refine
|
||||
|
|
|
|||
2
README
2
README
|
|
@ -47,7 +47,7 @@ C function including:
|
|||
|
||||
skiplist: [skiplist.h] [flat_skiplist.h] [multi_skiplist.h] flat skiplist and multi skiplist
|
||||
|
||||
socket: [sockopt.h] socket wrapper for connect, recv, send etc.
|
||||
socket: [sockopt.h] socket wrapper for connect, recv, send etc. support IPv6
|
||||
|
||||
ioevent: [ioevent.h] [ioevent_loop.h] like epoll (support Linux, FreeBSD and SunOS),
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
%define CommitVersion %(echo $COMMIT_VERSION)
|
||||
|
||||
Name: libfastcommon
|
||||
Version: 1.0.40
|
||||
Version: 1.0.41
|
||||
Release: 1%{?dist}
|
||||
Summary: c common functions library extracted from my open source projects FastDFS
|
||||
License: LGPL
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
#include <net/if.h>
|
||||
#include <string.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/socket.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue