-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #507 from lealem47/improvePack
CubePack: Better USER_IO support & cleanup warnings
- Loading branch information
Showing
6 changed files
with
163 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
/* userio_template.h | ||
* | ||
* Copyright (C) 2014-2023 wolfSSL Inc. | ||
* | ||
* This file is part of wolfSSH. | ||
* | ||
* wolfSSH is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* wolfSSH is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
|
||
#ifndef USERIO_TEMPLATE_H | ||
#define USERIO_TEMPLATE_H | ||
|
||
#ifdef WOLFSSH_USER_IO | ||
|
||
#define SOCK_STREAM 1 | ||
#define SOCK_DGRAM 2 | ||
#define SOCK_RAW 3 | ||
|
||
#define SOL_SOCKET 0xfff | ||
#define SO_REUSEADDR 0x0004 | ||
|
||
#define AF_INET 2 | ||
#define INADDR_ANY ((uint32_t)0x00000000UL) | ||
|
||
#define socklen_t uint32_t | ||
|
||
typedef struct { int s_addr; } in_addr; | ||
|
||
struct sockaddr { int i; }; | ||
|
||
typedef struct sockaddr sockaddr; | ||
|
||
struct sockaddr_in{ | ||
int sin_len; | ||
int sin_family; | ||
int sin_port; | ||
in_addr sin_addr; | ||
}; | ||
|
||
typedef struct sockaddr_in sockaddr_in; | ||
|
||
struct hostent{ | ||
char *h_name; | ||
int h_length; | ||
char **h_addr_list; | ||
}; | ||
|
||
typedef struct hostent hostent; | ||
|
||
static inline int inet_addr(const char* n){ | ||
(void) n; | ||
return 0; | ||
} | ||
|
||
static inline int htons(unsigned int n){ | ||
(void) n; | ||
return 0; | ||
} | ||
|
||
static inline int ntohs(unsigned int n){ | ||
(void) n; | ||
return 0; | ||
} | ||
|
||
static inline int socket(int d, int t, int p) { | ||
(void) d; (void) t; (void) p; | ||
return 0; | ||
} | ||
|
||
static inline int setsockopt(int s, int l, int n, const void *o, | ||
socklen_t len) { | ||
(void) s; (void) l; (void) n; (void) o; (void) len; | ||
return 0; | ||
} | ||
|
||
static inline int getsockname(int s, struct sockaddr *n, socklen_t* len) { | ||
(void) s; (void) n; (void) len; | ||
return 0; | ||
} | ||
|
||
static inline int bind(int s, const struct sockaddr *n, socklen_t l) { | ||
(void) s; (void) n; (void) l; | ||
return 0; | ||
} | ||
|
||
static inline int listen(int s, int b) { | ||
(void) s; (void) b; | ||
return 0; | ||
} | ||
|
||
static inline struct hostent* gethostbyname(const char* n) { | ||
(void) n; | ||
return NULL; | ||
} | ||
|
||
#endif /* WOLFSSH_USER_IO */ | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters