diff options
| author | Vincent Richard <[email protected]> | 2005-08-25 23:15:17 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-08-25 23:15:17 +0200 |
| commit | 7ac14499f0ab6744f42ae88493b7be068ebb9399 (patch) | |
| tree | 44e14fb8eef116c6d42e70c037957ebafdef4327 /src/utility | |
| parent | Error handling in posixSocket::send(). (diff) | |
| download | vmime-7ac14499f0ab6744f42ae88493b7be068ebb9399.tar.gz vmime-7ac14499f0ab6744f42ae88493b7be068ebb9399.zip | |
Fixed undefined symbol 'UNSPECIFIED_PORT'.
Diffstat (limited to 'src/utility')
| -rw-r--r-- | src/utility/url.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utility/url.cpp b/src/utility/url.cpp index a2d4e32b..1d611163 100644 --- a/src/utility/url.cpp +++ b/src/utility/url.cpp @@ -30,6 +30,9 @@ namespace vmime { namespace utility { +// Unspecified port +const port_t url::UNSPECIFIED_PORT = static_cast <port_t>(-1); + // Known protocols const string url::PROTOCOL_FILE = "file"; const string url::PROTOCOL_HTTP = "http"; |
